diff --git a/Core/Inc/main.h b/Core/Inc/main.h index b2fbd24..735e2c6 100644 --- a/Core/Inc/main.h +++ b/Core/Inc/main.h @@ -68,10 +68,6 @@ void Error_Handler(void); #define LED_Green_GPIO_Port GPIOH #define LED_Blue_Pin GPIO_PIN_10 #define LED_Blue_GPIO_Port GPIOH -#define PUL_N_Pin GPIO_PIN_2 -#define PUL_N_GPIO_Port GPIOC -#define DIR_N_Pin GPIO_PIN_2 -#define DIR_N_GPIO_Port GPIOB #define USER_KEY_Pin GPIO_PIN_0 #define USER_KEY_GPIO_Port GPIOA #define USER_KEY_EXTI_IRQn EXTI0_IRQn @@ -83,8 +79,8 @@ void Error_Handler(void); #define GYRO_INT_Pin GPIO_PIN_5 #define GYRO_INT_GPIO_Port GPIOC #define GYRO_INT_EXTI_IRQn EXTI9_5_IRQn -#define DIR_P_Pin GPIO_PIN_1 -#define DIR_P_GPIO_Port GPIOB +#define DIR_P_Pin GPIO_PIN_11 +#define DIR_P_GPIO_Port GPIOE #define GYRO_CS_Pin GPIO_PIN_0 #define GYRO_CS_GPIO_Port GPIOB diff --git a/Core/Inc/stm32f4xx_it.h b/Core/Inc/stm32f4xx_it.h index 8ec4134..f6f5f59 100644 --- a/Core/Inc/stm32f4xx_it.h +++ b/Core/Inc/stm32f4xx_it.h @@ -61,7 +61,7 @@ void CAN1_TX_IRQHandler(void); void CAN1_RX0_IRQHandler(void); void CAN1_RX1_IRQHandler(void); void EXTI9_5_IRQHandler(void); -void TIM1_UP_TIM10_IRQHandler(void); +void TIM1_BRK_TIM9_IRQHandler(void); void USART1_IRQHandler(void); void USART3_IRQHandler(void); void DMA2_Stream1_IRQHandler(void); diff --git a/Core/Inc/tim.h b/Core/Inc/tim.h index 7ae4931..996ca89 100644 --- a/Core/Inc/tim.h +++ b/Core/Inc/tim.h @@ -32,7 +32,7 @@ extern "C" { /* USER CODE END Includes */ -extern TIM_HandleTypeDef htim8; +extern TIM_HandleTypeDef htim1; extern TIM_HandleTypeDef htim10; @@ -40,7 +40,7 @@ extern TIM_HandleTypeDef htim10; /* USER CODE END Private defines */ -void MX_TIM8_Init(void); +void MX_TIM1_Init(void); void MX_TIM10_Init(void); void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim); diff --git a/Core/Src/can.c b/Core/Src/can.c index 3c1bd5e..9dcdeeb 100644 --- a/Core/Src/can.c +++ b/Core/Src/can.c @@ -49,7 +49,7 @@ void MX_CAN1_Init(void) hcan1.Init.AutoWakeUp = DISABLE; hcan1.Init.AutoRetransmission = ENABLE; hcan1.Init.ReceiveFifoLocked = DISABLE; - hcan1.Init.TransmitFifoPriority = DISABLE; + hcan1.Init.TransmitFifoPriority = ENABLE; if (HAL_CAN_Init(&hcan1) != HAL_OK) { Error_Handler(); @@ -81,7 +81,7 @@ void MX_CAN2_Init(void) hcan2.Init.AutoWakeUp = DISABLE; hcan2.Init.AutoRetransmission = ENABLE; hcan2.Init.ReceiveFifoLocked = DISABLE; - hcan2.Init.TransmitFifoPriority = DISABLE; + hcan2.Init.TransmitFifoPriority = ENABLE; if (HAL_CAN_Init(&hcan2) != HAL_OK) { Error_Handler(); @@ -146,10 +146,10 @@ void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) __HAL_RCC_GPIOB_CLK_ENABLE(); /**CAN2 GPIO Configuration + PB5 ------> CAN2_RX PB6 ------> CAN2_TX - PB12 ------> CAN2_RX */ - GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_12; + GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_6; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; @@ -210,10 +210,10 @@ void HAL_CAN_MspDeInit(CAN_HandleTypeDef* canHandle) } /**CAN2 GPIO Configuration + PB5 ------> CAN2_RX PB6 ------> CAN2_TX - PB12 ------> CAN2_RX */ - HAL_GPIO_DeInit(GPIOB, GPIO_PIN_6|GPIO_PIN_12); + HAL_GPIO_DeInit(GPIOB, GPIO_PIN_5|GPIO_PIN_6); /* CAN2 interrupt Deinit */ HAL_NVIC_DisableIRQ(CAN2_TX_IRQn); diff --git a/Core/Src/gpio.c b/Core/Src/gpio.c index 46a8d84..b4e83b9 100644 --- a/Core/Src/gpio.c +++ b/Core/Src/gpio.c @@ -38,6 +38,7 @@ * Output * EVENT_OUT * EXTI + PC7 ------> S_TIM8_CH2 */ void MX_GPIO_Init(void) { @@ -52,6 +53,7 @@ void MX_GPIO_Init(void) __HAL_RCC_GPIOC_CLK_ENABLE(); __HAL_RCC_GPIOF_CLK_ENABLE(); __HAL_RCC_GPIOH_CLK_ENABLE(); + __HAL_RCC_GPIOE_CLK_ENABLE(); /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(CMPS_RST_GPIO_Port, CMPS_RST_Pin, GPIO_PIN_RESET); @@ -59,18 +61,23 @@ void MX_GPIO_Init(void) /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOH, LED_Red_Pin|LED_Green_Pin|LED_Blue_Pin, GPIO_PIN_RESET); - /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(PUL_N_GPIO_Port, PUL_N_Pin, GPIO_PIN_RESET); - - /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(GPIOB, DIR_N_Pin|DIR_P_Pin, GPIO_PIN_RESET); - /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(ACCL_CS_GPIO_Port, ACCL_CS_Pin, GPIO_PIN_SET); + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(DIR_P_GPIO_Port, DIR_P_Pin, GPIO_PIN_SET); + /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GYRO_CS_GPIO_Port, GYRO_CS_Pin, GPIO_PIN_SET); + /*Configure GPIO pin : PC7 */ + GPIO_InitStruct.Pin = GPIO_PIN_7; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF3_TIM8; + HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + /*Configure GPIO pin : CMPS_RST_Pin */ GPIO_InitStruct.Pin = CMPS_RST_Pin; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; @@ -91,20 +98,6 @@ void MX_GPIO_Init(void) GPIO_InitStruct.Pull = GPIO_PULLUP; HAL_GPIO_Init(CMPS_INT_GPIO_Port, &GPIO_InitStruct); - /*Configure GPIO pin : PUL_N_Pin */ - GPIO_InitStruct.Pin = PUL_N_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - GPIO_InitStruct.Pull = GPIO_PULLUP; - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - HAL_GPIO_Init(PUL_N_GPIO_Port, &GPIO_InitStruct); - - /*Configure GPIO pins : DIR_N_Pin DIR_P_Pin */ - GPIO_InitStruct.Pin = DIR_N_Pin|DIR_P_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - GPIO_InitStruct.Pull = GPIO_PULLUP; - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); - /*Configure GPIO pin : USER_KEY_Pin */ GPIO_InitStruct.Pin = USER_KEY_Pin; GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; @@ -124,6 +117,13 @@ void MX_GPIO_Init(void) GPIO_InitStruct.Pull = GPIO_PULLUP; HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + /*Configure GPIO pin : DIR_P_Pin */ + GPIO_InitStruct.Pin = DIR_P_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + HAL_GPIO_Init(DIR_P_GPIO_Port, &GPIO_InitStruct); + /*Configure GPIO pin : GYRO_CS_Pin */ GPIO_InitStruct.Pin = GYRO_CS_Pin; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; diff --git a/Core/Src/main.c b/Core/Src/main.c index ef0e283..578eb3a 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -105,7 +105,7 @@ int main(void) MX_USART3_UART_Init(); MX_TIM10_Init(); MX_USART6_UART_Init(); - MX_TIM8_Init(); + MX_TIM1_Init(); /* USER CODE BEGIN 2 */ /* USER CODE END 2 */ diff --git a/Core/Src/stm32f4xx_it.c b/Core/Src/stm32f4xx_it.c index fb7c336..36d43cb 100644 --- a/Core/Src/stm32f4xx_it.c +++ b/Core/Src/stm32f4xx_it.c @@ -62,7 +62,7 @@ extern CAN_HandleTypeDef hcan1; extern CAN_HandleTypeDef hcan2; extern DMA_HandleTypeDef hdma_spi1_rx; extern DMA_HandleTypeDef hdma_spi1_tx; -extern TIM_HandleTypeDef htim10; +extern TIM_HandleTypeDef htim1; extern DMA_HandleTypeDef hdma_usart3_rx; extern DMA_HandleTypeDef hdma_usart6_rx; extern DMA_HandleTypeDef hdma_usart6_tx; @@ -306,17 +306,17 @@ void EXTI9_5_IRQHandler(void) } /** - * @brief This function handles TIM1 update interrupt and TIM10 global interrupt. + * @brief This function handles TIM1 break interrupt and TIM9 global interrupt. */ -void TIM1_UP_TIM10_IRQHandler(void) +void TIM1_BRK_TIM9_IRQHandler(void) { - /* USER CODE BEGIN TIM1_UP_TIM10_IRQn 0 */ + /* USER CODE BEGIN TIM1_BRK_TIM9_IRQn 0 */ - /* USER CODE END TIM1_UP_TIM10_IRQn 0 */ - HAL_TIM_IRQHandler(&htim10); - /* USER CODE BEGIN TIM1_UP_TIM10_IRQn 1 */ + /* USER CODE END TIM1_BRK_TIM9_IRQn 0 */ + HAL_TIM_IRQHandler(&htim1); + /* USER CODE BEGIN TIM1_BRK_TIM9_IRQn 1 */ - /* USER CODE END TIM1_UP_TIM10_IRQn 1 */ + /* USER CODE END TIM1_BRK_TIM9_IRQn 1 */ } /** diff --git a/Core/Src/tim.c b/Core/Src/tim.c index e3f9def..2f80e16 100644 --- a/Core/Src/tim.c +++ b/Core/Src/tim.c @@ -24,48 +24,48 @@ /* USER CODE END 0 */ -TIM_HandleTypeDef htim8; +TIM_HandleTypeDef htim1; TIM_HandleTypeDef htim10; -/* TIM8 init function */ -void MX_TIM8_Init(void) +/* TIM1 init function */ +void MX_TIM1_Init(void) { - /* USER CODE BEGIN TIM8_Init 0 */ + /* USER CODE BEGIN TIM1_Init 0 */ - /* USER CODE END TIM8_Init 0 */ + /* USER CODE END TIM1_Init 0 */ TIM_ClockConfigTypeDef sClockSourceConfig = {0}; TIM_MasterConfigTypeDef sMasterConfig = {0}; TIM_OC_InitTypeDef sConfigOC = {0}; TIM_BreakDeadTimeConfigTypeDef sBreakDeadTimeConfig = {0}; - /* USER CODE BEGIN TIM8_Init 1 */ + /* USER CODE BEGIN TIM1_Init 1 */ - /* USER CODE END TIM8_Init 1 */ - htim8.Instance = TIM8; - htim8.Init.Prescaler = 167; - htim8.Init.CounterMode = TIM_COUNTERMODE_UP; - htim8.Init.Period = 19999; - htim8.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; - htim8.Init.RepetitionCounter = 0; - htim8.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - if (HAL_TIM_Base_Init(&htim8) != HAL_OK) + /* USER CODE END TIM1_Init 1 */ + htim1.Instance = TIM1; + htim1.Init.Prescaler = 167; + htim1.Init.CounterMode = TIM_COUNTERMODE_UP; + htim1.Init.Period = 19999; + htim1.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; + htim1.Init.RepetitionCounter = 0; + htim1.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim1) != HAL_OK) { Error_Handler(); } sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; - if (HAL_TIM_ConfigClockSource(&htim8, &sClockSourceConfig) != HAL_OK) + if (HAL_TIM_ConfigClockSource(&htim1, &sClockSourceConfig) != HAL_OK) { Error_Handler(); } - if (HAL_TIM_PWM_Init(&htim8) != HAL_OK) + if (HAL_TIM_PWM_Init(&htim1) != HAL_OK) { Error_Handler(); } sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; - if (HAL_TIMEx_MasterConfigSynchronization(&htim8, &sMasterConfig) != HAL_OK) + if (HAL_TIMEx_MasterConfigSynchronization(&htim1, &sMasterConfig) != HAL_OK) { Error_Handler(); } @@ -76,7 +76,7 @@ void MX_TIM8_Init(void) sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; sConfigOC.OCIdleState = TIM_OCIDLESTATE_RESET; sConfigOC.OCNIdleState = TIM_OCNIDLESTATE_RESET; - if (HAL_TIM_PWM_ConfigChannel(&htim8, &sConfigOC, TIM_CHANNEL_2) != HAL_OK) + if (HAL_TIM_PWM_ConfigChannel(&htim1, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) { Error_Handler(); } @@ -87,14 +87,14 @@ void MX_TIM8_Init(void) sBreakDeadTimeConfig.BreakState = TIM_BREAK_DISABLE; sBreakDeadTimeConfig.BreakPolarity = TIM_BREAKPOLARITY_HIGH; sBreakDeadTimeConfig.AutomaticOutput = TIM_AUTOMATICOUTPUT_DISABLE; - if (HAL_TIMEx_ConfigBreakDeadTime(&htim8, &sBreakDeadTimeConfig) != HAL_OK) + if (HAL_TIMEx_ConfigBreakDeadTime(&htim1, &sBreakDeadTimeConfig) != HAL_OK) { Error_Handler(); } - /* USER CODE BEGIN TIM8_Init 2 */ + /* USER CODE BEGIN TIM1_Init 2 */ - /* USER CODE END TIM8_Init 2 */ - HAL_TIM_MspPostInit(&htim8); + /* USER CODE END TIM1_Init 2 */ + HAL_TIM_MspPostInit(&htim1); } /* TIM10 init function */ @@ -142,16 +142,33 @@ void MX_TIM10_Init(void) void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) { - if(tim_baseHandle->Instance==TIM8) + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(tim_baseHandle->Instance==TIM1) { - /* USER CODE BEGIN TIM8_MspInit 0 */ + /* USER CODE BEGIN TIM1_MspInit 0 */ - /* USER CODE END TIM8_MspInit 0 */ - /* TIM8 clock enable */ - __HAL_RCC_TIM8_CLK_ENABLE(); - /* USER CODE BEGIN TIM8_MspInit 1 */ + /* USER CODE END TIM1_MspInit 0 */ + /* TIM1 clock enable */ + __HAL_RCC_TIM1_CLK_ENABLE(); - /* USER CODE END TIM8_MspInit 1 */ + __HAL_RCC_GPIOE_CLK_ENABLE(); + /**TIM1 GPIO Configuration + PE13 ------> TIM1_CH3 + PE14 ------> TIM1_CH4 + */ + GPIO_InitStruct.Pin = GPIO_PIN_13|GPIO_PIN_14; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF1_TIM1; + HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); + + /* TIM1 interrupt Init */ + HAL_NVIC_SetPriority(TIM1_BRK_TIM9_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(TIM1_BRK_TIM9_IRQn); + /* USER CODE BEGIN TIM1_MspInit 1 */ + + /* USER CODE END TIM1_MspInit 1 */ } else if(tim_baseHandle->Instance==TIM10) { @@ -160,10 +177,6 @@ void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) /* USER CODE END TIM10_MspInit 0 */ /* TIM10 clock enable */ __HAL_RCC_TIM10_CLK_ENABLE(); - - /* TIM10 interrupt Init */ - HAL_NVIC_SetPriority(TIM1_UP_TIM10_IRQn, 5, 0); - HAL_NVIC_EnableIRQ(TIM1_UP_TIM10_IRQn); /* USER CODE BEGIN TIM10_MspInit 1 */ /* USER CODE END TIM10_MspInit 1 */ @@ -173,25 +186,25 @@ void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) { GPIO_InitTypeDef GPIO_InitStruct = {0}; - if(timHandle->Instance==TIM8) + if(timHandle->Instance==TIM1) { - /* USER CODE BEGIN TIM8_MspPostInit 0 */ + /* USER CODE BEGIN TIM1_MspPostInit 0 */ - /* USER CODE END TIM8_MspPostInit 0 */ - __HAL_RCC_GPIOC_CLK_ENABLE(); - /**TIM8 GPIO Configuration - PC7 ------> TIM8_CH2 + /* USER CODE END TIM1_MspPostInit 0 */ + __HAL_RCC_GPIOE_CLK_ENABLE(); + /**TIM1 GPIO Configuration + PE9 ------> TIM1_CH1 */ - GPIO_InitStruct.Pin = GPIO_PIN_7; + GPIO_InitStruct.Pin = GPIO_PIN_9; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - GPIO_InitStruct.Pull = GPIO_NOPULL; - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - GPIO_InitStruct.Alternate = GPIO_AF3_TIM8; - HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF1_TIM1; + HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); - /* USER CODE BEGIN TIM8_MspPostInit 1 */ + /* USER CODE BEGIN TIM1_MspPostInit 1 */ - /* USER CODE END TIM8_MspPostInit 1 */ + /* USER CODE END TIM1_MspPostInit 1 */ } else if(timHandle->Instance==TIM10) { @@ -220,16 +233,26 @@ void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle) { - if(tim_baseHandle->Instance==TIM8) + if(tim_baseHandle->Instance==TIM1) { - /* USER CODE BEGIN TIM8_MspDeInit 0 */ + /* USER CODE BEGIN TIM1_MspDeInit 0 */ - /* USER CODE END TIM8_MspDeInit 0 */ + /* USER CODE END TIM1_MspDeInit 0 */ /* Peripheral clock disable */ - __HAL_RCC_TIM8_CLK_DISABLE(); - /* USER CODE BEGIN TIM8_MspDeInit 1 */ + __HAL_RCC_TIM1_CLK_DISABLE(); - /* USER CODE END TIM8_MspDeInit 1 */ + /**TIM1 GPIO Configuration + PE13 ------> TIM1_CH3 + PE9 ------> TIM1_CH1 + PE14 ------> TIM1_CH4 + */ + HAL_GPIO_DeInit(GPIOE, GPIO_PIN_13|GPIO_PIN_9|GPIO_PIN_14); + + /* TIM1 interrupt Deinit */ + HAL_NVIC_DisableIRQ(TIM1_BRK_TIM9_IRQn); + /* USER CODE BEGIN TIM1_MspDeInit 1 */ + + /* USER CODE END TIM1_MspDeInit 1 */ } else if(tim_baseHandle->Instance==TIM10) { @@ -238,9 +261,6 @@ void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle) /* USER CODE END TIM10_MspDeInit 0 */ /* Peripheral clock disable */ __HAL_RCC_TIM10_CLK_DISABLE(); - - /* TIM10 interrupt Deinit */ - HAL_NVIC_DisableIRQ(TIM1_UP_TIM10_IRQn); /* USER CODE BEGIN TIM10_MspDeInit 1 */ /* USER CODE END TIM10_MspDeInit 1 */ diff --git a/MDK-ARM/.vscode/keil-assistant.log b/MDK-ARM/.vscode/keil-assistant.log index 40282ad..9ddf0d0 100644 --- a/MDK-ARM/.vscode/keil-assistant.log +++ b/MDK-ARM/.vscode/keil-assistant.log @@ -44,3 +44,7 @@ [info] Log at : 2026/1/21|22:02:02|GMT+0800 +[info] Log at : 2026/2/4|15:19:28|GMT+0800 + +[info] Log at : 2026/2/4|15:19:33|GMT+0800 + diff --git a/MDK-ARM/.vscode/uv4.log b/MDK-ARM/.vscode/uv4.log index 315e004..2606aaa 100644 --- a/MDK-ARM/.vscode/uv4.log +++ b/MDK-ARM/.vscode/uv4.log @@ -1,16 +1 @@ -*** Using Compiler 'V6.16', folder: 'D:\Keil_v5\ARM\ARMCLANG\Bin' -Build target 'Steering Wheel_Infatry' -Note: source file '..\User\bsp\can.c' - object file renamed from 'Steering Wheel_Infatry\can.o' to 'Steering Wheel_Infatry\can_1.o'.Note: source file '..\User\bsp\gpio.c' - object file renamed from 'Steering Wheel_Infatry\gpio.o' to 'Steering Wheel_Infatry\gpio_1.o'.Note: source file '..\User\bsp\i2c.c' - object file renamed from 'Steering Wheel_Infatry\i2c.o' to 'Steering Wheel_Infatry\i2c_1.o'.Note: source file '..\User\bsp\spi.c' - object file renamed from 'Steering Wheel_Infatry\spi.o' to 'Steering Wheel_Infatry\spi_1.o'.Note: source file '..\User\task\ai.c' - object file renamed from 'Steering Wheel_Infatry\ai.o' to 'Steering Wheel_Infatry\ai_1.o'.Note: source file '..\User\task\ET16s.c' - object file renamed from 'Steering Wheel_Infatry\ET16s.o' to 'Steering Wheel_Infatry\et16s_1.o'.Note: source file '..\User\task\dr16.c' - object file renamed from 'Steering Wheel_Infatry\dr16.o' to 'Steering Wheel_Infatry\dr16_1.o'.Note: source file '..\User\task\step_motor.c' - object file renamed from 'Steering Wheel_Infatry\step_motor.o' to 'Steering Wheel_Infatry\step_motor_1.o'.Note: source file '..\User\module\cmd\cmd.c' - object file renamed from 'Steering Wheel_Infatry\cmd.o' to 'Steering Wheel_Infatry\cmd_1.o'.../User/module/cmd/cmd_adapter.c(12): warning: 'CMD_RC_DEVICE_TYPE' macro redefined [-Wmacro-redefined] -#define CMD_RC_DEVICE_TYPE 2 - ^ -../User/module/cmd/cmd_adapter.h(73): note: previous definition is here -#define CMD_RC_DEVICE_TYPE 3 /* 0:DR16, 1:AT9S, 2:VT13 */ - ^ -../User/module/cmd/cmd_adapter.c(157): error: use of undeclared identifier 'g_adapter_ET916s' - CMD_Adapter_Register(&g_adapter_ET916s); - ^ -1 warning and 1 error generated. -compiling cmd_adapter.c... -"Steering Wheel_Infatry\Steering Wheel_Infatry.axf" - 1 Error(s), 1 Warning(s). -Target not created. -Build Time Elapsed: 00:00:03 +Load "Steering Wheel_Infatry\\Steering Wheel_Infatry.axf" diff --git a/MDK-ARM/.vscode/uv4.log.lock b/MDK-ARM/.vscode/uv4.log.lock index 09cb3a9..1b26e36 100644 --- a/MDK-ARM/.vscode/uv4.log.lock +++ b/MDK-ARM/.vscode/uv4.log.lock @@ -1 +1 @@ -2026/1/21 23:45:46 \ No newline at end of file +2026/2/4 15:19:52 \ No newline at end of file diff --git a/MDK-ARM/JLinkLog.txt b/MDK-ARM/JLinkLog.txt index 7b315fa..13780e7 100644 --- a/MDK-ARM/JLinkLog.txt +++ b/MDK-ARM/JLinkLog.txt @@ -1,26645 +1,8826 @@ -T98A8 000:021.849 SEGGER J-Link V8.90 Log File -T98A8 000:022.111 DLL Compiled: Nov 26 2025 17:20:53 -T98A8 000:022.168 Logging started @ 2026-01-29 15:31 -T98A8 000:022.220 Process: D:\Keil_v5\UV4\UV4.exe -T98A8 000:022.288 - 22.274ms -T98A8 000:022.352 JLINK_SetWarnOutHandler(...) -T98A8 000:022.405 - 0.054ms -T98A8 000:022.463 JLINK_OpenEx(...) -T98A8 000:027.675 Firmware: J-Link V9 compiled May 7 2021 16:26:12 -T98A8 000:028.473 Firmware: J-Link V9 compiled May 7 2021 16:26:12 -T98A8 000:028.768 Decompressing FW timestamp took 149 us -T98A8 000:034.738 Hardware: V9.70 -T98A8 000:034.840 S/N: 20760100 -T98A8 000:034.897 OEM: SEGGER -T98A8 000:034.955 Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB -T98A8 000:035.513 Bootloader: (FW returned invalid version) -T98A8 000:036.256 TELNET listener socket opened on port 19021 -T98A8 000:036.691 WEBSRV WEBSRV_Init(): Starting webserver thread(s) -T98A8 000:036.926 WEBSRV Webserver running on local port 19080 -T98A8 000:037.295 Looking for J-Link GUI Server exe at: D:\Keil_v5\ARM\Segger\JLinkGUIServer.exe -T98A8 000:037.637 Looking for J-Link GUI Server exe at: D:\Program Files\SEGGER\JLink_V890\JLinkGUIServer.exe -T98A8 000:037.800 Forking J-Link GUI Server: D:\Program Files\SEGGER\JLink_V890\JLinkGUIServer.exe -T98A8 000:046.804 J-Link GUI Server info: "J-Link GUI server V8.90 " -T98A8 000:047.795 - 25.325ms returns "O.K." -T98A8 000:047.893 JLINK_GetEmuCaps() -T98A8 000:047.955 - 0.058ms returns 0xB9FF7BBF -T98A8 000:048.016 JLINK_TIF_GetAvailable(...) -T98A8 000:048.285 - 0.270ms -T98A8 000:048.354 JLINK_SetErrorOutHandler(...) -T98A8 000:048.408 - 0.054ms -T98A8 000:048.516 JLINK_ExecCommand("ProjectFile = "D:\yunha\git_gimbal\RM\Steering Wheel_Infatry\MDK-ARM\JLinkSettings.ini"", ...). -T98A8 000:067.639 Ref file found at: D:\Keil_v5\ARM\Segger\JLinkDevices.ref -T98A8 000:068.090 REF file references invalid XML file: D:\Program Files\SEGGER\JLink_V890\JLinkDevices.xml -T98A8 000:069.812 - 21.300ms returns 0x00 -T98A8 000:069.908 JLINK_ExecCommand("Device = STM32F407IGHx", ...). -T98A8 000:071.124 Device "STM32F407IG" selected. -T98A8 000:072.013 - 2.062ms returns 0x00 -T98A8 000:072.068 JLINK_ExecCommand("DisableConnectionTimeout", ...). -T98A8 000:072.122 ERROR: Unknown command -T98A8 000:072.180 - 0.072ms returns 0x01 -T98A8 000:072.221 JLINK_GetHardwareVersion() -T98A8 000:072.260 - 0.039ms returns 97000 -T98A8 000:072.300 JLINK_GetDLLVersion() -T98A8 000:072.338 - 0.038ms returns 89000 -T98A8 000:072.377 JLINK_GetOEMString(...) -T98A8 000:072.416 JLINK_GetFirmwareString(...) -T98A8 000:072.454 - 0.038ms -T98A8 000:072.519 JLINK_GetDLLVersion() -T98A8 000:072.558 - 0.038ms returns 89000 -T98A8 000:072.598 JLINK_GetCompileDateTime() -T98A8 000:072.636 - 0.038ms -T98A8 000:072.687 JLINK_GetFirmwareString(...) -T98A8 000:072.731 - 0.045ms -T98A8 000:072.776 JLINK_GetHardwareVersion() -T98A8 000:072.814 - 0.038ms returns 97000 -T98A8 000:072.857 JLINK_GetSN() -T98A8 000:072.896 - 0.038ms returns 20760100 -T98A8 000:072.938 JLINK_GetOEMString(...) -T98A8 000:072.986 JLINK_TIF_Select(JLINKARM_TIF_SWD) -T98A8 000:074.106 - 1.117ms returns 0x00 -T98A8 000:074.613 JLINK_HasError() -T98A8 000:075.103 JLINK_SetSpeed(5000) -T98A8 000:075.259 - 0.161ms -T98A8 000:075.318 JLINK_GetId() -T98A8 000:075.519 InitTarget() start -T98A8 000:075.586 J-Link Script File: Executing InitTarget() -T98A8 000:075.762 SWD selected. Executing JTAG -> SWD switching sequence. -T98A8 000:077.046 DAP initialized successfully. -T98A8 000:081.079 InitTarget() end - Took 5.46ms -T98A8 000:081.626 Found SW-DP with ID 0x2BA01477 -T98A8 000:083.355 DPIDR: 0x2BA01477 -T98A8 000:083.441 CoreSight SoC-400 or earlier -T98A8 000:083.502 Scanning AP map to find all available APs -T98A8 000:084.010 AP[1]: Stopped AP scan as end of AP map has been reached -T98A8 000:084.110 AP[0]: AHB-AP (IDR: 0x24770011, ADDR: 0x00000000) -T98A8 000:084.214 Iterating through AP map to find AHB-AP to use -T98A8 000:085.032 AP[0]: Core found -T98A8 000:085.144 AP[0]: AHB-AP ROM base: 0xE00FF000 -T98A8 000:085.816 CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) -T98A8 000:085.971 Found Cortex-M4 r0p1, Little endian. -T98A8 000:086.406 -- Max. mem block: 0x00010C40 -T98A8 000:087.009 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:087.395 CPU_ReadMem(4 bytes @ 0xE0002000) -T98A8 000:087.791 FPUnit: 6 code (BP) slots and 2 literal slots -T98A8 000:087.872 CPU_ReadMem(4 bytes @ 0xE000EDFC) -T98A8 000:088.164 CPU_WriteMem(4 bytes @ 0xE000EDFC) -T98A8 000:088.466 CPU_ReadMem(4 bytes @ 0xE0001000) -T98A8 000:088.745 CPU_WriteMem(4 bytes @ 0xE0001000) -T98A8 000:089.045 CPU_ReadMem(4 bytes @ 0xE000ED88) -T98A8 000:089.387 CPU_WriteMem(4 bytes @ 0xE000ED88) -T98A8 000:089.731 CPU_ReadMem(4 bytes @ 0xE000ED88) -T98A8 000:090.097 CPU_WriteMem(4 bytes @ 0xE000ED88) -T98A8 000:090.466 CoreSight components: -T98A8 000:090.575 ROMTbl[0] @ E00FF000 -T98A8 000:090.674 CPU_ReadMem(64 bytes @ 0xE00FF000) -T98A8 000:091.245 CPU_ReadMem(32 bytes @ 0xE000EFE0) -T98A8 000:091.777 [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 -T98A8 000:091.888 CPU_ReadMem(32 bytes @ 0xE0001FE0) -T98A8 000:092.368 [0][1]: E0001000 CID B105E00D PID 003BB002 DWT -T98A8 000:092.505 CPU_ReadMem(32 bytes @ 0xE0002FE0) -T98A8 000:093.002 [0][2]: E0002000 CID B105E00D PID 002BB003 FPB -T98A8 000:093.134 CPU_ReadMem(32 bytes @ 0xE0000FE0) -T98A8 000:093.637 [0][3]: E0000000 CID B105E00D PID 003BB001 ITM -T98A8 000:093.738 CPU_ReadMem(32 bytes @ 0xE0040FE0) -T98A8 000:094.144 [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU -T98A8 000:094.224 CPU_ReadMem(32 bytes @ 0xE0041FE0) -T98A8 000:094.618 [0][5]: E0041000 CID B105900D PID 000BB925 ETM -T98A8 000:094.919 - 19.600ms returns 0x2BA01477 -T98A8 000:094.985 JLINK_GetDLLVersion() -T98A8 000:095.054 - 0.069ms returns 89000 -T98A8 000:095.101 JLINK_CORE_GetFound() -T98A8 000:095.140 - 0.039ms returns 0xE0000FF -T98A8 000:095.183 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -T98A8 000:095.226 Value=0xE00FF000 -T98A8 000:095.289 - 0.107ms returns 0 -T98A8 000:095.377 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -T98A8 000:095.420 Value=0xE00FF000 -T98A8 000:095.478 - 0.101ms returns 0 -T98A8 000:095.518 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -T98A8 000:095.556 Value=0xE0041000 -T98A8 000:095.623 - 0.105ms returns 0 -T98A8 000:095.676 JLINK_ReadMemEx(0xE0041FD0, 0x20 Bytes, Flags = 0x02000004) -T98A8 000:095.769 CPU_ReadMem(32 bytes @ 0xE0041FD0) -T98A8 000:096.199 Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -T98A8 000:096.278 - 0.602ms returns 32 (0x20) -T98A8 000:096.321 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -T98A8 000:096.360 Value=0x00000000 -T98A8 000:096.418 - 0.097ms returns 0 -T98A8 000:096.457 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -T98A8 000:096.495 Value=0xE0040000 -T98A8 000:096.568 - 0.111ms returns 0 -T98A8 000:096.607 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -T98A8 000:096.645 Value=0xE0000000 -T98A8 000:096.702 - 0.094ms returns 0 -T98A8 000:096.741 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -T98A8 000:096.779 Value=0xE0001000 -T98A8 000:096.835 - 0.094ms returns 0 -T98A8 000:096.874 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -T98A8 000:096.912 Value=0xE0002000 -T98A8 000:096.968 - 0.094ms returns 0 -T98A8 000:097.019 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -T98A8 000:097.057 Value=0xE000E000 -T98A8 000:097.118 - 0.099ms returns 0 -T98A8 000:097.157 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -T98A8 000:097.195 Value=0xE000EDF0 -T98A8 000:097.252 - 0.095ms returns 0 -T98A8 000:097.291 JLINK_GetDebugInfo(0x01 = Unknown) -T98A8 000:097.328 Value=0x00000001 -T98A8 000:097.385 - 0.094ms returns 0 -T98A8 000:097.424 JLINK_ReadMemU32(0xE000ED00, 0x1 Items) -T98A8 000:097.468 CPU_ReadMem(4 bytes @ 0xE000ED00) -T98A8 000:097.763 Data: 41 C2 0F 41 -T98A8 000:097.839 Debug reg: CPUID -T98A8 000:097.904 - 0.480ms returns 1 (0x1) -T98A8 000:097.946 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -T98A8 000:097.984 Value=0x00000000 -T98A8 000:098.041 - 0.096ms returns 0 -T98A8 000:098.081 JLINK_HasError() -T98A8 000:098.120 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) -T98A8 000:098.159 - 0.038ms returns JLINKARM_CM3_RESET_TYPE_NORMAL -T98A8 000:098.205 JLINK_Reset() -T98A8 000:098.248 JLINK_GetResetTypeDesc -T98A8 000:098.286 - 0.038ms -T98A8 000:098.351 Reset type: NORMAL (https://kb.segger.com/J-Link_Reset_Strategies) -T98A8 000:098.394 CPU is running -T98A8 000:098.453 CPU_WriteMem(4 bytes @ 0xE000EDF0) -T98A8 000:098.779 CPU is running -T98A8 000:098.920 CPU_WriteMem(4 bytes @ 0xE000EDFC) -T98A8 000:099.267 Reset: Halt core after reset via DEMCR.VC_CORERESET. -T98A8 000:099.626 Reset: Reset device via AIRCR.SYSRESETREQ. -T98A8 000:099.690 CPU is running -T98A8 000:099.747 CPU_WriteMem(4 bytes @ 0xE000ED0C) -T98A8 000:152.970 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:153.356 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:155.614 CPU_WriteMem(4 bytes @ 0xE000EDFC) -T98A8 000:161.836 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:164.059 CPU_WriteMem(4 bytes @ 0xE0002000) -T98A8 000:164.405 CPU_ReadMem(4 bytes @ 0xE000EDFC) -T98A8 000:164.744 CPU_ReadMem(4 bytes @ 0xE0001000) -T98A8 000:165.064 - 66.858ms -T98A8 000:165.175 JLINK_HasError() -T98A8 000:165.244 JLINK_ReadReg(R15 (PC)) -T98A8 000:165.291 - 0.051ms returns 0x080002B0 -T98A8 000:165.336 JLINK_ReadReg(XPSR) -T98A8 000:165.377 - 0.040ms returns 0x01000000 -T98A8 000:165.420 JLINK_Halt() -T98A8 000:165.460 - 0.040ms returns 0x00 -T98A8 000:165.503 JLINK_ReadMemU32(0xE000EDF0, 0x1 Items) -T98A8 000:165.551 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:165.877 Data: 03 00 03 00 -T98A8 000:166.014 Debug reg: DHCSR -T98A8 000:166.121 - 0.618ms returns 1 (0x1) -T98A8 000:166.193 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -T98A8 000:166.261 Debug reg: DHCSR -T98A8 000:166.666 CPU_WriteMem(4 bytes @ 0xE000EDF0) -T98A8 000:167.492 - 1.298ms returns 0 (0x00000000) -T98A8 000:167.560 JLINK_WriteU32(0xE000EDFC, 0x01000000) -T98A8 000:167.601 Debug reg: DEMCR -T98A8 000:167.687 CPU_WriteMem(4 bytes @ 0xE000EDFC) -T98A8 000:168.343 - 0.782ms returns 0 (0x00000000) -T98A8 000:168.466 JLINK_GetHWStatus(...) -T98A8 000:168.760 - 0.293ms returns 0 -T98A8 000:168.939 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) -T98A8 000:169.064 - 0.124ms returns 0x06 -T98A8 000:169.138 JLINK_GetNumBPUnits(Type = 0xF0) -T98A8 000:169.207 - 0.068ms returns 0x2000 -T98A8 000:169.270 JLINK_GetNumWPUnits() -T98A8 000:169.321 - 0.050ms returns 4 -T98A8 000:169.374 JLINK_GetSpeed() -T98A8 000:169.414 - 0.039ms returns 4000 -T98A8 000:169.483 JLINK_ReadMemU32(0xE000E004, 0x1 Items) -T98A8 000:169.551 CPU_ReadMem(4 bytes @ 0xE000E004) -T98A8 000:169.861 Data: 02 00 00 00 -T98A8 000:169.940 - 0.457ms returns 1 (0x1) -T98A8 000:169.984 JLINK_ReadMemU32(0xE000E004, 0x1 Items) -T98A8 000:170.029 CPU_ReadMem(4 bytes @ 0xE000E004) -T98A8 000:170.336 Data: 02 00 00 00 -T98A8 000:170.429 - 0.445ms returns 1 (0x1) -T98A8 000:170.472 JLINK_WriteMemEx(0xE0001000, 0x0000001C Bytes, Flags = 0x02000004) -T98A8 000:170.513 Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -T98A8 000:170.580 CPU_WriteMem(28 bytes @ 0xE0001000) -T98A8 000:170.989 - 0.516ms returns 0x1C -T98A8 000:171.057 JLINK_HasError() -T98A8 000:171.104 JLINK_ReadReg(R15 (PC)) -T98A8 000:171.146 - 0.042ms returns 0x080002B0 -T98A8 000:171.188 JLINK_ReadReg(XPSR) -T98A8 000:171.227 - 0.038ms returns 0x01000000 -T98A8 000:181.686 JLINK_ReadMemEx(0xE0001004, 0x4 Bytes, Flags = 0x02000000) -T98A8 000:181.772 Data: 00 00 00 00 -T98A8 000:181.834 Debug reg: DWT_CYCCNT -T98A8 000:181.894 - 0.208ms returns 4 (0x4) -T98A8 000:276.086 JLINK_HasError() -T98A8 000:276.167 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) -T98A8 000:276.210 - 0.042ms returns JLINKARM_CM3_RESET_TYPE_NORMAL -T98A8 000:276.250 JLINK_Reset() -T98A8 000:276.304 JLINK_GetResetTypeDesc -T98A8 000:276.345 - 0.041ms -T98A8 000:276.405 Reset type: NORMAL (https://kb.segger.com/J-Link_Reset_Strategies) -T98A8 000:276.448 CPU_WriteMem(4 bytes @ 0xE000EDF0) -T98A8 000:276.785 CPU_WriteMem(4 bytes @ 0xE000EDFC) -T98A8 000:277.086 Reset: Halt core after reset via DEMCR.VC_CORERESET. -T98A8 000:277.509 Reset: Reset device via AIRCR.SYSRESETREQ. -T98A8 000:277.657 CPU_WriteMem(4 bytes @ 0xE000ED0C) -T98A8 000:330.991 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:331.461 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:331.796 CPU_WriteMem(4 bytes @ 0xE000EDFC) -T98A8 000:337.437 CPU_ReadMem(4 bytes @ 0xE000EDF0) -T98A8 000:339.823 CPU_WriteMem(4 bytes @ 0xE0002000) -T98A8 000:340.234 CPU_ReadMem(4 bytes @ 0xE000EDFC) -T98A8 000:340.547 CPU_ReadMem(4 bytes @ 0xE0001000) -T98A8 000:340.822 - 64.572ms -T98A8 000:341.017 JLINK_HasError() -T98A8 000:341.099 JLINK_ReadReg(R15 (PC)) -T98A8 000:341.170 - 0.071ms returns 0x080002B0 -T98A8 000:341.239 JLINK_ReadReg(XPSR) -T98A8 000:341.305 - 0.066ms returns 0x01000000 -T98A8 000:587.603 JLINK_ReadMemEx(0x080002B0, 0x3C Bytes, Flags = 0x02000000) -T98A8 000:587.677 CPU_ReadMem(128 bytes @ 0x08000280) -T98A8 000:588.546 -- Updating C cache (128 bytes @ 0x08000280) -T98A8 000:588.630 -- Read from C cache (60 bytes @ 0x080002B0) -T98A8 000:588.689 Data: 09 48 80 47 09 48 00 47 FE E7 FE E7 FE E7 FE E7 ... -T98A8 000:588.748 - 1.145ms returns 60 (0x3C) -T98A8 000:588.790 JLINK_ReadMemEx(0x080002B0, 0x2 Bytes, Flags = 0x02000000) -T98A8 000:588.830 -- Read from C cache (2 bytes @ 0x080002B0) -T98A8 000:588.888 Data: 09 48 -T98A8 000:588.945 - 0.155ms returns 2 (0x2) -T98A8 000:589.042 JLINK_ReadMemEx(0x080002B2, 0x2 Bytes, Flags = 0x02000000) -T98A8 000:589.082 -- Read from C cache (2 bytes @ 0x080002B2) -T98A8 000:589.139 Data: 80 47 -T98A8 000:589.195 - 0.153ms returns 2 (0x2) -T98A8 003:151.060 JLINK_ReadMemEx(0x080002B2, 0x2 Bytes, Flags = 0x02000000) -T98A8 003:151.177 -- Read from C cache (2 bytes @ 0x080002B2) -T98A8 003:151.282 Data: 80 47 -T98A8 003:151.424 - 0.365ms returns 2 (0x2) -T98A8 003:151.506 JLINK_ReadMemEx(0x080002B4, 0x3C Bytes, Flags = 0x02000000) -T98A8 003:151.572 -- Read from C cache (60 bytes @ 0x080002B4) -T98A8 003:151.668 Data: 09 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... -T98A8 003:151.776 - 0.270ms returns 60 (0x3C) -T98A8 003:151.848 JLINK_ReadMemEx(0x080002B4, 0x2 Bytes, Flags = 0x02000000) -T98A8 003:151.916 -- Read from C cache (2 bytes @ 0x080002B4) -T98A8 003:152.033 Data: 09 48 -T98A8 003:152.133 - 0.285ms returns 2 (0x2) -T98A8 003:551.060 JLINK_HasError() -T98A8 003:551.271 JLINK_ReadReg(R0) -T98A8 003:551.614 - 0.341ms returns 0x00000000 -T98A8 003:551.730 JLINK_ReadReg(R1) -T98A8 003:551.802 - 0.072ms returns 0x00000000 -T98A8 003:551.873 JLINK_ReadReg(R2) -T98A8 003:551.941 - 0.068ms returns 0x00000000 -T98A8 003:552.030 JLINK_ReadReg(R3) -T98A8 003:552.106 - 0.075ms returns 0x00000000 -T98A8 003:552.175 JLINK_ReadReg(R4) -T98A8 003:552.243 - 0.067ms returns 0x00000000 -T98A8 003:552.313 JLINK_ReadReg(R5) -T98A8 003:552.401 - 0.088ms returns 0x00000000 -T98A8 003:552.442 JLINK_ReadReg(R6) -T98A8 003:552.482 - 0.039ms returns 0x00000000 -T98A8 003:552.521 JLINK_ReadReg(R7) -T98A8 003:552.561 - 0.039ms returns 0x00000000 -T98A8 003:552.623 JLINK_ReadReg(R8) -T98A8 003:552.674 - 0.073ms returns 0x00000000 -T98A8 003:552.721 JLINK_ReadReg(R9) -T98A8 003:552.767 - 0.045ms returns 0x00000000 -T98A8 003:552.807 JLINK_ReadReg(R10) -T98A8 003:552.846 - 0.039ms returns 0x00000000 -T98A8 003:552.891 JLINK_ReadReg(R11) -T98A8 003:552.931 - 0.039ms returns 0x00000000 -T98A8 003:552.982 JLINK_ReadReg(R12) -T98A8 003:553.021 - 0.039ms returns 0x00000000 -T98A8 003:553.061 JLINK_ReadReg(R13 (SP)) -T98A8 003:553.101 - 0.039ms returns 0x2001EFA8 -T98A8 003:553.141 JLINK_ReadReg(R14) -T98A8 003:553.180 - 0.038ms returns 0xFFFFFFFF -T98A8 003:553.225 JLINK_ReadReg(R15 (PC)) -T98A8 003:553.266 - 0.041ms returns 0x080002B0 -T98A8 003:553.307 JLINK_ReadReg(XPSR) -T98A8 003:553.428 - 0.121ms returns 0x01000000 -T98A8 003:553.470 JLINK_ReadReg(MSP) -T98A8 003:553.509 - 0.039ms returns 0x2001EFA8 -T98A8 003:553.551 JLINK_ReadReg(PSP) -T98A8 003:553.591 - 0.039ms returns 0x00000000 -T98A8 003:553.640 JLINK_ReadReg(CFBP) -T98A8 003:553.681 - 0.040ms returns 0x00000000 -T98A8 003:553.722 JLINK_ReadReg(FPSCR) -T98A8 003:556.686 - 2.962ms returns 0x00000000 -T98A8 003:556.803 JLINK_ReadReg(FPS0) -T98A8 003:556.873 - 0.071ms returns 0x00000000 -T98A8 003:556.941 JLINK_ReadReg(FPS1) -T98A8 003:557.009 - 0.067ms returns 0x00000000 -T98A8 003:557.078 JLINK_ReadReg(FPS2) -T98A8 003:557.144 - 0.066ms returns 0x00000000 -T98A8 003:557.213 JLINK_ReadReg(FPS3) -T98A8 003:557.280 - 0.066ms returns 0x00000000 -T98A8 003:557.356 JLINK_ReadReg(FPS4) -T98A8 003:557.423 - 0.067ms returns 0x00000000 -T98A8 003:557.495 JLINK_ReadReg(FPS5) -T98A8 003:557.567 - 0.072ms returns 0x00000000 -T98A8 003:557.640 JLINK_ReadReg(FPS6) -T98A8 003:557.706 - 0.066ms returns 0x00000000 -T98A8 003:557.777 JLINK_ReadReg(FPS7) -T98A8 003:557.844 - 0.067ms returns 0x00000000 -T98A8 003:557.917 JLINK_ReadReg(FPS8) -T98A8 003:557.985 - 0.067ms returns 0x00000000 -T98A8 003:558.071 JLINK_ReadReg(FPS9) -T98A8 003:558.162 - 0.090ms returns 0x00000000 -T98A8 003:558.236 JLINK_ReadReg(FPS10) -T98A8 003:558.304 - 0.068ms returns 0x00000000 -T98A8 003:558.378 JLINK_ReadReg(FPS11) -T98A8 003:558.449 - 0.072ms returns 0x00000000 -T98A8 003:558.494 JLINK_ReadReg(FPS12) -T98A8 003:558.541 - 0.047ms returns 0x00000000 -T98A8 003:558.585 JLINK_ReadReg(FPS13) -T98A8 003:558.628 - 0.042ms returns 0x00000000 -T98A8 003:558.669 JLINK_ReadReg(FPS14) -T98A8 003:558.711 - 0.041ms returns 0x00000000 -T98A8 003:558.783 JLINK_ReadReg(FPS15) -T98A8 003:558.860 - 0.076ms returns 0x00000000 -T98A8 003:558.923 JLINK_ReadReg(FPS16) -T98A8 003:558.989 - 0.065ms returns 0x00000000 -T98A8 003:559.050 JLINK_ReadReg(FPS17) -T98A8 003:559.134 - 0.082ms returns 0x00000000 -T98A8 003:559.200 JLINK_ReadReg(FPS18) -T98A8 003:559.256 - 0.056ms returns 0x00000000 -T98A8 003:559.320 JLINK_ReadReg(FPS19) -T98A8 003:559.378 - 0.058ms returns 0x00000000 -T98A8 003:559.446 JLINK_ReadReg(FPS20) -T98A8 003:559.503 - 0.056ms returns 0x00000000 -T98A8 003:559.564 JLINK_ReadReg(FPS21) -T98A8 003:559.620 - 0.056ms returns 0x00000000 -T98A8 003:559.682 JLINK_ReadReg(FPS22) -T98A8 003:559.739 - 0.057ms returns 0x00000000 -T98A8 003:559.798 JLINK_ReadReg(FPS23) -T98A8 003:559.856 - 0.058ms returns 0x00000000 -T98A8 003:559.917 JLINK_ReadReg(FPS24) -T98A8 003:559.974 - 0.056ms returns 0x00000000 -T98A8 003:560.040 JLINK_ReadReg(FPS25) -T98A8 003:560.099 - 0.058ms returns 0x00000000 -T98A8 003:560.159 JLINK_ReadReg(FPS26) -T98A8 003:560.219 - 0.059ms returns 0x00000000 -T98A8 003:560.276 JLINK_ReadReg(FPS27) -T98A8 003:560.334 - 0.058ms returns 0x00000000 -T98A8 003:560.398 JLINK_ReadReg(FPS28) -T98A8 003:560.452 - 0.054ms returns 0x00000000 -T98A8 003:560.514 JLINK_ReadReg(FPS29) -T98A8 003:560.570 - 0.056ms returns 0x00000000 -T98A8 003:560.629 JLINK_ReadReg(FPS30) -T98A8 003:560.686 - 0.057ms returns 0x00000000 -T98A8 003:560.747 JLINK_ReadReg(FPS31) -T98A8 003:560.804 - 0.056ms returns 0x00000000 -T98A8 003:574.299 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 003:574.413 CPU_ReadMem(128 bytes @ 0x20000100) -T98A8 003:575.299 -- Updating C cache (128 bytes @ 0x20000100) -T98A8 003:575.458 -- Read from C cache (25 bytes @ 0x20000130) -T98A8 003:575.610 Data: EC 68 E4 03 FC D4 2C 69 64 08 64 00 2C 61 EC 68 ... -T98A8 003:575.727 - 1.428ms returns 25 (0x19) -T98A8 003:638.415 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 003:638.515 CPU_ReadMem(64 bytes @ 0x200000C0) -T98A8 003:639.142 -- Updating C cache (64 bytes @ 0x200000C0) -T98A8 003:639.226 -- Read from C cache (1 bytes @ 0x200000CC) -T98A8 003:639.284 Data: 1A -T98A8 003:639.350 - 0.935ms returns 1 (0x1) -T98A8 003:639.439 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 003:639.499 -- Read from C cache (1 bytes @ 0x200000CC) -T98A8 003:639.591 Data: 1A -T98A8 003:639.677 - 0.238ms returns 1 (0x1) -T98A8 003:639.760 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 003:639.818 -- Read from C cache (1 bytes @ 0x200000CC) -T98A8 003:639.900 Data: 1A -T98A8 003:639.974 - 0.214ms returns 1 (0x1) -T98A8 003:671.874 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:671.977 CPU_ReadMem(64 bytes @ 0x2001CF80) -T98A8 003:672.566 -- Updating C cache (64 bytes @ 0x2001CF80) -T98A8 003:672.655 -- Read from C cache (4 bytes @ 0x2001CFBC) -T98A8 003:672.730 Data: 10 CF 01 20 -T98A8 003:672.789 - 0.915ms returns 4 (0x4) -T98A8 003:672.995 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:673.049 -- Read from C cache (4 bytes @ 0x2001CFBC) -T98A8 003:673.132 Data: 10 CF 01 20 -T98A8 003:673.220 - 0.225ms returns 4 (0x4) -T98A8 003:673.314 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:673.376 -- Read from C cache (4 bytes @ 0x2001CFBC) -T98A8 003:673.457 Data: 10 CF 01 20 -T98A8 003:673.527 - 0.213ms returns 4 (0x4) -T98A8 003:708.311 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:708.451 CPU_ReadMem(64 bytes @ 0x2001CFC0) -T98A8 003:709.118 -- Updating C cache (64 bytes @ 0x2001CFC0) -T98A8 003:709.290 -- Read from C cache (4 bytes @ 0x2001CFC0) -T98A8 003:709.401 Data: 49 CF 01 20 -T98A8 003:709.503 - 1.192ms returns 4 (0x4) -T98A8 003:709.648 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:709.695 -- Read from C cache (4 bytes @ 0x2001CFC0) -T98A8 003:709.754 Data: 49 CF 01 20 -T98A8 003:709.818 - 0.169ms returns 4 (0x4) -T98A8 003:709.915 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:709.970 -- Read from C cache (4 bytes @ 0x2001CFC0) -T98A8 003:710.028 Data: 49 CF 01 20 -T98A8 003:710.096 - 0.180ms returns 4 (0x4) -T358C 003:817.467 JLINK_ReadMemEx(0x080002B0, 0x2 Bytes, Flags = 0x02000000) -T358C 003:817.568 -- Read from C cache (2 bytes @ 0x080002B0) -T358C 003:817.627 Data: 09 48 -T358C 003:817.689 - 0.222ms returns 2 (0x2) -T358C 003:817.730 JLINK_HasError() -T358C 003:817.781 JLINK_SetBPEx(Addr = 0x0800AE50, Type = 0xFFFFFFF2) -T358C 003:817.824 - 0.043ms returns 0x00000001 -T358C 003:817.864 JLINK_HasError() -T358C 003:817.903 JLINK_HasError() -T358C 003:817.944 JLINK_Go() -T358C 003:817.992 CPU_WriteMem(4 bytes @ 0xE0002000) -T358C 003:818.401 CPU_ReadMem(4 bytes @ 0xE0001000) -T358C 003:819.302 CPU_WriteMem(4 bytes @ 0xE0002008) -T358C 003:819.421 CPU_WriteMem(4 bytes @ 0xE000200C) -T358C 003:819.504 CPU_WriteMem(4 bytes @ 0xE0002010) -T358C 003:819.586 CPU_WriteMem(4 bytes @ 0xE0002014) -T358C 003:819.668 CPU_WriteMem(4 bytes @ 0xE0002018) -T358C 003:819.749 CPU_WriteMem(4 bytes @ 0xE000201C) -T358C 003:820.801 CPU_WriteMem(4 bytes @ 0xE0001004) -T358C 003:821.685 Memory map 'after startup completion point' is active -T358C 003:821.773 - 3.829ms -T358C 003:921.868 JLINK_HasError() -T358C 003:922.006 JLINK_IsHalted() -T358C 003:923.912 - 1.916ms returns TRUE -T358C 003:924.109 JLINK_HasError() -T358C 003:924.175 JLINK_Halt() -T358C 003:924.216 - 0.040ms returns 0x00 -T358C 003:924.256 JLINK_IsHalted() -T358C 003:924.306 - 0.050ms returns TRUE -T358C 003:924.352 JLINK_IsHalted() -T358C 003:924.392 - 0.039ms returns TRUE -T358C 003:924.434 JLINK_IsHalted() -T358C 003:924.472 - 0.038ms returns TRUE -T358C 003:924.512 JLINK_HasError() -T358C 003:924.556 JLINK_ReadReg(R15 (PC)) -T358C 003:924.604 - 0.048ms returns 0x0800AE50 -T358C 003:924.644 JLINK_ReadReg(XPSR) -T358C 003:924.684 - 0.039ms returns 0x61000000 -T358C 003:924.727 JLINK_HasError() -T358C 003:924.779 JLINK_ClrBPEx(BPHandle = 0x00000001) -T358C 003:924.819 - 0.039ms returns 0x00 -T358C 003:924.867 JLINK_HasError() -T358C 003:924.908 JLINK_HasError() -T358C 003:924.947 JLINK_ReadMemU32(0xE000ED30, 0x1 Items) -T358C 003:924.994 CPU_ReadMem(4 bytes @ 0xE000ED30) -T358C 003:925.308 Data: 02 00 00 00 -T358C 003:925.380 - 0.432ms returns 1 (0x1) -T358C 003:925.424 JLINK_ReadMemU32(0xE0001028, 0x1 Items) -T358C 003:925.468 CPU_ReadMem(4 bytes @ 0xE0001028) -T358C 003:925.768 Data: 00 00 00 00 -T358C 003:925.876 Debug reg: DWT_FUNC[0] -T358C 003:925.977 - 0.552ms returns 1 (0x1) -T358C 003:926.047 JLINK_ReadMemU32(0xE0001038, 0x1 Items) -T358C 003:926.117 CPU_ReadMem(4 bytes @ 0xE0001038) -T358C 003:927.136 Data: 00 02 00 00 -T358C 003:927.247 Debug reg: DWT_FUNC[1] -T358C 003:927.326 - 1.279ms returns 1 (0x1) -T358C 003:927.384 JLINK_ReadMemU32(0xE0001048, 0x1 Items) -T358C 003:927.448 CPU_ReadMem(4 bytes @ 0xE0001048) -T358C 003:927.795 Data: 00 00 00 00 -T358C 003:927.907 Debug reg: DWT_FUNC[2] -T358C 003:927.998 - 0.613ms returns 1 (0x1) -T358C 003:928.053 JLINK_ReadMemU32(0xE0001058, 0x1 Items) -T358C 003:928.109 CPU_ReadMem(4 bytes @ 0xE0001058) -T358C 003:928.434 Data: 00 00 00 00 -T358C 003:928.532 Debug reg: DWT_FUNC[3] -T358C 003:928.600 - 0.546ms returns 1 (0x1) -T358C 003:928.694 JLINK_HasError() -T358C 003:928.743 JLINK_ReadReg(R0) -T358C 003:928.785 - 0.042ms returns 0x2001AAA8 -T358C 003:928.825 JLINK_ReadReg(R1) -T358C 003:928.864 - 0.038ms returns 0x2001AFA8 -T358C 003:928.904 JLINK_ReadReg(R2) -T358C 003:928.947 - 0.043ms returns 0x2001AFA8 -T358C 003:928.988 JLINK_ReadReg(R3) -T358C 003:929.026 - 0.038ms returns 0x2001E7A8 -T358C 003:929.069 JLINK_ReadReg(R4) -T358C 003:929.118 - 0.049ms returns 0x00000000 -T358C 003:929.169 JLINK_ReadReg(R5) -T358C 003:929.222 - 0.053ms returns 0x2001C4A8 -T358C 003:929.272 JLINK_ReadReg(R6) -T358C 003:929.325 - 0.053ms returns 0x00000000 -T358C 003:929.365 JLINK_ReadReg(R7) -T358C 003:929.423 - 0.057ms returns 0x00000000 -T358C 003:929.463 JLINK_ReadReg(R8) -T358C 003:929.507 - 0.044ms returns 0x00000000 -T358C 003:929.547 JLINK_ReadReg(R9) -T358C 003:929.586 - 0.038ms returns 0x00000000 -T358C 003:929.625 JLINK_ReadReg(R10) -T358C 003:929.663 - 0.037ms returns 0x080102A4 -T358C 003:929.702 JLINK_ReadReg(R11) -T358C 003:929.740 - 0.038ms returns 0x00000000 -T358C 003:929.779 JLINK_ReadReg(R12) -T358C 003:929.817 - 0.037ms returns 0x2001C4E8 -T358C 003:929.856 JLINK_ReadReg(R13 (SP)) -T358C 003:929.894 - 0.038ms returns 0x2001EFA8 -T358C 003:929.932 JLINK_ReadReg(R14) -T358C 003:929.976 - 0.043ms returns 0x0800029F -T358C 003:930.015 JLINK_ReadReg(R15 (PC)) -T358C 003:930.060 - 0.044ms returns 0x0800AE50 -T358C 003:930.100 JLINK_ReadReg(XPSR) -T358C 003:930.138 - 0.038ms returns 0x61000000 -T358C 003:930.177 JLINK_ReadReg(MSP) -T358C 003:930.215 - 0.038ms returns 0x2001EFA8 -T358C 003:930.254 JLINK_ReadReg(PSP) -T358C 003:930.292 - 0.038ms returns 0x00000000 -T358C 003:930.332 JLINK_ReadReg(CFBP) -T358C 003:930.370 - 0.038ms returns 0x04000000 -T358C 003:930.417 JLINK_ReadReg(FPSCR) -T358C 003:933.391 - 2.972ms returns 0x03000000 -T358C 003:933.502 JLINK_ReadReg(FPS0) -T358C 003:933.572 - 0.070ms returns 0x00000000 -T358C 003:933.640 JLINK_ReadReg(FPS1) -T358C 003:933.706 - 0.066ms returns 0x00000000 -T358C 003:933.774 JLINK_ReadReg(FPS2) -T358C 003:933.862 - 0.087ms returns 0x00000000 -T358C 003:933.930 JLINK_ReadReg(FPS3) -T358C 003:933.997 - 0.066ms returns 0x00000000 -T358C 003:934.038 JLINK_ReadReg(FPS4) -T358C 003:934.075 - 0.037ms returns 0x00000000 -T358C 003:934.114 JLINK_ReadReg(FPS5) -T358C 003:934.152 - 0.037ms returns 0x00000000 -T358C 003:934.191 JLINK_ReadReg(FPS6) -T358C 003:934.229 - 0.038ms returns 0x00000000 -T358C 003:934.268 JLINK_ReadReg(FPS7) -T358C 003:934.306 - 0.037ms returns 0x00000000 -T358C 003:934.344 JLINK_ReadReg(FPS8) -T358C 003:934.382 - 0.037ms returns 0x00000000 -T358C 003:934.421 JLINK_ReadReg(FPS9) -T358C 003:934.556 - 0.135ms returns 0x00000000 -T358C 003:934.596 JLINK_ReadReg(FPS10) -T358C 003:934.635 - 0.038ms returns 0x00000000 -T358C 003:934.678 JLINK_ReadReg(FPS11) -T358C 003:934.718 - 0.040ms returns 0x00000000 -T358C 003:934.759 JLINK_ReadReg(FPS12) -T358C 003:934.798 - 0.039ms returns 0x00000000 -T358C 003:934.841 JLINK_ReadReg(FPS13) -T358C 003:934.880 - 0.038ms returns 0x00000000 -T358C 003:934.919 JLINK_ReadReg(FPS14) -T358C 003:934.958 - 0.038ms returns 0x00000000 -T358C 003:935.004 JLINK_ReadReg(FPS15) -T358C 003:935.073 - 0.067ms returns 0x00000000 -T358C 003:935.126 JLINK_ReadReg(FPS16) -T358C 003:935.166 - 0.040ms returns 0x00000000 -T358C 003:935.205 JLINK_ReadReg(FPS17) -T358C 003:935.248 - 0.042ms returns 0x00000000 -T358C 003:935.287 JLINK_ReadReg(FPS18) -T358C 003:935.325 - 0.038ms returns 0x00000000 -T358C 003:935.364 JLINK_ReadReg(FPS19) -T358C 003:935.403 - 0.038ms returns 0x00000000 -T358C 003:935.443 JLINK_ReadReg(FPS20) -T358C 003:935.482 - 0.039ms returns 0x00000000 -T358C 003:935.522 JLINK_ReadReg(FPS21) -T358C 003:935.561 - 0.038ms returns 0x00000000 -T358C 003:935.601 JLINK_ReadReg(FPS22) -T358C 003:935.640 - 0.038ms returns 0x00000000 -T358C 003:935.682 JLINK_ReadReg(FPS23) -T358C 003:935.721 - 0.039ms returns 0x00000000 -T358C 003:935.762 JLINK_ReadReg(FPS24) -T358C 003:935.800 - 0.038ms returns 0x00000000 -T358C 003:935.840 JLINK_ReadReg(FPS25) -T358C 003:935.880 - 0.039ms returns 0x00000000 -T358C 003:935.919 JLINK_ReadReg(FPS26) -T358C 003:936.021 - 0.102ms returns 0x00000000 -T358C 003:936.069 JLINK_ReadReg(FPS27) -T358C 003:936.129 - 0.059ms returns 0x00000000 -T358C 003:936.175 JLINK_ReadReg(FPS28) -T358C 003:936.213 - 0.038ms returns 0x00000000 -T358C 003:936.391 JLINK_ReadReg(FPS29) -T358C 003:936.431 - 0.039ms returns 0x00000000 -T358C 003:936.470 JLINK_ReadReg(FPS30) -T358C 003:936.508 - 0.038ms returns 0x00000000 -T358C 003:936.547 JLINK_ReadReg(FPS31) -T358C 003:936.585 - 0.038ms returns 0x00000000 -T358C 003:936.630 JLINK_ReadMemEx(0x2001E498, 0x4 Bytes, Flags = 0x02000000) -T358C 003:936.683 CPU_ReadMem(64 bytes @ 0x2001E480) -T358C 003:937.241 -- Updating C cache (64 bytes @ 0x2001E480) -T358C 003:937.324 -- Read from C cache (4 bytes @ 0x2001E498) -T358C 003:937.382 Data: 00 00 00 00 -T358C 003:937.439 - 0.809ms returns 4 (0x4) -T98A8 003:940.573 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 003:940.716 CPU_ReadMem(128 bytes @ 0x20000100) -T98A8 003:941.632 -- Updating C cache (128 bytes @ 0x20000100) -T98A8 003:941.874 -- Read from C cache (25 bytes @ 0x20000130) -T98A8 003:942.068 Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -T98A8 003:942.206 - 1.633ms returns 25 (0x19) -T98A8 003:944.740 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 003:944.877 CPU_ReadMem(64 bytes @ 0x200000C0) -T98A8 003:945.507 -- Updating C cache (64 bytes @ 0x200000C0) -T98A8 003:945.613 -- Read from C cache (1 bytes @ 0x200000CC) -T98A8 003:945.679 Data: 00 -T98A8 003:945.775 - 1.035ms returns 1 (0x1) -T98A8 003:946.676 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:946.787 CPU_ReadMem(64 bytes @ 0x2001CF80) -T98A8 003:947.398 -- Updating C cache (64 bytes @ 0x2001CF80) -T98A8 003:947.532 -- Read from C cache (4 bytes @ 0x2001CFBC) -T98A8 003:947.628 Data: 00 00 00 00 -T98A8 003:947.722 - 1.046ms returns 4 (0x4) -T98A8 003:948.233 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 003:948.333 CPU_ReadMem(64 bytes @ 0x2001CFC0) -T98A8 003:948.986 -- Updating C cache (64 bytes @ 0x2001CFC0) -T98A8 003:949.128 -- Read from C cache (4 bytes @ 0x2001CFC0) -T98A8 003:949.224 Data: 00 00 00 00 -T98A8 003:949.316 - 1.083ms returns 4 (0x4) -T358C 005:132.207 JLINK_ReadMemEx(0x0800AE50, 0x2 Bytes, Flags = 0x02000000) -T358C 005:132.336 CPU_ReadMem(64 bytes @ 0x0800AE40) -T358C 005:132.974 -- Updating C cache (64 bytes @ 0x0800AE40) -T358C 005:133.122 -- Read from C cache (2 bytes @ 0x0800AE50) -T358C 005:133.233 Data: FA F7 -T358C 005:133.304 - 1.098ms returns 2 (0x2) -T358C 005:133.348 JLINK_HasError() -T358C 005:133.388 JLINK_HasError() -T358C 005:133.431 JLINK_Go() -T358C 005:133.709 CPU_ReadMem(4 bytes @ 0xE0001000) -T358C 005:134.070 CPU_WriteMem(4 bytes @ 0xE0002008) -T358C 005:134.693 - 1.262ms -T358C 005:235.218 JLINK_HasError() -T358C 005:235.360 JLINK_IsHalted() -T358C 005:235.722 - 0.360ms returns FALSE -T358C 005:336.641 JLINK_HasError() -T358C 005:336.733 JLINK_IsHalted() -T358C 005:337.097 - 0.363ms returns FALSE -T358C 005:437.722 JLINK_HasError() -T358C 005:437.837 JLINK_IsHalted() -T358C 005:438.435 - 0.597ms returns FALSE -T358C 005:538.586 JLINK_HasError() -T358C 005:538.670 JLINK_IsHalted() -T358C 005:539.001 - 0.330ms returns FALSE -T358C 005:639.441 JLINK_HasError() -T358C 005:639.537 JLINK_HasError() -T358C 005:639.589 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 005:639.645 CPU_ReadMem(4 bytes @ 0xE0001004) -T358C 005:639.972 Data: F7 AE 0E 05 -T358C 005:640.055 Debug reg: DWT_CYCCNT -T358C 005:640.117 - 0.527ms returns 1 (0x1) -T98A8 005:640.331 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 005:640.419 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 005:640.905 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 005:641.091 - 0.759ms returns 25 (0x19) -T98A8 005:643.584 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 005:643.666 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 005:644.221 Data: 00 -T98A8 005:644.324 - 0.739ms returns 1 (0x1) -T98A8 005:644.881 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 005:644.952 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 005:645.272 Data: 10 CF 01 20 -T98A8 005:645.430 - 0.549ms returns 4 (0x4) -T98A8 005:646.374 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 005:646.458 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 005:646.763 Data: 49 CF 01 20 -T98A8 005:646.855 - 0.481ms returns 4 (0x4) -T358C 005:647.644 JLINK_IsHalted() -T358C 005:647.985 - 0.341ms returns FALSE -T358C 005:748.806 JLINK_HasError() -T358C 005:748.887 JLINK_IsHalted() -T358C 005:749.172 - 0.283ms returns FALSE -T358C 005:849.837 JLINK_HasError() -T358C 005:849.933 JLINK_IsHalted() -T358C 005:850.242 - 0.308ms returns FALSE -T358C 005:951.468 JLINK_HasError() -T358C 005:951.555 JLINK_IsHalted() -T358C 005:951.868 - 0.311ms returns FALSE -T358C 006:051.973 JLINK_HasError() -T358C 006:052.101 JLINK_IsHalted() -T358C 006:052.966 - 0.860ms returns FALSE -T358C 006:153.649 JLINK_HasError() -T358C 006:153.733 JLINK_IsHalted() -T358C 006:154.136 - 0.401ms returns FALSE -T358C 006:254.893 JLINK_HasError() -T358C 006:254.999 JLINK_HasError() -T358C 006:255.039 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 006:255.092 Data: F7 AE 0E 05 -T358C 006:255.150 Debug reg: DWT_CYCCNT -T358C 006:255.207 - 0.167ms returns 1 (0x1) -T98A8 006:255.779 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 006:255.861 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 006:256.353 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 006:256.429 - 0.649ms returns 25 (0x19) -T98A8 006:257.185 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 006:257.254 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 006:257.586 Data: 00 -T98A8 006:257.747 - 0.562ms returns 1 (0x1) -T98A8 006:258.301 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 006:258.415 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 006:258.785 Data: 10 CF 01 20 -T98A8 006:258.923 - 0.622ms returns 4 (0x4) -T98A8 006:259.067 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 006:259.161 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 006:259.545 Data: 49 CF 01 20 -T98A8 006:259.707 - 0.640ms returns 4 (0x4) -T358C 006:259.979 JLINK_IsHalted() -T358C 006:260.660 - 0.680ms returns FALSE -T358C 006:360.896 JLINK_HasError() -T358C 006:361.164 JLINK_IsHalted() -T358C 006:361.481 - 0.315ms returns FALSE -T358C 006:462.226 JLINK_HasError() -T358C 006:462.372 JLINK_IsHalted() -T358C 006:462.816 - 0.442ms returns FALSE -T358C 006:563.597 JLINK_HasError() -T358C 006:563.777 JLINK_IsHalted() -T358C 006:564.232 - 0.453ms returns FALSE -T358C 006:664.590 JLINK_HasError() -T358C 006:664.790 JLINK_IsHalted() -T358C 006:665.214 - 0.423ms returns FALSE -T358C 006:766.265 JLINK_HasError() -T358C 006:766.382 JLINK_HasError() -T358C 006:766.423 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 006:766.476 Data: F7 AE 0E 05 -T358C 006:766.535 Debug reg: DWT_CYCCNT -T358C 006:766.605 - 0.182ms returns 1 (0x1) -T98A8 006:766.809 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 006:766.916 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 006:767.458 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 006:767.564 - 0.756ms returns 25 (0x19) -T98A8 006:768.970 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 006:769.062 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 006:769.404 Data: 00 -T98A8 006:769.506 - 0.536ms returns 1 (0x1) -T98A8 006:769.933 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 006:770.005 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 006:770.322 Data: 10 CF 01 20 -T98A8 006:770.421 - 0.487ms returns 4 (0x4) -T98A8 006:770.515 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 006:770.565 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 006:770.881 Data: 49 CF 01 20 -T98A8 006:770.972 - 0.456ms returns 4 (0x4) -T358C 006:771.170 JLINK_IsHalted() -T358C 006:771.469 - 0.298ms returns FALSE -T358C 006:872.254 JLINK_HasError() -T358C 006:872.437 JLINK_IsHalted() -T358C 006:872.863 - 0.426ms returns FALSE -T358C 006:973.371 JLINK_HasError() -T358C 006:973.488 JLINK_IsHalted() -T358C 006:973.854 - 0.366ms returns FALSE -T358C 007:074.637 JLINK_HasError() -T358C 007:074.785 JLINK_IsHalted() -T358C 007:075.204 - 0.418ms returns FALSE -T358C 007:176.266 JLINK_HasError() -T358C 007:176.379 JLINK_IsHalted() -T358C 007:176.691 - 0.311ms returns FALSE -T358C 007:278.006 JLINK_HasError() -T358C 007:278.159 JLINK_IsHalted() -T358C 007:278.514 - 0.354ms returns FALSE -T358C 007:379.247 JLINK_HasError() -T358C 007:379.333 JLINK_HasError() -T358C 007:379.373 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 007:379.425 Data: F7 AE 0E 05 -T358C 007:379.483 Debug reg: DWT_CYCCNT -T358C 007:379.540 - 0.166ms returns 1 (0x1) -T98A8 007:379.757 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 007:379.894 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 007:380.433 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 007:380.642 - 0.885ms returns 25 (0x19) -T98A8 007:382.225 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 007:382.310 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 007:382.613 Data: 00 -T98A8 007:382.687 - 0.463ms returns 1 (0x1) -T98A8 007:383.011 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 007:383.087 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 007:383.377 Data: 10 CF 01 20 -T98A8 007:383.448 - 0.437ms returns 4 (0x4) -T98A8 007:383.520 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 007:383.566 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 007:383.855 Data: 49 CF 01 20 -T98A8 007:383.923 - 0.403ms returns 4 (0x4) -T358C 007:384.077 JLINK_IsHalted() -T358C 007:384.417 - 0.338ms returns FALSE -T358C 007:484.771 JLINK_HasError() -T358C 007:484.888 JLINK_IsHalted() -T358C 007:485.220 - 0.330ms returns FALSE -T358C 007:586.076 JLINK_HasError() -T358C 007:586.166 JLINK_IsHalted() -T358C 007:586.630 - 0.463ms returns FALSE -T358C 007:686.950 JLINK_HasError() -T358C 007:687.193 JLINK_IsHalted() -T358C 007:687.595 - 0.400ms returns FALSE -T358C 007:788.731 JLINK_HasError() -T358C 007:788.826 JLINK_IsHalted() -T358C 007:789.121 - 0.295ms returns FALSE -T358C 007:889.507 JLINK_HasError() -T358C 007:889.627 JLINK_HasError() -T358C 007:889.677 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 007:889.737 Data: F7 AE 0E 05 -T358C 007:889.796 Debug reg: DWT_CYCCNT -T358C 007:889.860 - 0.183ms returns 1 (0x1) -T98A8 007:890.025 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 007:890.128 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 007:890.634 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 007:890.725 - 0.700ms returns 25 (0x19) -T98A8 007:891.596 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 007:891.686 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 007:892.027 Data: 00 -T98A8 007:892.113 - 0.518ms returns 1 (0x1) -T98A8 007:892.424 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 007:892.503 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 007:892.837 Data: 10 CF 01 20 -T98A8 007:892.918 - 0.494ms returns 4 (0x4) -T98A8 007:892.991 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 007:893.039 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 007:893.379 Data: 49 CF 01 20 -T98A8 007:893.469 - 0.477ms returns 4 (0x4) -T358C 007:893.589 JLINK_IsHalted() -T358C 007:894.515 - 0.922ms returns FALSE -T358C 007:995.865 JLINK_HasError() -T358C 007:996.009 JLINK_IsHalted() -T358C 007:996.321 - 0.311ms returns FALSE -T358C 008:097.359 JLINK_HasError() -T358C 008:097.516 JLINK_IsHalted() -T358C 008:097.886 - 0.369ms returns FALSE -T358C 008:198.181 JLINK_HasError() -T358C 008:198.374 JLINK_IsHalted() -T358C 008:198.749 - 0.374ms returns FALSE -T358C 008:299.716 JLINK_HasError() -T358C 008:299.861 JLINK_IsHalted() -T358C 008:300.285 - 0.422ms returns FALSE -T358C 008:401.261 JLINK_HasError() -T358C 008:401.414 JLINK_IsHalted() -T358C 008:401.858 - 0.443ms returns FALSE -T358C 008:502.777 JLINK_HasError() -T358C 008:502.945 JLINK_HasError() -T358C 008:503.016 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 008:503.102 Data: F7 AE 0E 05 -T358C 008:503.214 Debug reg: DWT_CYCCNT -T358C 008:503.318 - 0.300ms returns 1 (0x1) -T98A8 008:503.708 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 008:503.848 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 008:504.374 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 008:504.473 - 0.766ms returns 25 (0x19) -T98A8 008:505.224 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 008:505.294 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 008:505.640 Data: 00 -T98A8 008:505.710 - 0.486ms returns 1 (0x1) -T98A8 008:506.023 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 008:506.085 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 008:506.475 Data: 10 CF 01 20 -T98A8 008:506.568 - 0.545ms returns 4 (0x4) -T98A8 008:506.656 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 008:506.715 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 008:507.038 Data: 49 CF 01 20 -T98A8 008:507.108 - 0.452ms returns 4 (0x4) -T358C 008:507.276 JLINK_IsHalted() -T358C 008:507.612 - 0.336ms returns FALSE -T358C 008:607.936 JLINK_HasError() -T358C 008:608.038 JLINK_IsHalted() -T358C 008:608.344 - 0.305ms returns FALSE -T358C 008:708.897 JLINK_HasError() -T358C 008:709.078 JLINK_IsHalted() -T358C 008:709.499 - 0.421ms returns FALSE -T358C 008:810.650 JLINK_HasError() -T358C 008:810.825 JLINK_IsHalted() -T358C 008:811.376 - 0.550ms returns FALSE -T358C 008:911.957 JLINK_HasError() -T358C 008:912.045 JLINK_IsHalted() -T358C 008:912.366 - 0.319ms returns FALSE -T358C 009:012.586 JLINK_HasError() -T358C 009:012.718 JLINK_IsHalted() -T358C 009:013.082 - 0.364ms returns FALSE -T358C 009:113.456 JLINK_HasError() -T358C 009:113.544 JLINK_HasError() -T358C 009:113.586 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 009:113.639 Data: F7 AE 0E 05 -T358C 009:113.698 Debug reg: DWT_CYCCNT -T358C 009:113.762 - 0.174ms returns 1 (0x1) -T98A8 009:114.023 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 009:114.219 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 009:114.846 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 009:115.131 - 1.108ms returns 25 (0x19) -T98A8 009:116.967 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 009:117.074 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 009:117.402 Data: 00 -T98A8 009:117.496 - 0.529ms returns 1 (0x1) -T98A8 009:117.826 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 009:117.896 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 009:118.199 Data: 10 CF 01 20 -T98A8 009:118.274 - 0.448ms returns 4 (0x4) -T98A8 009:118.346 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 009:118.394 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 009:118.700 Data: 49 CF 01 20 -T98A8 009:118.790 - 0.444ms returns 4 (0x4) -T358C 009:118.964 JLINK_IsHalted() -T358C 009:119.341 - 0.376ms returns FALSE -T358C 009:220.454 JLINK_HasError() -T358C 009:220.548 JLINK_IsHalted() -T358C 009:220.867 - 0.318ms returns FALSE -T358C 009:321.702 JLINK_HasError() -T358C 009:321.875 JLINK_IsHalted() -T358C 009:322.346 - 0.470ms returns FALSE -T358C 009:422.476 JLINK_HasError() -T358C 009:422.780 JLINK_IsHalted() -T358C 009:423.366 - 0.586ms returns FALSE -T358C 009:523.633 JLINK_HasError() -T358C 009:523.733 JLINK_IsHalted() -T358C 009:524.048 - 0.314ms returns FALSE -T358C 009:624.349 JLINK_HasError() -T358C 009:624.431 JLINK_HasError() -T358C 009:624.472 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 009:624.524 Data: F7 AE 0E 05 -T358C 009:624.582 Debug reg: DWT_CYCCNT -T358C 009:624.638 - 0.166ms returns 1 (0x1) -T98A8 009:625.038 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 009:625.120 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 009:625.582 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 009:625.677 - 0.639ms returns 25 (0x19) -T98A8 009:626.380 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 009:626.474 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 009:626.851 Data: 00 -T98A8 009:627.014 - 0.633ms returns 1 (0x1) -T98A8 009:628.839 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 009:628.911 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 009:629.547 Data: 10 CF 01 20 -T98A8 009:629.725 - 0.888ms returns 4 (0x4) -T98A8 009:629.850 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 009:629.933 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 009:630.385 Data: 49 CF 01 20 -T98A8 009:630.545 - 0.695ms returns 4 (0x4) -T358C 009:630.735 JLINK_IsHalted() -T358C 009:631.783 - 1.048ms returns FALSE -T358C 009:732.045 JLINK_HasError() -T358C 009:732.253 JLINK_IsHalted() -T358C 009:732.643 - 0.389ms returns FALSE -T358C 009:833.194 JLINK_HasError() -T358C 009:833.333 JLINK_IsHalted() -T358C 009:833.691 - 0.356ms returns FALSE -T358C 009:934.286 JLINK_HasError() -T358C 009:934.528 JLINK_IsHalted() -T358C 009:934.999 - 0.471ms returns FALSE -T358C 010:036.072 JLINK_HasError() -T358C 010:036.169 JLINK_IsHalted() -T358C 010:036.536 - 0.366ms returns FALSE -T358C 010:136.776 JLINK_HasError() -T358C 010:136.950 JLINK_IsHalted() -T358C 010:137.827 - 0.875ms returns FALSE -T358C 010:238.966 JLINK_HasError() -T358C 010:239.122 JLINK_HasError() -T358C 010:239.194 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 010:239.277 Data: F7 AE 0E 05 -T358C 010:239.389 Debug reg: DWT_CYCCNT -T358C 010:239.501 - 0.306ms returns 1 (0x1) -T98A8 010:239.826 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 010:240.087 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 010:240.733 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 010:240.816 - 0.991ms returns 25 (0x19) -T98A8 010:241.653 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 010:241.729 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 010:242.050 Data: 00 -T98A8 010:242.122 - 0.470ms returns 1 (0x1) -T98A8 010:242.427 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 010:242.492 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 010:242.875 Data: 10 CF 01 20 -T98A8 010:243.098 - 0.670ms returns 4 (0x4) -T98A8 010:243.206 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 010:243.276 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 010:243.626 Data: 49 CF 01 20 -T98A8 010:243.864 - 0.657ms returns 4 (0x4) -T358C 010:244.080 JLINK_IsHalted() -T358C 010:244.389 - 0.308ms returns FALSE -T358C 010:345.398 JLINK_HasError() -T358C 010:345.493 JLINK_IsHalted() -T358C 010:345.857 - 0.362ms returns FALSE -T358C 010:447.236 JLINK_HasError() -T358C 010:447.347 JLINK_IsHalted() -T358C 010:447.734 - 0.384ms returns FALSE -T358C 010:548.934 JLINK_HasError() -T358C 010:549.022 JLINK_IsHalted() -T358C 010:549.429 - 0.405ms returns FALSE -T358C 010:650.687 JLINK_HasError() -T358C 010:650.786 JLINK_IsHalted() -T358C 010:651.098 - 0.311ms returns FALSE -T358C 010:751.540 JLINK_HasError() -T358C 010:751.716 JLINK_HasError() -T358C 010:751.786 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 010:751.952 Data: F7 AE 0E 05 -T358C 010:752.022 Debug reg: DWT_CYCCNT -T358C 010:752.079 - 0.293ms returns 1 (0x1) -T98A8 010:752.271 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 010:752.354 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 010:752.842 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 010:753.094 - 0.823ms returns 25 (0x19) -T98A8 010:753.896 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 010:753.968 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 010:754.278 Data: 00 -T98A8 010:754.430 - 0.534ms returns 1 (0x1) -T98A8 010:754.966 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 010:755.082 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 010:755.463 Data: 10 CF 01 20 -T98A8 010:755.544 - 0.579ms returns 4 (0x4) -T98A8 010:755.613 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 010:755.658 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 010:756.004 Data: 49 CF 01 20 -T98A8 010:756.070 - 0.458ms returns 4 (0x4) -T358C 010:756.231 JLINK_IsHalted() -T358C 010:756.594 - 0.362ms returns FALSE -T358C 010:857.437 JLINK_HasError() -T358C 010:857.516 JLINK_IsHalted() -T358C 010:857.821 - 0.304ms returns FALSE -T358C 010:958.443 JLINK_HasError() -T358C 010:958.736 JLINK_IsHalted() -T358C 010:959.288 - 0.551ms returns FALSE -T358C 011:059.762 JLINK_HasError() -T358C 011:060.193 JLINK_IsHalted() -T358C 011:060.682 - 0.488ms returns FALSE -T358C 011:161.407 JLINK_HasError() -T358C 011:161.549 JLINK_IsHalted() -T358C 011:162.466 - 0.916ms returns FALSE -T358C 011:263.192 JLINK_HasError() -T358C 011:263.376 JLINK_IsHalted() -T358C 011:263.986 - 0.607ms returns FALSE -T358C 011:365.422 JLINK_HasError() -T358C 011:365.687 JLINK_HasError() -T358C 011:365.845 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 011:366.025 Data: F7 AE 0E 05 -T358C 011:366.227 Debug reg: DWT_CYCCNT -T358C 011:366.342 - 0.497ms returns 1 (0x1) -T98A8 011:366.671 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 011:366.763 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 011:367.284 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 011:367.446 - 0.774ms returns 25 (0x19) -T98A8 011:368.178 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 011:368.248 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 011:368.592 Data: 00 -T98A8 011:368.686 - 0.508ms returns 1 (0x1) -T98A8 011:369.050 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 011:369.882 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 011:371.652 Data: 10 CF 01 20 -T98A8 011:371.811 - 2.762ms returns 4 (0x4) -T98A8 011:371.941 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 011:372.033 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 011:372.469 Data: 49 CF 01 20 -T98A8 011:372.550 - 0.609ms returns 4 (0x4) -T358C 011:372.670 JLINK_IsHalted() -T358C 011:373.011 - 0.340ms returns FALSE -T358C 011:474.355 JLINK_HasError() -T358C 011:474.469 JLINK_IsHalted() -T358C 011:474.826 - 0.356ms returns FALSE -T358C 011:575.364 JLINK_HasError() -T358C 011:575.522 JLINK_IsHalted() -T358C 011:575.883 - 0.361ms returns FALSE -T358C 011:676.759 JLINK_HasError() -T358C 011:676.947 JLINK_IsHalted() -T358C 011:677.362 - 0.412ms returns FALSE -T358C 011:777.600 JLINK_HasError() -T358C 011:777.758 JLINK_IsHalted() -T358C 011:778.178 - 0.420ms returns FALSE -T358C 011:879.254 JLINK_HasError() -T358C 011:879.394 JLINK_HasError() -T358C 011:879.499 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 011:879.610 Data: F7 AE 0E 05 -T358C 011:879.711 Debug reg: DWT_CYCCNT -T358C 011:879.812 - 0.312ms returns 1 (0x1) -T98A8 011:880.059 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 011:880.200 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 011:880.794 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 011:880.951 - 0.892ms returns 25 (0x19) -T98A8 011:881.789 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 011:881.862 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 011:882.176 Data: 00 -T98A8 011:882.270 - 0.480ms returns 1 (0x1) -T98A8 011:882.777 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 011:882.894 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 011:883.264 Data: 10 CF 01 20 -T98A8 011:883.386 - 0.609ms returns 4 (0x4) -T98A8 011:883.502 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 011:883.579 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 011:883.902 Data: 49 CF 01 20 -T98A8 011:884.054 - 0.552ms returns 4 (0x4) -T358C 011:884.270 JLINK_IsHalted() -T358C 011:884.653 - 0.383ms returns FALSE -T358C 011:985.312 JLINK_HasError() -T358C 011:985.396 JLINK_IsHalted() -T358C 011:985.722 - 0.324ms returns FALSE -T358C 012:086.390 JLINK_HasError() -T358C 012:086.523 JLINK_IsHalted() -T358C 012:087.424 - 0.900ms returns FALSE -T358C 012:187.522 JLINK_HasError() -T358C 012:187.626 JLINK_IsHalted() -T358C 012:188.250 - 0.622ms returns FALSE -T358C 012:289.182 JLINK_HasError() -T358C 012:289.370 JLINK_IsHalted() -T358C 012:289.765 - 0.393ms returns FALSE -T358C 012:390.451 JLINK_HasError() -T358C 012:390.570 JLINK_HasError() -T358C 012:390.629 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 012:390.698 Data: F7 AE 0E 05 -T358C 012:390.800 Debug reg: DWT_CYCCNT -T358C 012:390.884 - 0.255ms returns 1 (0x1) -T98A8 012:391.086 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 012:391.194 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 012:391.708 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 012:391.830 - 0.743ms returns 25 (0x19) -T98A8 012:392.894 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 012:392.982 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 012:393.898 Data: 00 -T98A8 012:394.013 - 1.120ms returns 1 (0x1) -T98A8 012:394.389 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 012:394.454 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 012:395.450 Data: 10 CF 01 20 -T98A8 012:395.565 - 1.176ms returns 4 (0x4) -T98A8 012:395.672 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 012:395.739 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 012:396.068 Data: 49 CF 01 20 -T98A8 012:396.151 - 0.479ms returns 4 (0x4) -T358C 012:396.317 JLINK_IsHalted() -T358C 012:396.578 - 0.260ms returns FALSE -T358C 012:497.690 JLINK_HasError() -T358C 012:497.797 JLINK_IsHalted() -T358C 012:498.151 - 0.353ms returns FALSE -T358C 012:599.158 JLINK_HasError() -T358C 012:599.285 JLINK_IsHalted() -T358C 012:599.717 - 0.430ms returns FALSE -T358C 012:700.165 JLINK_HasError() -T358C 012:700.379 JLINK_IsHalted() -T358C 012:701.126 - 0.747ms returns FALSE -T358C 012:802.605 JLINK_HasError() -T358C 012:802.829 JLINK_IsHalted() -T358C 012:803.219 - 0.389ms returns FALSE -T358C 012:903.820 JLINK_HasError() -T358C 012:904.005 JLINK_IsHalted() -T358C 012:904.578 - 0.570ms returns FALSE -T358C 013:005.307 JLINK_HasError() -T358C 013:005.414 JLINK_HasError() -T358C 013:005.455 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 013:005.508 Data: F7 AE 0E 05 -T358C 013:005.579 Debug reg: DWT_CYCCNT -T358C 013:005.635 - 0.180ms returns 1 (0x1) -T98A8 013:005.758 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 013:005.842 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 013:006.318 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 013:006.390 - 0.631ms returns 25 (0x19) -T98A8 013:007.078 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 013:007.149 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 013:007.453 Data: 00 -T98A8 013:007.522 - 0.444ms returns 1 (0x1) -T98A8 013:007.822 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 013:007.886 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 013:008.200 Data: 10 CF 01 20 -T98A8 013:008.269 - 0.446ms returns 4 (0x4) -T98A8 013:008.339 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 013:008.385 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 013:008.713 Data: 49 CF 01 20 -T98A8 013:008.802 - 0.463ms returns 4 (0x4) -T358C 013:008.985 JLINK_IsHalted() -T358C 013:009.311 - 0.326ms returns FALSE -T358C 013:110.256 JLINK_HasError() -T358C 013:110.495 JLINK_IsHalted() -T358C 013:111.084 - 0.587ms returns FALSE -T358C 013:211.268 JLINK_HasError() -T358C 013:211.421 JLINK_IsHalted() -T358C 013:211.792 - 0.370ms returns FALSE -T358C 013:312.970 JLINK_HasError() -T358C 013:313.122 JLINK_IsHalted() -T358C 013:313.825 - 0.702ms returns FALSE -T358C 013:414.430 JLINK_HasError() -T358C 013:414.584 JLINK_IsHalted() -T358C 013:414.938 - 0.352ms returns FALSE -T358C 013:516.075 JLINK_HasError() -T358C 013:516.222 JLINK_HasError() -T358C 013:516.293 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 013:516.378 Data: F7 AE 0E 05 -T358C 013:516.478 Debug reg: DWT_CYCCNT -T358C 013:516.578 - 0.284ms returns 1 (0x1) -T98A8 013:516.866 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 013:517.054 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 013:517.669 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 013:517.773 - 0.908ms returns 25 (0x19) -T98A8 013:520.618 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 013:520.765 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 013:521.653 Data: 00 -T98A8 013:521.811 - 1.193ms returns 1 (0x1) -T98A8 013:522.405 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 013:522.530 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 013:522.976 Data: 10 CF 01 20 -T98A8 013:523.083 - 0.679ms returns 4 (0x4) -T98A8 013:523.166 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 013:523.216 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 013:523.525 Data: 49 CF 01 20 -T98A8 013:523.619 - 0.454ms returns 4 (0x4) -T358C 013:523.798 JLINK_IsHalted() -T358C 013:524.162 - 0.363ms returns FALSE -T358C 013:624.989 JLINK_HasError() -T358C 013:625.131 JLINK_IsHalted() -T358C 013:625.494 - 0.361ms returns FALSE -T358C 013:725.938 JLINK_HasError() -T358C 013:726.182 JLINK_IsHalted() -T358C 013:727.325 - 1.142ms returns FALSE -T358C 013:827.450 JLINK_HasError() -T358C 013:827.539 JLINK_IsHalted() -T358C 013:827.968 - 0.427ms returns FALSE -T358C 013:929.050 JLINK_HasError() -T358C 013:929.178 JLINK_IsHalted() -T358C 013:929.510 - 0.332ms returns FALSE -T358C 014:030.630 JLINK_HasError() -T358C 014:030.797 JLINK_HasError() -T358C 014:030.858 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 014:030.947 Data: F7 AE 0E 05 -T358C 014:031.034 Debug reg: DWT_CYCCNT -T358C 014:031.120 - 0.262ms returns 1 (0x1) -T98A8 014:031.414 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 014:031.606 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 014:032.315 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 014:032.499 - 1.084ms returns 25 (0x19) -T98A8 014:034.706 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 014:034.914 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 014:035.350 Data: 00 -T98A8 014:035.624 - 0.918ms returns 1 (0x1) -T98A8 014:037.411 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 014:037.504 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 014:038.016 Data: 10 CF 01 20 -T98A8 014:038.138 - 0.727ms returns 4 (0x4) -T98A8 014:038.242 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 014:038.309 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 014:038.650 Data: 49 CF 01 20 -T98A8 014:038.771 - 0.529ms returns 4 (0x4) -T358C 014:038.933 JLINK_IsHalted() -T358C 014:039.853 - 0.919ms returns FALSE -T358C 014:140.680 JLINK_HasError() -T358C 014:140.832 JLINK_IsHalted() -T358C 014:141.170 - 0.337ms returns FALSE -T358C 014:242.142 JLINK_HasError() -T358C 014:242.240 JLINK_IsHalted() -T358C 014:242.554 - 0.313ms returns FALSE -T358C 014:343.411 JLINK_HasError() -T358C 014:343.517 JLINK_IsHalted() -T358C 014:343.864 - 0.345ms returns FALSE -T358C 014:444.430 JLINK_HasError() -T358C 014:444.560 JLINK_IsHalted() -T358C 014:445.736 - 1.174ms returns FALSE -T358C 014:546.437 JLINK_HasError() -T358C 014:546.554 JLINK_HasError() -T358C 014:546.595 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 014:546.658 Data: F7 AE 0E 05 -T358C 014:546.733 Debug reg: DWT_CYCCNT -T358C 014:546.834 - 0.237ms returns 1 (0x1) -T98A8 014:547.062 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 014:547.224 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 014:547.962 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 014:548.128 - 1.066ms returns 25 (0x19) -T98A8 014:549.338 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 014:549.421 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 014:549.738 Data: 00 -T98A8 014:549.845 - 0.506ms returns 1 (0x1) -T98A8 014:550.862 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 014:550.934 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 014:551.237 Data: 10 CF 01 20 -T98A8 014:551.322 - 0.459ms returns 4 (0x4) -T98A8 014:551.403 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 014:551.453 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 014:551.840 Data: 49 CF 01 20 -T98A8 014:551.962 - 0.557ms returns 4 (0x4) -T358C 014:552.235 JLINK_IsHalted() -T358C 014:552.958 - 0.722ms returns FALSE -T358C 014:653.803 JLINK_HasError() -T358C 014:653.910 JLINK_IsHalted() -T358C 014:654.227 - 0.316ms returns FALSE -T358C 014:754.861 JLINK_HasError() -T358C 014:755.021 JLINK_IsHalted() -T358C 014:755.437 - 0.415ms returns FALSE -T358C 014:855.922 JLINK_HasError() -T358C 014:856.038 JLINK_IsHalted() -T358C 014:856.384 - 0.343ms returns FALSE -T358C 014:957.134 JLINK_HasError() -T358C 014:957.330 JLINK_IsHalted() -T358C 014:957.747 - 0.417ms returns FALSE -T358C 015:058.150 JLINK_HasError() -T358C 015:058.272 JLINK_IsHalted() -T358C 015:058.606 - 0.334ms returns FALSE -T358C 015:159.442 JLINK_HasError() -T358C 015:159.550 JLINK_HasError() -T358C 015:159.608 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 015:159.682 Data: F7 AE 0E 05 -T358C 015:159.763 Debug reg: DWT_CYCCNT -T358C 015:159.843 - 0.234ms returns 1 (0x1) -T98A8 015:160.029 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 015:160.168 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 015:160.746 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 015:160.931 - 0.902ms returns 25 (0x19) -T98A8 015:161.866 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 015:161.938 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 015:162.334 Data: 00 -T98A8 015:162.454 - 0.588ms returns 1 (0x1) -T98A8 015:162.821 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:162.886 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 015:163.221 Data: 10 CF 01 20 -T98A8 015:163.325 - 0.504ms returns 4 (0x4) -T98A8 015:163.451 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:163.533 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 015:163.931 Data: 49 CF 01 20 -T98A8 015:164.085 - 0.633ms returns 4 (0x4) -T358C 015:164.582 JLINK_IsHalted() -T358C 015:165.021 - 0.438ms returns FALSE -T358C 015:265.802 JLINK_HasError() -T358C 015:265.920 JLINK_IsHalted() -T358C 015:266.253 - 0.332ms returns FALSE -T358C 015:366.566 JLINK_HasError() -T358C 015:366.712 JLINK_IsHalted() -T358C 015:367.094 - 0.381ms returns FALSE -T358C 015:467.595 JLINK_HasError() -T358C 015:467.674 JLINK_IsHalted() -T358C 015:468.006 - 0.331ms returns FALSE -T358C 015:568.859 JLINK_HasError() -T358C 015:569.406 JLINK_IsHalted() -T358C 015:569.792 - 0.384ms returns FALSE -T358C 015:670.069 JLINK_HasError() -T358C 015:670.189 JLINK_IsHalted() -T358C 015:670.992 - 0.800ms returns FALSE -T358C 015:772.126 JLINK_HasError() -T358C 015:772.266 JLINK_HasError() -T358C 015:772.366 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 015:772.478 Data: F7 AE 0E 05 -T358C 015:772.635 Debug reg: DWT_CYCCNT -T358C 015:772.768 - 0.402ms returns 1 (0x1) -T98A8 015:772.936 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 015:773.026 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 015:773.533 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 015:773.619 - 0.683ms returns 25 (0x19) -T98A8 015:774.850 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 015:774.950 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 015:775.296 Data: 00 -T98A8 015:775.466 - 0.616ms returns 1 (0x1) -T98A8 015:775.995 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:776.078 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 015:776.392 Data: 10 CF 01 20 -T98A8 015:776.485 - 0.489ms returns 4 (0x4) -T98A8 015:776.603 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:776.682 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 015:777.056 Data: 49 CF 01 20 -T98A8 015:777.174 - 0.572ms returns 4 (0x4) -T358C 015:777.344 JLINK_IsHalted() -T358C 015:777.762 - 0.417ms returns FALSE -T358C 015:878.451 JLINK_HasError() -T358C 015:878.587 JLINK_IsHalted() -T358C 015:878.957 - 0.368ms returns FALSE -T98A8 015:963.688 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:963.786 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 015:964.474 Data: 40 C4 01 20 -T98A8 015:964.563 - 0.875ms returns 4 (0x4) -T98A8 015:964.653 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 015:964.696 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 015:965.021 Data: 00 -T98A8 015:965.104 - 0.451ms returns 1 (0x1) -T98A8 015:965.166 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:965.210 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 015:965.534 Data: 40 C4 01 20 -T98A8 015:965.614 - 0.447ms returns 4 (0x4) -T98A8 015:965.677 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 015:965.718 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 015:966.397 Data: 00 -T98A8 015:966.541 - 0.864ms returns 1 (0x1) -T98A8 015:976.058 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 015:976.154 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 015:976.603 Data: 40 C4 01 20 -T98A8 015:976.803 - 0.745ms returns 4 (0x4) -T98A8 015:976.970 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 015:977.107 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 015:977.533 Data: 00 -T98A8 015:977.618 - 0.648ms returns 1 (0x1) -T358C 015:979.086 JLINK_HasError() -T358C 015:979.178 JLINK_IsHalted() -T358C 015:979.490 - 0.311ms returns FALSE -T358C 016:080.478 JLINK_HasError() -T358C 016:080.598 JLINK_IsHalted() -T358C 016:080.942 - 0.342ms returns FALSE -T358C 016:182.090 JLINK_HasError() -T358C 016:182.296 JLINK_IsHalted() -T358C 016:182.934 - 0.637ms returns FALSE -T358C 016:283.667 JLINK_HasError() -T358C 016:283.750 JLINK_HasError() -T358C 016:283.790 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 016:283.846 Data: F7 AE 0E 05 -T358C 016:283.907 Debug reg: DWT_CYCCNT -T358C 016:283.963 - 0.173ms returns 1 (0x1) -T98A8 016:284.122 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 016:284.258 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 016:284.822 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 016:284.984 - 0.863ms returns 25 (0x19) -T98A8 016:285.101 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 016:285.184 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 016:285.554 Data: 40 C4 01 20 -T98A8 016:285.685 - 0.584ms returns 4 (0x4) -T98A8 016:285.765 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 016:285.810 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 016:286.109 Data: 00 -T98A8 016:286.179 - 0.415ms returns 1 (0x1) -T98A8 016:287.021 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 016:287.094 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 016:287.398 Data: 00 -T98A8 016:287.493 - 0.473ms returns 1 (0x1) -T98A8 016:287.821 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 016:287.888 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 016:288.229 Data: 10 CF 01 20 -T98A8 016:288.363 - 0.542ms returns 4 (0x4) -T98A8 016:288.477 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 016:288.570 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 016:288.946 Data: 49 CF 01 20 -T98A8 016:289.088 - 0.610ms returns 4 (0x4) -T358C 016:289.259 JLINK_IsHalted() -T358C 016:289.579 - 0.320ms returns FALSE -T358C 016:389.760 JLINK_HasError() -T358C 016:389.885 JLINK_IsHalted() -T358C 016:390.270 - 0.385ms returns FALSE -T358C 016:491.765 JLINK_HasError() -T358C 016:491.845 JLINK_IsHalted() -T358C 016:492.160 - 0.314ms returns FALSE -T358C 016:592.530 JLINK_HasError() -T358C 016:592.621 JLINK_IsHalted() -T358C 016:592.978 - 0.354ms returns FALSE -T358C 016:693.526 JLINK_HasError() -T358C 016:693.602 JLINK_IsHalted() -T358C 016:694.096 - 0.493ms returns FALSE -T358C 016:794.422 JLINK_HasError() -T358C 016:794.564 JLINK_IsHalted() -T358C 016:794.964 - 0.399ms returns FALSE -T358C 016:895.340 JLINK_HasError() -T358C 016:895.538 JLINK_HasError() -T358C 016:895.638 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 016:895.754 Data: F7 AE 0E 05 -T358C 016:895.900 Debug reg: DWT_CYCCNT -T358C 016:896.044 - 0.405ms returns 1 (0x1) -T98A8 016:896.364 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 016:896.516 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 016:897.014 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 016:897.092 - 0.728ms returns 25 (0x19) -T98A8 016:897.162 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 016:897.210 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 016:897.508 Data: 40 C4 01 20 -T98A8 016:897.586 - 0.425ms returns 4 (0x4) -T98A8 016:897.672 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 016:897.766 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 016:898.156 Data: 00 -T98A8 016:898.300 - 0.629ms returns 1 (0x1) -T98A8 016:899.288 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 016:899.364 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 016:899.684 Data: 00 -T98A8 016:899.764 - 0.475ms returns 1 (0x1) -T98A8 016:900.116 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 016:900.184 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 016:900.542 Data: 10 CF 01 20 -T98A8 016:900.718 - 0.603ms returns 4 (0x4) -T98A8 016:900.846 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 016:900.930 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 016:901.300 Data: 49 CF 01 20 -T98A8 016:901.390 - 0.544ms returns 4 (0x4) -T358C 016:901.506 JLINK_IsHalted() -T358C 016:901.842 - 0.336ms returns FALSE -T358C 017:002.758 JLINK_HasError() -T358C 017:002.896 JLINK_IsHalted() -T358C 017:003.300 - 0.401ms returns FALSE -T358C 017:104.250 JLINK_HasError() -T358C 017:104.458 JLINK_IsHalted() -T358C 017:104.860 - 0.401ms returns FALSE -T358C 017:205.884 JLINK_HasError() -T358C 017:206.060 JLINK_IsHalted() -T358C 017:206.492 - 0.432ms returns FALSE -T358C 017:306.920 JLINK_HasError() -T358C 017:307.046 JLINK_IsHalted() -T358C 017:307.430 - 0.383ms returns FALSE -T358C 017:407.880 JLINK_HasError() -T358C 017:408.012 JLINK_HasError() -T358C 017:408.082 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 017:408.164 Data: F7 AE 0E 05 -T358C 017:408.266 Debug reg: DWT_CYCCNT -T358C 017:408.364 - 0.283ms returns 1 (0x1) -T98A8 017:408.620 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 017:408.812 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 017:409.412 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 017:409.584 - 0.964ms returns 25 (0x19) -T98A8 017:409.750 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:409.866 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 017:410.336 Data: 40 C4 01 20 -T98A8 017:410.404 - 0.656ms returns 4 (0x4) -T98A8 017:410.484 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 017:410.528 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 017:410.870 Data: 00 -T98A8 017:410.972 - 0.489ms returns 1 (0x1) -T98A8 017:412.642 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 017:412.740 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 017:413.056 Data: 00 -T98A8 017:413.144 - 0.504ms returns 1 (0x1) -T98A8 017:413.578 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:413.682 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 017:414.022 Data: 10 CF 01 20 -T98A8 017:414.144 - 0.567ms returns 4 (0x4) -T98A8 017:414.246 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:414.316 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 017:414.652 Data: 49 CF 01 20 -T98A8 017:414.744 - 0.497ms returns 4 (0x4) -T358C 017:414.968 JLINK_IsHalted() -T358C 017:415.288 - 0.320ms returns FALSE -T358C 017:515.702 JLINK_HasError() -T358C 017:515.796 JLINK_IsHalted() -T358C 017:516.102 - 0.306ms returns FALSE -T358C 017:617.176 JLINK_HasError() -T358C 017:617.354 JLINK_IsHalted() -T358C 017:617.820 - 0.464ms returns FALSE -T358C 017:718.196 JLINK_HasError() -T358C 017:718.332 JLINK_IsHalted() -T358C 017:718.678 - 0.343ms returns FALSE -T358C 017:818.986 JLINK_HasError() -T358C 017:819.132 JLINK_IsHalted() -T358C 017:819.516 - 0.382ms returns FALSE -T358C 017:920.190 JLINK_HasError() -T358C 017:920.316 JLINK_HasError() -T358C 017:920.374 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 017:920.454 Data: F7 AE 0E 05 -T358C 017:920.532 Debug reg: DWT_CYCCNT -T358C 017:920.604 - 0.230ms returns 1 (0x1) -T98A8 017:920.802 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 017:920.900 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 017:921.398 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 017:921.530 - 0.727ms returns 25 (0x19) -T98A8 017:921.654 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:921.736 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 017:922.138 Data: 40 C4 01 20 -T98A8 017:922.264 - 0.609ms returns 4 (0x4) -T98A8 017:922.388 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 017:922.466 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 017:922.888 Data: 00 -T98A8 017:922.956 - 0.567ms returns 1 (0x1) -T98A8 017:925.208 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 017:925.306 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 017:925.702 Data: 00 -T98A8 017:925.820 - 0.613ms returns 1 (0x1) -T98A8 017:926.236 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:926.316 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 017:926.616 Data: 10 CF 01 20 -T98A8 017:926.702 - 0.466ms returns 4 (0x4) -T98A8 017:926.774 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:926.828 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 017:927.188 Data: 49 CF 01 20 -T98A8 017:927.282 - 0.507ms returns 4 (0x4) -T358C 017:927.472 JLINK_IsHalted() -T358C 017:927.792 - 0.319ms returns FALSE -T98A8 017:951.850 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:951.962 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 017:952.518 Data: 01 00 00 00 -T98A8 017:952.636 - 0.788ms returns 4 (0x4) -T98A8 017:952.764 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:952.824 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 017:953.192 Data: 01 00 00 00 -T98A8 017:953.292 - 0.528ms returns 4 (0x4) -T98A8 017:965.018 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 017:965.116 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 017:965.460 Data: 01 00 00 00 -T98A8 017:965.544 - 0.527ms returns 4 (0x4) -T358C 018:028.584 JLINK_HasError() -T358C 018:028.700 JLINK_IsHalted() -T358C 018:029.042 - 0.340ms returns FALSE -T358C 018:130.058 JLINK_HasError() -T358C 018:130.160 JLINK_IsHalted() -T358C 018:130.484 - 0.323ms returns FALSE -T358C 018:231.748 JLINK_HasError() -T358C 018:231.844 JLINK_IsHalted() -T358C 018:232.162 - 0.317ms returns FALSE -T358C 018:332.844 JLINK_HasError() -T358C 018:333.016 JLINK_IsHalted() -T358C 018:333.506 - 0.487ms returns FALSE -T358C 018:434.450 JLINK_HasError() -T358C 018:434.610 JLINK_IsHalted() -T358C 018:435.026 - 0.416ms returns FALSE -T358C 018:536.070 JLINK_HasError() -T358C 018:536.180 JLINK_HasError() -T358C 018:536.240 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 018:536.306 Data: F7 AE 0E 05 -T358C 018:536.384 Debug reg: DWT_CYCCNT -T358C 018:536.460 - 0.219ms returns 1 (0x1) -T98A8 018:536.600 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 018:536.700 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 018:537.308 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 018:537.396 - 0.795ms returns 25 (0x19) -T98A8 018:537.464 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 018:537.512 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 018:537.828 Data: 40 C4 01 20 -T98A8 018:537.910 - 0.446ms returns 4 (0x4) -T98A8 018:537.996 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 018:538.042 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 018:538.362 Data: 01 00 00 00 -T98A8 018:538.432 - 0.436ms returns 4 (0x4) -T98A8 018:538.500 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 018:538.546 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 018:538.844 Data: 00 -T98A8 018:538.916 - 0.414ms returns 1 (0x1) -T98A8 018:539.682 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 018:539.754 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 018:540.104 Data: 00 -T98A8 018:540.230 - 0.549ms returns 1 (0x1) -T98A8 018:541.066 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 018:541.150 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 018:541.508 Data: 10 CF 01 20 -T98A8 018:541.612 - 0.546ms returns 4 (0x4) -T98A8 018:541.716 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 018:541.788 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 018:542.132 Data: 49 CF 01 20 -T98A8 018:542.284 - 0.568ms returns 4 (0x4) -T358C 018:542.514 JLINK_IsHalted() -T358C 018:542.858 - 0.343ms returns FALSE -T358C 018:643.512 JLINK_HasError() -T358C 018:643.672 JLINK_IsHalted() -T358C 018:644.094 - 0.421ms returns FALSE -T358C 018:744.858 JLINK_HasError() -T358C 018:745.032 JLINK_IsHalted() -T358C 018:746.044 - 1.009ms returns FALSE -T358C 018:847.134 JLINK_HasError() -T358C 018:847.220 JLINK_IsHalted() -T358C 018:847.562 - 0.338ms returns FALSE -T358C 018:947.692 JLINK_HasError() -T358C 018:947.780 JLINK_IsHalted() -T358C 018:948.108 - 0.329ms returns FALSE -T358C 019:048.738 JLINK_HasError() -T358C 019:048.862 JLINK_HasError() -T358C 019:048.932 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 019:049.016 Data: F7 AE 0E 05 -T358C 019:049.220 Debug reg: DWT_CYCCNT -T358C 019:049.324 - 0.390ms returns 1 (0x1) -T98A8 019:049.622 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 019:049.816 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 019:050.468 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 019:050.696 - 1.073ms returns 25 (0x19) -T98A8 019:050.788 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:050.846 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 019:051.188 Data: 40 C4 01 20 -T98A8 019:051.284 - 0.494ms returns 4 (0x4) -T98A8 019:051.376 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:051.424 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 019:051.766 Data: 01 00 00 00 -T98A8 019:051.868 - 0.493ms returns 4 (0x4) -T98A8 019:051.956 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 019:052.038 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 019:052.452 Data: 00 -T98A8 019:052.570 - 0.614ms returns 1 (0x1) -T98A8 019:053.468 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 019:053.544 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 019:053.872 Data: 00 -T98A8 019:053.956 - 0.488ms returns 1 (0x1) -T98A8 019:054.306 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:054.374 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 019:055.220 Data: 10 CF 01 20 -T98A8 019:055.316 - 1.010ms returns 4 (0x4) -T98A8 019:055.396 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:055.446 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 019:055.742 Data: 49 CF 01 20 -T98A8 019:055.832 - 0.436ms returns 4 (0x4) -T358C 019:055.980 JLINK_IsHalted() -T358C 019:056.282 - 0.301ms returns FALSE -T358C 019:156.894 JLINK_HasError() -T358C 019:156.982 JLINK_IsHalted() -T358C 019:157.330 - 0.346ms returns FALSE -T358C 019:257.902 JLINK_HasError() -T358C 019:257.988 JLINK_IsHalted() -T358C 019:258.320 - 0.328ms returns FALSE -T358C 019:359.146 JLINK_HasError() -T358C 019:359.338 JLINK_IsHalted() -T358C 019:359.800 - 0.461ms returns FALSE -T98A8 019:425.664 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:425.760 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 019:426.600 Data: 00 00 00 00 -T98A8 019:426.690 - 1.025ms returns 4 (0x4) -T98A8 019:426.780 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:426.824 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 019:427.148 Data: 00 00 00 00 -T98A8 019:427.226 - 0.444ms returns 4 (0x4) -T98A8 019:443.156 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:443.256 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 019:444.346 Data: 00 00 00 00 -T98A8 019:444.630 - 1.472ms returns 4 (0x4) -T358C 019:460.196 JLINK_HasError() -T358C 019:460.406 JLINK_IsHalted() -T358C 019:460.826 - 0.418ms returns FALSE -T358C 019:562.010 JLINK_HasError() -T358C 019:562.188 JLINK_HasError() -T358C 019:562.288 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 019:562.404 Data: F7 AE 0E 05 -T358C 019:562.570 Debug reg: DWT_CYCCNT -T358C 019:562.712 - 0.423ms returns 1 (0x1) -T98A8 019:562.974 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 019:563.058 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 019:563.588 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 019:563.684 - 0.711ms returns 25 (0x19) -T98A8 019:563.750 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:563.804 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 019:564.170 Data: 40 C4 01 20 -T98A8 019:564.262 - 0.512ms returns 4 (0x4) -T98A8 019:564.342 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:564.390 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 019:564.712 Data: 01 00 00 00 -T98A8 019:564.806 - 0.463ms returns 4 (0x4) -T98A8 019:564.874 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:564.920 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 019:565.242 Data: 00 00 00 00 -T98A8 019:565.334 - 0.461ms returns 4 (0x4) -T98A8 019:565.410 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 019:565.458 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 019:565.796 Data: 00 -T98A8 019:565.956 - 0.546ms returns 1 (0x1) -T98A8 019:566.958 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 019:567.052 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 019:567.392 Data: 00 -T98A8 019:567.492 - 0.533ms returns 1 (0x1) -T98A8 019:567.800 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:567.868 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 019:568.174 Data: 10 CF 01 20 -T98A8 019:568.268 - 0.468ms returns 4 (0x4) -T98A8 019:568.340 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 019:568.388 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 019:568.726 Data: 49 CF 01 20 -T98A8 019:568.846 - 0.507ms returns 4 (0x4) -T358C 019:569.002 JLINK_IsHalted() -T358C 019:569.540 - 0.539ms returns FALSE -T358C 019:670.208 JLINK_HasError() -T358C 019:670.300 JLINK_IsHalted() -T358C 019:670.640 - 0.340ms returns FALSE -T358C 019:771.430 JLINK_HasError() -T358C 019:771.526 JLINK_IsHalted() -T358C 019:771.828 - 0.300ms returns FALSE -T358C 019:872.286 JLINK_HasError() -T358C 019:872.434 JLINK_IsHalted() -T358C 019:872.808 - 0.373ms returns FALSE -T358C 019:973.546 JLINK_HasError() -T358C 019:973.704 JLINK_IsHalted() -T358C 019:974.318 - 0.612ms returns FALSE -T358C 020:074.612 JLINK_HasError() -T358C 020:074.732 JLINK_IsHalted() -T358C 020:075.134 - 0.399ms returns FALSE -T358C 020:175.458 JLINK_HasError() -T358C 020:175.608 JLINK_HasError() -T358C 020:175.678 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 020:175.772 Data: F7 AE 0E 05 -T358C 020:175.874 Debug reg: DWT_CYCCNT -T358C 020:175.972 - 0.293ms returns 1 (0x1) -T98A8 020:176.204 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 020:176.298 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 020:176.814 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 020:176.892 - 0.689ms returns 25 (0x19) -T98A8 020:176.958 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:177.008 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 020:177.316 Data: 40 C4 01 20 -T98A8 020:177.388 - 0.428ms returns 4 (0x4) -T98A8 020:177.566 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:177.626 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 020:178.064 Data: 01 00 00 00 -T98A8 020:178.268 - 0.701ms returns 4 (0x4) -T98A8 020:178.424 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:178.508 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 020:178.884 Data: 00 00 00 00 -T98A8 020:178.984 - 0.560ms returns 4 (0x4) -T98A8 020:179.064 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 020:179.114 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 020:179.408 Data: 00 -T98A8 020:179.480 - 0.416ms returns 1 (0x1) -T98A8 020:180.402 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 020:180.476 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 020:180.790 Data: 00 -T98A8 020:180.890 - 0.488ms returns 1 (0x1) -T98A8 020:181.240 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:181.308 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 020:181.670 Data: 10 CF 01 20 -T98A8 020:181.740 - 0.500ms returns 4 (0x4) -T98A8 020:181.814 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:181.862 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 020:182.202 Data: 49 CF 01 20 -T98A8 020:182.280 - 0.466ms returns 4 (0x4) -T358C 020:182.482 JLINK_IsHalted() -T358C 020:182.876 - 0.393ms returns FALSE -T358C 020:283.316 JLINK_HasError() -T358C 020:283.512 JLINK_IsHalted() -T358C 020:283.940 - 0.426ms returns FALSE -T358C 020:384.590 JLINK_HasError() -T358C 020:384.808 JLINK_IsHalted() -T358C 020:385.844 - 1.034ms returns FALSE -T358C 020:486.106 JLINK_HasError() -T358C 020:486.352 JLINK_IsHalted() -T358C 020:487.228 - 0.874ms returns FALSE -T358C 020:587.724 JLINK_HasError() -T358C 020:587.874 JLINK_IsHalted() -T358C 020:588.234 - 0.359ms returns FALSE -T358C 020:689.878 JLINK_HasError() -T358C 020:690.040 JLINK_HasError() -T358C 020:690.184 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 020:690.326 Data: F7 AE 0E 05 -T358C 020:690.536 Debug reg: DWT_CYCCNT -T358C 020:690.646 - 0.463ms returns 1 (0x1) -T98A8 020:691.328 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 020:691.410 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 020:691.892 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 020:692.046 - 0.717ms returns 25 (0x19) -T98A8 020:692.166 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:692.248 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 020:692.606 Data: 40 C4 01 20 -T98A8 020:692.678 - 0.512ms returns 4 (0x4) -T98A8 020:692.758 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:692.804 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 020:693.098 Data: 01 00 00 00 -T98A8 020:693.164 - 0.406ms returns 4 (0x4) -T98A8 020:693.228 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:693.274 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 020:693.576 Data: 00 00 00 00 -T98A8 020:693.658 - 0.431ms returns 4 (0x4) -T98A8 020:693.726 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 020:693.772 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 020:694.102 Data: 00 -T98A8 020:694.294 - 0.567ms returns 1 (0x1) -T98A8 020:695.620 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 020:695.700 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 020:696.108 Data: 00 -T98A8 020:696.260 - 0.641ms returns 1 (0x1) -T98A8 020:696.832 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:696.948 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 020:697.338 Data: 10 CF 01 20 -T98A8 020:697.412 - 0.580ms returns 4 (0x4) -T98A8 020:697.482 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 020:697.532 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 020:697.822 Data: 49 CF 01 20 -T98A8 020:697.890 - 0.407ms returns 4 (0x4) -T358C 020:698.042 JLINK_IsHalted() -T358C 020:698.336 - 0.293ms returns FALSE -T358C 020:798.692 JLINK_HasError() -T358C 020:798.780 JLINK_IsHalted() -T358C 020:799.564 - 0.782ms returns FALSE -T358C 020:899.844 JLINK_HasError() -T358C 020:899.966 JLINK_IsHalted() -T358C 020:900.318 - 0.351ms returns FALSE -T358C 021:000.700 JLINK_HasError() -T358C 021:000.826 JLINK_IsHalted() -T358C 021:001.188 - 0.359ms returns FALSE -T358C 021:102.774 JLINK_HasError() -T358C 021:102.916 JLINK_IsHalted() -T358C 021:103.296 - 0.378ms returns FALSE -T358C 021:204.300 JLINK_HasError() -T358C 021:204.612 JLINK_HasError() -T358C 021:204.656 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 021:204.724 Data: F7 AE 0E 05 -T358C 021:204.784 Debug reg: DWT_CYCCNT -T358C 021:204.842 - 0.185ms returns 1 (0x1) -T98A8 021:205.132 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 021:205.228 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 021:205.768 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 021:205.852 - 0.721ms returns 25 (0x19) -T98A8 021:205.920 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:205.968 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 021:206.278 Data: 40 C4 01 20 -T98A8 021:206.354 - 0.432ms returns 4 (0x4) -T98A8 021:206.456 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:206.500 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 021:206.796 Data: 01 00 00 00 -T98A8 021:206.884 - 0.428ms returns 4 (0x4) -T98A8 021:206.950 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:206.996 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 021:207.308 Data: 00 00 00 00 -T98A8 021:207.388 - 0.437ms returns 4 (0x4) -T98A8 021:207.456 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:207.502 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 021:207.814 Data: 00 -T98A8 021:207.890 - 0.433ms returns 1 (0x1) -T98A8 021:208.940 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:209.014 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 021:209.388 Data: 00 -T98A8 021:209.460 - 0.520ms returns 1 (0x1) -T98A8 021:210.218 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:210.338 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 021:210.798 Data: 10 CF 01 20 -T98A8 021:210.972 - 0.754ms returns 4 (0x4) -T98A8 021:211.132 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:211.196 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 021:211.548 Data: 49 CF 01 20 -T98A8 021:211.644 - 0.512ms returns 4 (0x4) -T358C 021:211.804 JLINK_IsHalted() -T358C 021:212.132 - 0.326ms returns FALSE -T358C 021:312.580 JLINK_HasError() -T358C 021:312.694 JLINK_IsHalted() -T358C 021:313.556 - 0.858ms returns FALSE -T358C 021:414.044 JLINK_HasError() -T358C 021:414.156 JLINK_IsHalted() -T358C 021:414.528 - 0.372ms returns FALSE -T98A8 021:462.646 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:462.872 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 021:463.352 Data: 01 -T98A8 021:463.446 - 0.802ms returns 1 (0x1) -T98A8 021:463.532 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:463.584 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 021:463.882 Data: 01 -T98A8 021:463.960 - 0.427ms returns 1 (0x1) -T98A8 021:464.008 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:464.054 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 021:464.356 Data: 01 -T98A8 021:464.420 - 0.412ms returns 1 (0x1) -T98A8 021:464.464 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:464.506 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 021:464.798 Data: 01 -T98A8 021:464.858 - 0.393ms returns 1 (0x1) -T98A8 021:464.900 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:464.940 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 021:465.278 Data: 01 -T98A8 021:465.418 - 0.516ms returns 1 (0x1) -T98A8 021:465.500 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:465.572 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 021:465.922 Data: 03 -T98A8 021:465.998 - 0.499ms returns 1 (0x1) -T98A8 021:466.046 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:466.088 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 021:466.384 Data: 01 -T98A8 021:466.454 - 0.408ms returns 1 (0x1) -T98A8 021:466.500 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:466.548 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 021:466.878 Data: 01 -T98A8 021:467.016 - 0.516ms returns 1 (0x1) -T98A8 021:467.148 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:467.230 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 021:467.602 Data: 01 -T98A8 021:467.724 - 0.576ms returns 1 (0x1) -T98A8 021:467.812 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:467.884 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 021:468.288 Data: 01 -T98A8 021:468.432 - 0.621ms returns 1 (0x1) -T98A8 021:468.516 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:468.590 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 021:468.936 Data: 01 -T98A8 021:469.032 - 0.515ms returns 1 (0x1) -T98A8 021:469.076 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:469.118 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 021:469.404 Data: 01 -T98A8 021:469.468 - 0.391ms returns 1 (0x1) -T98A8 021:469.512 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:469.552 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 021:469.836 Data: 01 -T98A8 021:469.898 - 0.386ms returns 1 (0x1) -T98A8 021:469.940 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:469.980 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 021:470.268 Data: 03 -T98A8 021:470.348 - 0.407ms returns 1 (0x1) -T98A8 021:470.500 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:470.578 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 021:470.952 Data: 01 -T98A8 021:471.034 - 0.639ms returns 1 (0x1) -T98A8 021:471.080 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:471.122 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 021:471.418 Data: 01 -T98A8 021:471.492 - 0.412ms returns 1 (0x1) -T98A8 021:483.562 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:483.696 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 021:484.170 Data: 01 -T98A8 021:484.258 - 0.696ms returns 1 (0x1) -T98A8 021:484.314 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:484.360 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 021:485.394 Data: 01 -T98A8 021:485.544 - 1.230ms returns 1 (0x1) -T98A8 021:485.626 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:485.788 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 021:486.470 Data: 01 -T98A8 021:486.668 - 1.041ms returns 1 (0x1) -T98A8 021:486.758 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:486.836 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 021:487.288 Data: 01 -T98A8 021:487.436 - 0.675ms returns 1 (0x1) -T98A8 021:487.502 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:487.562 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 021:487.840 Data: 01 -T98A8 021:487.906 - 0.404ms returns 1 (0x1) -T98A8 021:487.950 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:487.990 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 021:488.976 Data: 03 -T98A8 021:489.046 - 1.097ms returns 1 (0x1) -T98A8 021:489.092 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:489.132 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 021:489.828 Data: 01 -T98A8 021:489.900 - 0.808ms returns 1 (0x1) -T98A8 021:489.944 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:489.986 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 021:490.266 Data: 01 -T98A8 021:490.348 - 0.402ms returns 1 (0x1) -T358C 021:515.472 JLINK_HasError() -T358C 021:515.668 JLINK_IsHalted() -T358C 021:516.450 - 0.780ms returns FALSE -T358C 021:617.492 JLINK_HasError() -T358C 021:617.652 JLINK_IsHalted() -T358C 021:618.068 - 0.414ms returns FALSE -T358C 021:718.864 JLINK_HasError() -T358C 021:718.982 JLINK_HasError() -T358C 021:719.082 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 021:719.148 Data: F7 AE 0E 05 -T358C 021:719.210 Debug reg: DWT_CYCCNT -T358C 021:719.268 - 0.186ms returns 1 (0x1) -T98A8 021:719.606 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 021:719.780 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 021:720.502 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 021:720.600 - 0.996ms returns 25 (0x19) -T98A8 021:720.670 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:720.718 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 021:721.056 Data: 40 C4 01 20 -T98A8 021:721.148 - 0.478ms returns 4 (0x4) -T98A8 021:721.258 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:721.306 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 021:721.614 Data: 01 00 00 00 -T98A8 021:721.708 - 0.450ms returns 4 (0x4) -T98A8 021:721.780 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:721.828 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 021:722.174 Data: 01 -T98A8 021:722.268 - 0.487ms returns 1 (0x1) -T98A8 021:722.322 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:722.370 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 021:722.672 Data: 01 -T98A8 021:722.812 - 0.489ms returns 1 (0x1) -T98A8 021:722.900 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:722.982 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 021:723.376 Data: 01 -T98A8 021:723.458 - 0.559ms returns 1 (0x1) -T98A8 021:723.508 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:723.556 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 021:723.872 Data: 01 -T98A8 021:724.034 - 0.524ms returns 1 (0x1) -T98A8 021:724.122 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:724.202 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 021:724.558 Data: 01 -T98A8 021:724.682 - 0.560ms returns 1 (0x1) -T98A8 021:724.764 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:724.844 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 021:725.288 Data: 03 -T98A8 021:725.372 - 0.608ms returns 1 (0x1) -T98A8 021:725.424 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:725.468 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 021:725.780 Data: 01 -T98A8 021:725.910 - 0.486ms returns 1 (0x1) -T98A8 021:725.994 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:726.074 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 021:726.448 Data: 01 -T98A8 021:726.574 - 0.579ms returns 1 (0x1) -T98A8 021:726.664 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:726.744 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 021:727.144 Data: 00 00 00 00 -T98A8 021:727.214 - 0.551ms returns 4 (0x4) -T98A8 021:727.298 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:727.348 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 021:727.788 Data: 00 -T98A8 021:728.014 - 0.715ms returns 1 (0x1) -T98A8 021:729.136 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 021:729.206 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 021:729.540 Data: 00 -T98A8 021:729.698 - 0.562ms returns 1 (0x1) -T98A8 021:730.248 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:730.362 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 021:731.388 Data: 10 CF 01 20 -T98A8 021:731.560 - 1.311ms returns 4 (0x4) -T98A8 021:731.678 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 021:731.744 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 021:732.060 Data: 49 CF 01 20 -T98A8 021:732.204 - 0.525ms returns 4 (0x4) -T358C 021:732.388 JLINK_IsHalted() -T358C 021:732.694 - 0.307ms returns FALSE -T358C 021:833.152 JLINK_HasError() -T358C 021:833.284 JLINK_IsHalted() -T358C 021:834.212 - 0.927ms returns FALSE -T358C 021:935.204 JLINK_HasError() -T358C 021:935.302 JLINK_IsHalted() -T358C 021:935.868 - 0.563ms returns FALSE -T358C 022:036.522 JLINK_HasError() -T358C 022:036.616 JLINK_IsHalted() -T358C 022:036.986 - 0.368ms returns FALSE -T358C 022:137.300 JLINK_HasError() -T358C 022:137.444 JLINK_IsHalted() -T358C 022:137.808 - 0.362ms returns FALSE -T358C 022:237.930 JLINK_HasError() -T358C 022:238.060 JLINK_HasError() -T358C 022:238.100 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 022:238.150 Data: F7 AE 0E 05 -T358C 022:238.210 Debug reg: DWT_CYCCNT -T358C 022:238.278 - 0.179ms returns 1 (0x1) -T98A8 022:238.478 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 022:238.620 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 022:239.206 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 022:239.342 - 0.865ms returns 25 (0x19) -T98A8 022:239.452 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:239.532 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 022:240.010 Data: 40 C4 01 20 -T98A8 022:240.270 - 0.819ms returns 4 (0x4) -T98A8 022:240.500 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:240.628 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 022:240.944 Data: 01 00 00 00 -T98A8 022:241.034 - 0.534ms returns 4 (0x4) -T98A8 022:241.122 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:241.170 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 022:241.478 Data: 01 -T98A8 022:241.556 - 0.435ms returns 1 (0x1) -T98A8 022:241.606 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:241.652 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 022:242.062 Data: 01 -T98A8 022:242.166 - 0.561ms returns 1 (0x1) -T98A8 022:242.218 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:242.264 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 022:242.568 Data: 01 -T98A8 022:242.682 - 0.464ms returns 1 (0x1) -T98A8 022:242.732 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:242.780 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 022:243.092 Data: 01 -T98A8 022:243.240 - 0.506ms returns 1 (0x1) -T98A8 022:243.326 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:243.414 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 022:243.764 Data: 01 -T98A8 022:243.838 - 0.512ms returns 1 (0x1) -T98A8 022:243.886 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:243.950 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 022:244.364 Data: 03 -T98A8 022:244.500 - 0.614ms returns 1 (0x1) -T98A8 022:244.588 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:244.666 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 022:245.044 Data: 01 -T98A8 022:245.134 - 0.548ms returns 1 (0x1) -T98A8 022:245.186 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:245.232 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 022:245.540 Data: 01 -T98A8 022:245.688 - 0.502ms returns 1 (0x1) -T98A8 022:245.774 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:245.864 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 022:246.234 Data: 00 00 00 00 -T98A8 022:246.316 - 0.542ms returns 4 (0x4) -T98A8 022:246.412 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:246.460 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 022:246.766 Data: 00 -T98A8 022:246.838 - 0.427ms returns 1 (0x1) -T98A8 022:247.638 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:247.708 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 022:248.024 Data: 00 -T98A8 022:248.100 - 0.462ms returns 1 (0x1) -T98A8 022:248.412 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:248.476 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 022:248.768 Data: 10 CF 01 20 -T98A8 022:248.844 - 0.433ms returns 4 (0x4) -T98A8 022:248.912 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:248.958 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 022:249.254 Data: 49 CF 01 20 -T98A8 022:249.328 - 0.415ms returns 4 (0x4) -T358C 022:249.444 JLINK_IsHalted() -T358C 022:249.812 - 0.366ms returns FALSE -T358C 022:350.524 JLINK_HasError() -T358C 022:350.686 JLINK_IsHalted() -T358C 022:351.222 - 0.535ms returns FALSE -T358C 022:452.326 JLINK_HasError() -T358C 022:452.512 JLINK_IsHalted() -T358C 022:452.956 - 0.442ms returns FALSE -T358C 022:553.172 JLINK_HasError() -T358C 022:553.300 JLINK_IsHalted() -T358C 022:553.686 - 0.384ms returns FALSE -T358C 022:654.022 JLINK_HasError() -T358C 022:654.212 JLINK_IsHalted() -T358C 022:654.708 - 0.493ms returns FALSE -T358C 022:755.050 JLINK_HasError() -T358C 022:755.196 JLINK_HasError() -T358C 022:755.250 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 022:755.310 Data: F7 AE 0E 05 -T358C 022:755.380 Debug reg: DWT_CYCCNT -T358C 022:755.444 - 0.194ms returns 1 (0x1) -T98A8 022:755.724 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 022:755.824 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 022:756.376 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 022:756.468 - 0.746ms returns 25 (0x19) -T98A8 022:756.542 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:756.594 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 022:756.918 Data: 40 C4 01 20 -T98A8 022:757.010 - 0.466ms returns 4 (0x4) -T98A8 022:757.172 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:757.230 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 022:757.546 Data: 01 00 00 00 -T98A8 022:757.648 - 0.476ms returns 4 (0x4) -T98A8 022:757.732 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:757.782 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 022:758.110 Data: 01 -T98A8 022:758.262 - 0.530ms returns 1 (0x1) -T98A8 022:758.350 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:758.430 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 022:758.820 Data: 01 -T98A8 022:758.908 - 0.559ms returns 1 (0x1) -T98A8 022:758.962 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:759.012 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 022:759.392 Data: 01 -T98A8 022:759.486 - 0.524ms returns 1 (0x1) -T98A8 022:759.540 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:759.588 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 022:759.916 Data: 01 -T98A8 022:759.998 - 0.458ms returns 1 (0x1) -T98A8 022:760.048 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:760.094 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 022:760.412 Data: 01 -T98A8 022:760.484 - 0.435ms returns 1 (0x1) -T98A8 022:760.532 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:760.580 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 022:760.880 Data: 03 -T98A8 022:760.972 - 0.439ms returns 1 (0x1) -T98A8 022:761.028 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:761.076 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 022:761.424 Data: 01 -T98A8 022:761.496 - 0.469ms returns 1 (0x1) -T98A8 022:761.546 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:761.594 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 022:761.936 Data: 01 -T98A8 022:762.028 - 0.484ms returns 1 (0x1) -T98A8 022:762.082 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:762.136 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 022:762.444 Data: 00 00 00 00 -T98A8 022:762.514 - 0.432ms returns 4 (0x4) -T98A8 022:762.592 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:762.638 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 022:762.942 Data: 00 -T98A8 022:763.010 - 0.417ms returns 1 (0x1) -T98A8 022:764.520 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 022:764.596 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 022:764.900 Data: 00 -T98A8 022:764.986 - 0.465ms returns 1 (0x1) -T98A8 022:765.496 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:765.604 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 022:765.998 Data: 10 CF 01 20 -T98A8 022:766.116 - 0.621ms returns 4 (0x4) -T98A8 022:766.220 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 022:766.300 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 022:766.660 Data: 49 CF 01 20 -T98A8 022:766.782 - 0.561ms returns 4 (0x4) -T358C 022:766.970 JLINK_IsHalted() -T358C 022:767.358 - 0.388ms returns FALSE -T358C 022:868.196 JLINK_HasError() -T358C 022:868.404 JLINK_IsHalted() -T358C 022:868.822 - 0.416ms returns FALSE -T358C 022:969.404 JLINK_HasError() -T358C 022:969.562 JLINK_IsHalted() -T358C 022:970.004 - 0.440ms returns FALSE -T358C 023:071.078 JLINK_HasError() -T358C 023:071.282 JLINK_IsHalted() -T358C 023:071.704 - 0.422ms returns FALSE -T358C 023:172.190 JLINK_HasError() -T358C 023:172.380 JLINK_IsHalted() -T358C 023:172.968 - 0.585ms returns FALSE -T358C 023:274.124 JLINK_HasError() -T358C 023:274.232 JLINK_HasError() -T358C 023:274.276 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 023:274.336 Data: F7 AE 0E 05 -T358C 023:274.396 Debug reg: DWT_CYCCNT -T358C 023:274.454 - 0.178ms returns 1 (0x1) -T98A8 023:274.778 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 023:274.856 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 023:275.420 Data: 0F 00 04 20 00 F1 17 16 00 7E 3A 2C 61 09 4B 58 ... -T98A8 023:275.512 - 0.735ms returns 25 (0x19) -T98A8 023:275.580 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:275.628 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 023:275.966 Data: 40 C4 01 20 -T98A8 023:276.038 - 0.458ms returns 4 (0x4) -T98A8 023:276.154 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:276.200 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 023:276.536 Data: 01 00 00 00 -T98A8 023:276.604 - 0.451ms returns 4 (0x4) -T98A8 023:276.668 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:276.716 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 023:277.020 Data: 02 -T98A8 023:277.100 - 0.431ms returns 1 (0x1) -T98A8 023:277.810 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:277.902 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 023:278.260 Data: 01 -T98A8 023:278.412 - 0.602ms returns 1 (0x1) -T98A8 023:278.500 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:278.594 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 023:278.948 Data: 01 -T98A8 023:279.086 - 0.586ms returns 1 (0x1) -T98A8 023:279.206 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:279.286 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 023:279.690 Data: 01 -T98A8 023:279.776 - 0.570ms returns 1 (0x1) -T98A8 023:279.828 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:279.874 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 023:280.274 Data: 01 -T98A8 023:280.422 - 0.595ms returns 1 (0x1) -T98A8 023:280.516 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:280.604 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 023:280.980 Data: 03 -T98A8 023:281.100 - 0.582ms returns 1 (0x1) -T98A8 023:281.180 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:281.258 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 023:281.652 Data: 01 -T98A8 023:281.770 - 0.591ms returns 1 (0x1) -T98A8 023:281.852 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:281.930 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 023:282.324 Data: 01 -T98A8 023:282.420 - 0.569ms returns 1 (0x1) -T98A8 023:282.468 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:282.530 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 023:282.914 Data: 00 00 00 00 -T98A8 023:282.988 - 0.520ms returns 4 (0x4) -T98A8 023:283.096 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:283.142 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 023:283.540 Data: 00 -T98A8 023:283.606 - 0.511ms returns 1 (0x1) -T98A8 023:284.352 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:284.420 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 023:284.810 Data: 00 -T98A8 023:284.880 - 0.527ms returns 1 (0x1) -T98A8 023:285.194 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:285.268 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 023:285.660 Data: 10 CF 01 20 -T98A8 023:285.732 - 0.538ms returns 4 (0x4) -T98A8 023:285.798 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:285.844 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 023:286.190 Data: 49 CF 01 20 -T98A8 023:286.352 - 0.553ms returns 4 (0x4) -T358C 023:286.558 JLINK_IsHalted() -T358C 023:286.940 - 0.380ms returns FALSE -T358C 023:388.074 JLINK_HasError() -T358C 023:388.232 JLINK_IsHalted() -T358C 023:388.764 - 0.529ms returns FALSE -T358C 023:489.578 JLINK_HasError() -T358C 023:489.744 JLINK_IsHalted() -T358C 023:490.156 - 0.412ms returns FALSE -T358C 023:590.826 JLINK_HasError() -T358C 023:590.982 JLINK_IsHalted() -T358C 023:591.424 - 0.440ms returns FALSE -T358C 023:692.304 JLINK_HasError() -T358C 023:692.492 JLINK_IsHalted() -T358C 023:693.096 - 0.603ms returns FALSE -T358C 023:794.092 JLINK_HasError() -T358C 023:794.388 JLINK_HasError() -T358C 023:794.460 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 023:794.556 Data: F7 AE 0E 05 -T358C 023:794.660 Debug reg: DWT_CYCCNT -T358C 023:794.758 - 0.298ms returns 1 (0x1) -T98A8 023:795.142 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 023:795.382 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 023:796.112 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 09 4B 58 ... -T98A8 023:796.304 - 1.163ms returns 25 (0x19) -T98A8 023:796.484 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:796.564 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 023:797.118 Data: 40 C4 01 20 -T98A8 023:797.202 - 0.717ms returns 4 (0x4) -T98A8 023:797.310 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:797.392 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 023:797.788 Data: 01 00 00 00 -T98A8 023:797.956 - 0.647ms returns 4 (0x4) -T98A8 023:798.186 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:798.268 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 023:798.722 Data: 01 -T98A8 023:798.818 - 0.632ms returns 1 (0x1) -T98A8 023:799.516 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:799.584 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 023:799.958 Data: 01 -T98A8 023:800.148 - 0.631ms returns 1 (0x1) -T98A8 023:800.242 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:800.380 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 023:800.798 Data: 01 -T98A8 023:800.960 - 0.719ms returns 1 (0x1) -T98A8 023:801.046 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:801.130 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 023:801.516 Data: 01 -T98A8 023:801.638 - 0.591ms returns 1 (0x1) -T98A8 023:801.720 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:801.798 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 023:802.172 Data: 01 -T98A8 023:802.332 - 0.611ms returns 1 (0x1) -T98A8 023:802.420 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:802.510 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 023:802.872 Data: 03 -T98A8 023:802.960 - 0.541ms returns 1 (0x1) -T98A8 023:803.010 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:803.058 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 023:803.356 Data: 01 -T98A8 023:803.482 - 0.471ms returns 1 (0x1) -T98A8 023:803.564 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:803.644 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 023:803.980 Data: 01 -T98A8 023:804.098 - 0.535ms returns 1 (0x1) -T98A8 023:804.194 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:804.278 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 023:804.700 Data: 00 00 00 00 -T98A8 023:804.786 - 0.592ms returns 4 (0x4) -T98A8 023:804.926 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:804.974 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 023:805.290 Data: 00 -T98A8 023:805.436 - 0.509ms returns 1 (0x1) -T98A8 023:806.404 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 023:806.476 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 023:806.784 Data: 00 -T98A8 023:806.928 - 0.523ms returns 1 (0x1) -T98A8 023:807.518 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:807.630 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 023:808.374 Data: 10 CF 01 20 -T98A8 023:808.666 - 1.144ms returns 4 (0x4) -T98A8 023:808.882 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 023:809.004 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 023:809.492 Data: 49 CF 01 20 -T98A8 023:809.604 - 0.724ms returns 4 (0x4) -T358C 023:809.792 JLINK_IsHalted() -T358C 023:810.146 - 0.353ms returns FALSE -T358C 023:911.018 JLINK_HasError() -T358C 023:911.148 JLINK_IsHalted() -T358C 023:911.536 - 0.388ms returns FALSE -T358C 024:011.686 JLINK_HasError() -T358C 024:011.780 JLINK_IsHalted() -T358C 024:012.120 - 0.339ms returns FALSE -T358C 024:112.740 JLINK_HasError() -T358C 024:112.908 JLINK_IsHalted() -T358C 024:113.324 - 0.416ms returns FALSE -T358C 024:214.148 JLINK_HasError() -T358C 024:214.304 JLINK_IsHalted() -T358C 024:214.720 - 0.414ms returns FALSE -T358C 024:315.144 JLINK_HasError() -T358C 024:315.412 JLINK_HasError() -T358C 024:315.620 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 024:315.816 Data: F7 AE 0E 05 -T358C 024:316.026 Debug reg: DWT_CYCCNT -T358C 024:316.220 - 0.600ms returns 1 (0x1) -T98A8 024:316.908 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 024:317.020 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 024:317.604 Data: 0F 00 04 20 00 F1 17 96 4F 7F 3A 2C 61 09 4B 58 ... -T98A8 024:317.700 - 0.794ms returns 25 (0x19) -T98A8 024:317.778 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:317.828 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 024:318.156 Data: 40 C4 01 20 -T98A8 024:318.342 - 0.564ms returns 4 (0x4) -T98A8 024:318.530 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:318.646 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 024:319.054 Data: 01 00 00 00 -T98A8 024:319.140 - 0.612ms returns 4 (0x4) -T98A8 024:319.432 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:319.552 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 024:320.002 Data: 03 -T98A8 024:320.216 - 0.783ms returns 1 (0x1) -T98A8 024:321.020 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:321.096 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 024:321.452 Data: 01 -T98A8 024:321.534 - 0.514ms returns 1 (0x1) -T98A8 024:321.588 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:321.636 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 024:322.500 Data: 01 -T98A8 024:322.660 - 1.071ms returns 1 (0x1) -T98A8 024:322.746 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:322.822 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 024:323.136 Data: 01 -T98A8 024:323.290 - 0.544ms returns 1 (0x1) -T98A8 024:323.380 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:323.462 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 024:323.800 Data: 01 -T98A8 024:323.924 - 0.544ms returns 1 (0x1) -T98A8 024:324.012 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:324.066 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 024:324.358 Data: 03 -T98A8 024:324.430 - 0.417ms returns 1 (0x1) -T98A8 024:324.478 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:324.526 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 024:324.820 Data: 01 -T98A8 024:324.890 - 0.410ms returns 1 (0x1) -T98A8 024:324.938 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:324.982 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 024:325.550 Data: 01 -T98A8 024:325.656 - 0.719ms returns 1 (0x1) -T98A8 024:325.724 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:325.788 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 024:326.116 Data: 00 00 00 00 -T98A8 024:326.196 - 0.472ms returns 4 (0x4) -T98A8 024:326.328 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:326.378 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 024:326.730 Data: 00 -T98A8 024:326.820 - 0.490ms returns 1 (0x1) -T98A8 024:327.658 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:327.730 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 024:328.056 Data: 00 -T98A8 024:328.132 - 0.475ms returns 1 (0x1) -T98A8 024:329.396 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:329.846 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 024:330.180 Data: 10 CF 01 20 -T98A8 024:330.260 - 0.869ms returns 4 (0x4) -T98A8 024:330.328 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:330.374 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 024:330.704 Data: 49 CF 01 20 -T98A8 024:330.806 - 0.479ms returns 4 (0x4) -T358C 024:331.212 JLINK_IsHalted() -T358C 024:331.564 - 0.354ms returns FALSE -T358C 024:432.468 JLINK_HasError() -T358C 024:432.662 JLINK_IsHalted() -T358C 024:433.236 - 0.568ms returns FALSE -T358C 024:533.948 JLINK_HasError() -T358C 024:534.076 JLINK_IsHalted() -T358C 024:534.430 - 0.354ms returns FALSE -T358C 024:635.182 JLINK_HasError() -T358C 024:635.322 JLINK_IsHalted() -T358C 024:635.732 - 0.407ms returns FALSE -T358C 024:736.142 JLINK_HasError() -T358C 024:736.292 JLINK_IsHalted() -T358C 024:736.654 - 0.362ms returns FALSE -T358C 024:836.870 JLINK_HasError() -T358C 024:837.034 JLINK_HasError() -T358C 024:837.132 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 024:837.256 Data: F7 AE 0E 05 -T358C 024:837.398 Debug reg: DWT_CYCCNT -T358C 024:837.546 - 0.413ms returns 1 (0x1) -T98A8 024:837.980 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 024:838.092 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 024:838.636 Data: 0F 00 04 20 00 F1 17 96 4F 7F 3A 2C 61 09 4B 58 ... -T98A8 024:838.724 - 0.747ms returns 25 (0x19) -T98A8 024:838.790 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:838.844 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 024:839.158 Data: 40 C4 01 20 -T98A8 024:839.272 - 0.481ms returns 4 (0x4) -T98A8 024:839.382 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:839.458 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 024:839.812 Data: 01 00 00 00 -T98A8 024:839.912 - 0.529ms returns 4 (0x4) -T98A8 024:839.992 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:840.062 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 024:840.394 Data: 03 -T98A8 024:840.470 - 0.478ms returns 1 (0x1) -T98A8 024:840.968 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:841.052 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 024:841.362 Data: 01 -T98A8 024:841.432 - 0.465ms returns 1 (0x1) -T98A8 024:841.486 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:841.544 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 024:841.860 Data: 01 -T98A8 024:841.968 - 0.482ms returns 1 (0x1) -T98A8 024:842.020 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:842.068 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 024:842.374 Data: 01 -T98A8 024:842.468 - 0.448ms returns 1 (0x1) -T98A8 024:842.520 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:842.566 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 024:842.868 Data: 01 -T98A8 024:842.940 - 0.419ms returns 1 (0x1) -T98A8 024:842.988 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:843.034 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 024:843.354 Data: 03 -T98A8 024:843.440 - 0.452ms returns 1 (0x1) -T98A8 024:843.488 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:843.534 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 024:843.836 Data: 01 -T98A8 024:843.974 - 0.486ms returns 1 (0x1) -T98A8 024:844.060 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:844.148 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 024:844.532 Data: 01 -T98A8 024:844.668 - 0.608ms returns 1 (0x1) -T98A8 024:844.764 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:844.866 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 024:845.188 Data: 00 00 00 00 -T98A8 024:845.260 - 0.497ms returns 4 (0x4) -T98A8 024:845.340 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:845.384 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 024:845.696 Data: 00 -T98A8 024:845.772 - 0.433ms returns 1 (0x1) -T98A8 024:846.454 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 024:846.524 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 024:846.864 Data: 00 -T98A8 024:846.934 - 0.480ms returns 1 (0x1) -T98A8 024:847.248 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:847.316 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 024:847.658 Data: 10 CF 01 20 -T98A8 024:847.868 - 0.618ms returns 4 (0x4) -T98A8 024:848.004 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 024:848.102 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 024:848.502 Data: 49 CF 01 20 -T98A8 024:848.596 - 0.593ms returns 4 (0x4) -T358C 024:848.724 JLINK_IsHalted() -T358C 024:849.124 - 0.400ms returns FALSE -T358C 024:949.578 JLINK_HasError() -T358C 024:949.760 JLINK_IsHalted() -T358C 024:950.254 - 0.493ms returns FALSE -T358C 025:050.708 JLINK_HasError() -T358C 025:050.918 JLINK_IsHalted() -T358C 025:051.428 - 0.508ms returns FALSE -T358C 025:152.548 JLINK_HasError() -T358C 025:152.710 JLINK_IsHalted() -T358C 025:153.610 - 0.896ms returns FALSE -T358C 025:254.112 JLINK_HasError() -T358C 025:254.232 JLINK_IsHalted() -T358C 025:254.674 - 0.439ms returns FALSE -T358C 025:355.092 JLINK_HasError() -T358C 025:355.260 JLINK_HasError() -T358C 025:355.332 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 025:355.424 Data: F7 AE 0E 05 -T358C 025:355.528 Debug reg: DWT_CYCCNT -T358C 025:355.628 - 0.293ms returns 1 (0x1) -T98A8 025:356.020 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 025:356.218 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 025:356.992 Data: 0F 00 04 20 00 F1 17 96 4F 7F 3A 2C 61 09 4B 58 ... -T98A8 025:357.220 - 1.201ms returns 25 (0x19) -T98A8 025:357.340 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:357.390 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 025:357.804 Data: 40 C4 01 20 -T98A8 025:357.904 - 0.562ms returns 4 (0x4) -T98A8 025:358.004 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:358.054 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 025:358.464 Data: 01 00 00 00 -T98A8 025:358.616 - 0.611ms returns 4 (0x4) -T98A8 025:358.734 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:358.828 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 025:359.324 Data: 03 -T98A8 025:359.550 - 0.815ms returns 1 (0x1) -T98A8 025:359.700 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:359.750 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 025:360.162 Data: 01 -T98A8 025:360.376 - 0.674ms returns 1 (0x1) -T98A8 025:360.586 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:360.724 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 025:361.184 Data: 01 -T98A8 025:361.366 - 0.782ms returns 1 (0x1) -T98A8 025:361.476 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:361.588 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 025:362.286 Data: 01 -T98A8 025:362.380 - 0.905ms returns 1 (0x1) -T98A8 025:362.432 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:362.486 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 025:362.792 Data: 01 -T98A8 025:362.886 - 0.454ms returns 1 (0x1) -T98A8 025:362.938 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:362.992 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 025:363.290 Data: 03 -T98A8 025:363.432 - 0.493ms returns 1 (0x1) -T98A8 025:363.518 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:363.600 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 025:363.972 Data: 01 -T98A8 025:364.140 - 0.622ms returns 1 (0x1) -T98A8 025:364.246 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:364.340 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 025:364.724 Data: 01 -T98A8 025:364.796 - 0.549ms returns 1 (0x1) -T98A8 025:364.846 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:364.892 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 025:365.212 Data: 00 00 00 00 -T98A8 025:365.360 - 0.513ms returns 4 (0x4) -T98A8 025:365.502 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:365.596 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 025:365.956 Data: 00 -T98A8 025:366.106 - 0.603ms returns 1 (0x1) -T98A8 025:367.410 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:367.478 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 025:367.818 Data: 00 -T98A8 025:367.892 - 0.481ms returns 1 (0x1) -T98A8 025:368.366 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:368.440 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 025:368.788 Data: 10 CF 01 20 -T98A8 025:368.948 - 0.581ms returns 4 (0x4) -T98A8 025:369.026 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:369.076 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 025:369.394 Data: 49 CF 01 20 -T98A8 025:369.490 - 0.464ms returns 4 (0x4) -T358C 025:369.762 JLINK_IsHalted() -T358C 025:370.316 - 0.549ms returns FALSE -T358C 025:471.722 JLINK_HasError() -T358C 025:471.872 JLINK_IsHalted() -T358C 025:472.306 - 0.431ms returns FALSE -T358C 025:573.172 JLINK_HasError() -T358C 025:573.388 JLINK_IsHalted() -T358C 025:573.846 - 0.459ms returns FALSE -T358C 025:674.228 JLINK_HasError() -T358C 025:674.364 JLINK_IsHalted() -T358C 025:674.744 - 0.379ms returns FALSE -T358C 025:775.156 JLINK_HasError() -T358C 025:775.240 JLINK_IsHalted() -T358C 025:775.560 - 0.320ms returns FALSE -T358C 025:876.694 JLINK_HasError() -T358C 025:876.880 JLINK_HasError() -T358C 025:876.988 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 025:877.038 Data: F7 AE 0E 05 -T358C 025:877.098 Debug reg: DWT_CYCCNT -T358C 025:877.156 - 0.167ms returns 1 (0x1) -T98A8 025:877.412 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 025:877.600 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 025:878.238 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 09 4B 58 ... -T98A8 025:878.344 - 0.934ms returns 25 (0x19) -T98A8 025:878.440 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:878.516 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 025:878.896 Data: 40 C4 01 20 -T98A8 025:878.972 - 0.531ms returns 4 (0x4) -T98A8 025:879.052 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:879.100 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 025:879.460 Data: 01 00 00 00 -T98A8 025:879.530 - 0.477ms returns 4 (0x4) -T98A8 025:879.594 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:879.644 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 025:879.956 Data: 03 -T98A8 025:880.020 - 0.428ms returns 1 (0x1) -T98A8 025:880.068 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:880.114 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 025:880.428 Data: 01 -T98A8 025:880.494 - 0.425ms returns 1 (0x1) -T98A8 025:880.540 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:880.618 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 025:881.112 Data: 01 -T98A8 025:881.276 - 0.734ms returns 1 (0x1) -T98A8 025:881.364 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:881.444 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 025:881.810 Data: 01 -T98A8 025:881.900 - 0.537ms returns 1 (0x1) -T98A8 025:881.950 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:881.998 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 025:882.300 Data: 02 -T98A8 025:882.450 - 0.498ms returns 1 (0x1) -T98A8 025:883.070 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:883.144 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 025:883.452 Data: 03 -T98A8 025:883.536 - 0.465ms returns 1 (0x1) -T98A8 025:883.586 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:883.644 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 025:884.224 Data: 01 -T98A8 025:884.342 - 0.756ms returns 1 (0x1) -T98A8 025:884.424 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:884.502 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 025:884.860 Data: 01 -T98A8 025:885.008 - 0.584ms returns 1 (0x1) -T98A8 025:885.094 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:885.174 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 025:885.548 Data: 00 00 00 00 -T98A8 025:885.620 - 0.526ms returns 4 (0x4) -T98A8 025:885.712 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:885.764 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 025:886.058 Data: 00 -T98A8 025:886.152 - 0.439ms returns 1 (0x1) -T98A8 025:888.172 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 025:888.240 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 025:888.550 Data: 00 -T98A8 025:888.624 - 0.452ms returns 1 (0x1) -T98A8 025:888.930 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:888.998 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 025:889.322 Data: 10 CF 01 20 -T98A8 025:889.390 - 0.460ms returns 4 (0x4) -T98A8 025:889.454 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 025:889.504 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 025:889.804 Data: 49 CF 01 20 -T98A8 025:889.874 - 0.418ms returns 4 (0x4) -T358C 025:889.990 JLINK_IsHalted() -T358C 025:890.428 - 0.436ms returns FALSE -T358C 025:991.144 JLINK_HasError() -T358C 025:991.268 JLINK_IsHalted() -T358C 025:991.656 - 0.388ms returns FALSE -T358C 026:092.442 JLINK_HasError() -T358C 026:092.610 JLINK_IsHalted() -T358C 026:092.996 - 0.385ms returns FALSE -T358C 026:193.594 JLINK_HasError() -T358C 026:193.678 JLINK_IsHalted() -T358C 026:194.026 - 0.344ms returns FALSE -T358C 026:294.732 JLINK_HasError() -T358C 026:294.890 JLINK_IsHalted() -T358C 026:295.776 - 0.886ms returns FALSE -T358C 026:396.166 JLINK_HasError() -T358C 026:396.400 JLINK_HasError() -T358C 026:396.522 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 026:396.650 Data: F7 AE 0E 05 -T358C 026:396.732 Debug reg: DWT_CYCCNT -T358C 026:396.804 - 0.281ms returns 1 (0x1) -T98A8 026:410.872 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 026:410.980 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 026:411.484 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 09 4B 58 ... -T98A8 026:411.556 - 0.685ms returns 25 (0x19) -T98A8 026:411.624 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:411.672 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 026:411.980 Data: 40 C4 01 20 -T98A8 026:412.070 - 0.445ms returns 4 (0x4) -T98A8 026:412.158 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:412.212 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 026:412.624 Data: 01 00 00 00 -T98A8 026:412.720 - 0.560ms returns 4 (0x4) -T98A8 026:412.812 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:412.860 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 026:413.164 Data: 03 -T98A8 026:413.236 - 0.424ms returns 1 (0x1) -T98A8 026:413.286 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:413.332 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 026:413.662 Data: 01 -T98A8 026:413.834 - 0.546ms returns 1 (0x1) -T98A8 026:413.920 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:414.002 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 026:414.460 Data: 01 -T98A8 026:414.576 - 0.655ms returns 1 (0x1) -T98A8 026:414.658 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:414.722 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 026:415.052 Data: 01 -T98A8 026:415.118 - 0.461ms returns 1 (0x1) -T98A8 026:415.164 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:415.208 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 026:415.526 Data: 02 -T98A8 026:415.684 - 0.519ms returns 1 (0x1) -T98A8 026:416.230 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:416.298 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 026:416.658 Data: 03 -T98A8 026:416.778 - 0.548ms returns 1 (0x1) -T98A8 026:417.080 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:417.184 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 026:417.622 Data: 01 -T98A8 026:417.748 - 0.668ms returns 1 (0x1) -T98A8 026:417.836 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:417.920 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 026:418.318 Data: 01 -T98A8 026:418.396 - 0.558ms returns 1 (0x1) -T98A8 026:418.442 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:418.488 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 026:418.824 Data: 00 00 00 00 -T98A8 026:418.898 - 0.454ms returns 4 (0x4) -T98A8 026:418.992 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:419.052 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 026:419.444 Data: 00 -T98A8 026:419.536 - 0.542ms returns 1 (0x1) -T98A8 026:420.284 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:420.362 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 026:420.706 Data: 00 -T98A8 026:420.780 - 0.496ms returns 1 (0x1) -T98A8 026:421.108 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:421.172 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 026:421.484 Data: 10 CF 01 20 -T98A8 026:421.644 - 0.538ms returns 4 (0x4) -T98A8 026:421.764 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:421.860 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 026:422.238 Data: 49 CF 01 20 -T98A8 026:422.320 - 0.554ms returns 4 (0x4) -T358C 026:422.474 JLINK_IsHalted() -T358C 026:422.838 - 0.363ms returns FALSE -T358C 026:523.600 JLINK_HasError() -T358C 026:523.712 JLINK_IsHalted() -T358C 026:524.068 - 0.356ms returns FALSE -T358C 026:624.852 JLINK_HasError() -T358C 026:625.082 JLINK_IsHalted() -T358C 026:625.580 - 0.495ms returns FALSE -T358C 026:726.540 JLINK_HasError() -T358C 026:726.768 JLINK_IsHalted() -T358C 026:727.306 - 0.534ms returns FALSE -T358C 026:828.452 JLINK_HasError() -T358C 026:828.792 JLINK_IsHalted() -T358C 026:829.296 - 0.503ms returns FALSE -T358C 026:929.660 JLINK_HasError() -T358C 026:929.814 JLINK_HasError() -T358C 026:929.876 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 026:929.978 Data: F7 AE 0E 05 -T358C 026:930.060 Debug reg: DWT_CYCCNT -T358C 026:930.140 - 0.267ms returns 1 (0x1) -T98A8 026:930.348 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 026:930.476 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 026:931.050 Data: 0F 00 04 20 00 F1 17 96 4F 7F 3A 2C 61 09 4B 58 ... -T98A8 026:931.148 - 0.802ms returns 25 (0x19) -T98A8 026:931.242 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:931.308 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 026:931.652 Data: 40 C4 01 20 -T98A8 026:931.748 - 0.505ms returns 4 (0x4) -T98A8 026:931.868 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:931.956 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 026:932.310 Data: 01 00 00 00 -T98A8 026:932.464 - 0.595ms returns 4 (0x4) -T98A8 026:932.668 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:932.796 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 026:933.194 Data: 03 -T98A8 026:933.332 - 0.661ms returns 1 (0x1) -T98A8 026:933.402 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:933.468 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 026:933.814 Data: 01 -T98A8 026:933.920 - 0.517ms returns 1 (0x1) -T98A8 026:933.988 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:934.052 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 026:934.394 Data: 01 -T98A8 026:934.492 - 0.507ms returns 1 (0x1) -T98A8 026:934.560 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:934.620 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 026:934.966 Data: 01 -T98A8 026:935.068 - 0.509ms returns 1 (0x1) -T98A8 026:935.140 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:935.220 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 026:935.568 Data: 01 -T98A8 026:935.668 - 0.529ms returns 1 (0x1) -T98A8 026:936.634 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:936.864 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 026:937.396 Data: 03 -T98A8 026:937.520 - 0.890ms returns 1 (0x1) -T98A8 026:937.594 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:937.660 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 026:938.016 Data: 01 -T98A8 026:938.170 - 0.576ms returns 1 (0x1) -T98A8 026:938.256 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:938.332 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 026:938.704 Data: 01 -T98A8 026:938.870 - 0.614ms returns 1 (0x1) -T98A8 026:938.970 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:939.098 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 026:939.508 Data: 00 00 00 00 -T98A8 026:939.610 - 0.638ms returns 4 (0x4) -T98A8 026:939.756 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:939.830 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 026:940.170 Data: 00 -T98A8 026:940.282 - 0.526ms returns 1 (0x1) -T98A8 026:941.276 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 026:941.382 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 026:941.738 Data: 00 -T98A8 026:941.840 - 0.564ms returns 1 (0x1) -T98A8 026:942.304 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:942.396 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 026:942.764 Data: 10 CF 01 20 -T98A8 026:942.864 - 0.558ms returns 4 (0x4) -T98A8 026:942.950 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 026:943.014 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 026:943.364 Data: 49 CF 01 20 -T98A8 026:943.494 - 0.543ms returns 4 (0x4) -T358C 026:943.676 JLINK_IsHalted() -T358C 026:944.020 - 0.343ms returns FALSE -T358C 027:044.604 JLINK_HasError() -T358C 027:044.806 JLINK_IsHalted() -T358C 027:045.286 - 0.477ms returns FALSE -T358C 027:145.812 JLINK_HasError() -T358C 027:146.010 JLINK_IsHalted() -T358C 027:146.412 - 0.404ms returns FALSE -T358C 027:247.114 JLINK_HasError() -T358C 027:247.286 JLINK_IsHalted() -T358C 027:248.228 - 0.937ms returns FALSE -T358C 027:349.280 JLINK_HasError() -T358C 027:349.436 JLINK_IsHalted() -T358C 027:349.892 - 0.454ms returns FALSE -T358C 027:450.506 JLINK_HasError() -T358C 027:450.640 JLINK_HasError() -T358C 027:450.698 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 027:450.778 Data: F7 AE 0E 05 -T358C 027:450.860 Debug reg: DWT_CYCCNT -T358C 027:450.944 - 0.247ms returns 1 (0x1) -T98A8 027:451.268 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 027:451.412 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 027:452.060 Data: 0F 00 04 20 00 F1 17 96 4F 7F FA D3 61 09 4B 58 ... -T98A8 027:452.196 - 0.929ms returns 25 (0x19) -T98A8 027:452.308 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:452.374 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 027:452.778 Data: 40 C4 01 20 -T98A8 027:452.880 - 0.572ms returns 4 (0x4) -T98A8 027:453.066 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:453.210 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 027:453.610 Data: 01 00 00 00 -T98A8 027:453.754 - 0.686ms returns 4 (0x4) -T98A8 027:453.876 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:453.946 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 027:454.330 Data: 03 -T98A8 027:454.448 - 0.574ms returns 1 (0x1) -T98A8 027:454.522 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:454.586 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 027:454.924 Data: 01 -T98A8 027:455.060 - 0.537ms returns 1 (0x1) -T98A8 027:455.136 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:455.210 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 027:455.568 Data: 01 -T98A8 027:455.676 - 0.540ms returns 1 (0x1) -T98A8 027:455.750 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:455.820 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 027:456.316 Data: 01 -T98A8 027:456.426 - 0.674ms returns 1 (0x1) -T98A8 027:456.500 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:456.570 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 027:456.960 Data: 03 -T98A8 027:457.066 - 0.568ms returns 1 (0x1) -T98A8 027:457.878 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:457.980 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 027:458.368 Data: 03 -T98A8 027:458.604 - 0.726ms returns 1 (0x1) -T98A8 027:458.700 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:458.796 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 027:459.188 Data: 01 -T98A8 027:459.348 - 0.645ms returns 1 (0x1) -T98A8 027:459.434 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:459.524 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 027:459.876 Data: 01 -T98A8 027:460.016 - 0.581ms returns 1 (0x1) -T98A8 027:460.092 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:460.156 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 027:460.554 Data: 00 00 00 00 -T98A8 027:460.676 - 0.582ms returns 4 (0x4) -T98A8 027:460.812 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:460.892 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 027:461.232 Data: 00 -T98A8 027:461.332 - 0.518ms returns 1 (0x1) -T98A8 027:463.888 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:464.016 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 027:464.970 Data: 00 -T98A8 027:465.120 - 1.233ms returns 1 (0x1) -T98A8 027:465.686 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:465.802 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 027:466.278 Data: 10 CF 01 20 -T98A8 027:466.524 - 0.838ms returns 4 (0x4) -T98A8 027:466.710 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:466.892 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 027:467.376 Data: 49 CF 01 20 -T98A8 027:467.508 - 0.796ms returns 4 (0x4) -T358C 027:467.708 JLINK_IsHalted() -T358C 027:468.084 - 0.375ms returns FALSE -T358C 027:569.356 JLINK_HasError() -T358C 027:569.546 JLINK_IsHalted() -T358C 027:569.996 - 0.448ms returns FALSE -T358C 027:670.918 JLINK_HasError() -T358C 027:671.098 JLINK_IsHalted() -T358C 027:671.562 - 0.463ms returns FALSE -T358C 027:772.394 JLINK_HasError() -T358C 027:772.640 JLINK_IsHalted() -T358C 027:773.124 - 0.479ms returns FALSE -T358C 027:874.352 JLINK_HasError() -T358C 027:874.490 JLINK_IsHalted() -T358C 027:874.870 - 0.378ms returns FALSE -T358C 027:975.268 JLINK_HasError() -T358C 027:975.434 JLINK_HasError() -T358C 027:975.492 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 027:975.574 Data: F7 AE 0E 05 -T358C 027:975.668 Debug reg: DWT_CYCCNT -T358C 027:975.750 - 0.257ms returns 1 (0x1) -T98A8 027:976.096 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 027:976.252 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 027:976.890 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 09 4B 58 ... -T98A8 027:977.082 - 0.988ms returns 25 (0x19) -T98A8 027:977.204 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:977.284 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 027:977.708 Data: 40 C4 01 20 -T98A8 027:977.868 - 0.666ms returns 4 (0x4) -T98A8 027:978.012 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:978.092 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 027:978.464 Data: 01 00 00 00 -T98A8 027:978.596 - 0.581ms returns 4 (0x4) -T98A8 027:978.698 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:978.820 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 027:979.220 Data: 03 -T98A8 027:979.344 - 0.645ms returns 1 (0x1) -T98A8 027:979.418 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:979.484 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 027:980.438 Data: 01 -T98A8 027:980.566 - 1.146ms returns 1 (0x1) -T98A8 027:980.636 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:980.704 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 027:981.172 Data: 01 -T98A8 027:981.338 - 0.698ms returns 1 (0x1) -T98A8 027:981.430 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:981.508 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 027:981.892 Data: 01 -T98A8 027:982.038 - 0.607ms returns 1 (0x1) -T98A8 027:982.140 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:982.236 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 027:982.618 Data: 02 -T98A8 027:982.800 - 0.657ms returns 1 (0x1) -T98A8 027:983.820 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:983.920 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 027:984.774 Data: 03 -T98A8 027:984.944 - 1.125ms returns 1 (0x1) -T98A8 027:985.018 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:985.098 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 027:985.494 Data: 01 -T98A8 027:985.728 - 0.707ms returns 1 (0x1) -T98A8 027:985.852 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:985.972 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 027:987.350 Data: 01 -T98A8 027:988.020 - 2.162ms returns 1 (0x1) -T98A8 027:988.458 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:988.640 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 027:989.254 Data: 00 00 00 00 -T98A8 027:989.382 - 0.928ms returns 4 (0x4) -T98A8 027:989.580 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:989.664 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 027:990.028 Data: 00 -T98A8 027:990.198 - 0.617ms returns 1 (0x1) -T98A8 027:991.652 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 027:991.796 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 027:992.192 Data: 00 -T98A8 027:992.298 - 0.646ms returns 1 (0x1) -T98A8 027:992.828 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:992.950 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 027:993.322 Data: 10 CF 01 20 -T98A8 027:993.488 - 0.658ms returns 4 (0x4) -T98A8 027:993.622 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 027:993.708 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 027:994.068 Data: 49 CF 01 20 -T98A8 027:994.240 - 0.617ms returns 4 (0x4) -T358C 027:994.644 JLINK_IsHalted() -T358C 027:995.002 - 0.358ms returns FALSE -T358C 028:096.218 JLINK_HasError() -T358C 028:096.368 JLINK_IsHalted() -T358C 028:096.794 - 0.426ms returns FALSE -T358C 028:197.034 JLINK_HasError() -T358C 028:197.204 JLINK_IsHalted() -T358C 028:197.596 - 0.392ms returns FALSE -T358C 028:298.124 JLINK_HasError() -T358C 028:298.316 JLINK_IsHalted() -T358C 028:298.742 - 0.423ms returns FALSE -T358C 028:399.520 JLINK_HasError() -T358C 028:399.686 JLINK_IsHalted() -T358C 028:400.118 - 0.430ms returns FALSE -T358C 028:501.270 JLINK_HasError() -T358C 028:501.452 JLINK_HasError() -T358C 028:501.510 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 028:501.594 Data: F7 AE 0E 05 -T358C 028:501.676 Debug reg: DWT_CYCCNT -T358C 028:501.770 - 0.259ms returns 1 (0x1) -T98A8 028:502.138 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 028:502.284 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 028:502.934 Data: 0F 00 04 20 00 F1 17 96 4F 87 05 80 61 09 4B 58 ... -T98A8 028:503.050 - 0.913ms returns 25 (0x19) -T98A8 028:503.148 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 028:503.226 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 028:503.660 Data: 40 C4 01 20 -T98A8 028:503.756 - 0.605ms returns 4 (0x4) -T98A8 028:503.990 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 028:504.112 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 028:505.226 Data: 01 00 00 00 -T98A8 028:505.466 - 1.474ms returns 4 (0x4) -T98A8 028:505.632 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:505.776 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 028:506.212 Data: 03 -T98A8 028:506.364 - 0.731ms returns 1 (0x1) -T98A8 028:506.454 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:506.528 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 028:506.890 Data: 01 -T98A8 028:506.986 - 0.532ms returns 1 (0x1) -T98A8 028:507.052 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:507.116 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 028:507.460 Data: 01 -T98A8 028:507.578 - 0.526ms returns 1 (0x1) -T98A8 028:507.648 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:507.716 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 028:508.058 Data: 01 -T98A8 028:508.160 - 0.511ms returns 1 (0x1) -T98A8 028:508.228 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:508.298 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 028:508.646 Data: 02 -T98A8 028:508.740 - 0.513ms returns 1 (0x1) -T98A8 028:509.514 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:509.610 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 028:509.972 Data: 01 -T98A8 028:510.102 - 0.587ms returns 1 (0x1) -T98A8 028:510.500 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:510.604 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 028:510.944 Data: 01 -T98A8 028:511.076 - 0.576ms returns 1 (0x1) -T98A8 028:511.276 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:511.348 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 028:511.744 Data: 01 -T98A8 028:511.904 - 0.627ms returns 1 (0x1) -T98A8 028:511.990 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 028:512.070 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 028:512.428 Data: 00 00 00 00 -T98A8 028:512.540 - 0.552ms returns 4 (0x4) -T98A8 028:512.684 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:512.748 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 028:513.116 Data: 00 -T98A8 028:513.264 - 0.581ms returns 1 (0x1) -T98A8 028:514.188 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 028:514.284 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 028:514.736 Data: 00 -T98A8 028:514.842 - 0.650ms returns 1 (0x1) -T98A8 028:515.248 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 028:515.338 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 028:515.716 Data: 10 CF 01 20 -T98A8 028:515.846 - 0.601ms returns 4 (0x4) -T98A8 028:515.946 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 028:516.012 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 028:516.364 Data: 49 CF 01 20 -T98A8 028:516.470 - 0.524ms returns 4 (0x4) -T358C 028:516.644 JLINK_IsHalted() -T358C 028:517.012 - 0.371ms returns FALSE -T358C 028:617.492 JLINK_HasError() -T358C 028:617.626 JLINK_IsHalted() -T358C 028:618.012 - 0.387ms returns FALSE -T358C 028:719.066 JLINK_HasError() -T358C 028:719.318 JLINK_IsHalted() -T358C 028:719.786 - 0.463ms returns FALSE -T358C 028:820.956 JLINK_HasError() -T358C 028:821.078 JLINK_IsHalted() -T358C 028:821.514 - 0.432ms returns FALSE -T358C 028:922.212 JLINK_HasError() -T358C 028:922.352 JLINK_IsHalted() -T358C 028:922.778 - 0.424ms returns FALSE -T358C 029:023.750 JLINK_HasError() -T358C 029:023.940 JLINK_HasError() -T358C 029:024.006 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 029:024.116 Data: F7 AE 0E 05 -T358C 029:024.214 Debug reg: DWT_CYCCNT -T358C 029:024.308 - 0.300ms returns 1 (0x1) -T98A8 029:024.646 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 029:024.884 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 029:025.718 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 09 4B 58 ... -T98A8 029:026.020 - 1.371ms returns 25 (0x19) -T98A8 029:026.196 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:026.266 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 029:026.736 Data: 40 C4 01 20 -T98A8 029:026.998 - 0.800ms returns 4 (0x4) -T98A8 029:027.356 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:027.524 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 029:028.644 Data: 01 00 00 00 -T98A8 029:028.826 - 1.472ms returns 4 (0x4) -T98A8 029:028.960 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:029.056 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 029:029.440 Data: 03 -T98A8 029:029.594 - 0.634ms returns 1 (0x1) -T98A8 029:029.680 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:029.760 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 029:030.140 Data: 01 -T98A8 029:030.272 - 0.591ms returns 1 (0x1) -T98A8 029:030.346 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:030.416 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 029:030.788 Data: 01 -T98A8 029:030.912 - 0.567ms returns 1 (0x1) -T98A8 029:030.996 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:031.068 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 029:031.524 Data: 01 -T98A8 029:031.670 - 0.674ms returns 1 (0x1) -T98A8 029:031.750 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:031.828 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 029:032.180 Data: 02 -T98A8 029:032.320 - 0.568ms returns 1 (0x1) -T98A8 029:032.400 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:032.476 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 029:032.886 Data: 03 -T98A8 029:033.034 - 0.633ms returns 1 (0x1) -T98A8 029:033.772 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:033.868 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 029:034.218 Data: 01 -T98A8 029:034.332 - 0.561ms returns 1 (0x1) -T98A8 029:034.410 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:034.486 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 029:034.868 Data: 01 -T98A8 029:034.972 - 0.563ms returns 1 (0x1) -T98A8 029:035.050 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:035.116 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 029:035.500 Data: 00 00 00 00 -T98A8 029:035.610 - 0.560ms returns 4 (0x4) -T98A8 029:035.738 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:035.808 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 029:036.268 Data: 00 -T98A8 029:036.374 - 0.639ms returns 1 (0x1) -T98A8 029:037.324 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:037.424 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 029:038.000 Data: 00 -T98A8 029:038.156 - 0.834ms returns 1 (0x1) -T98A8 029:038.682 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:038.794 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 029:039.178 Data: 10 CF 01 20 -T98A8 029:039.332 - 0.649ms returns 4 (0x4) -T98A8 029:039.450 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:039.530 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 029:039.940 Data: 49 CF 01 20 -T98A8 029:040.060 - 0.611ms returns 4 (0x4) -T358C 029:040.250 JLINK_IsHalted() -T358C 029:040.644 - 0.394ms returns FALSE -T358C 029:141.744 JLINK_HasError() -T358C 029:141.908 JLINK_IsHalted() -T358C 029:142.320 - 0.412ms returns FALSE -T358C 029:243.638 JLINK_HasError() -T358C 029:244.074 JLINK_IsHalted() -T358C 029:244.746 - 0.671ms returns FALSE -T358C 029:345.866 JLINK_HasError() -T358C 029:345.994 JLINK_IsHalted() -T358C 029:346.378 - 0.384ms returns FALSE -T358C 029:448.138 JLINK_HasError() -T358C 029:448.292 JLINK_IsHalted() -T358C 029:448.716 - 0.423ms returns FALSE -T358C 029:549.724 JLINK_HasError() -T358C 029:550.010 JLINK_HasError() -T358C 029:550.124 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 029:550.266 Data: F7 AE 0E 05 -T358C 029:550.448 Debug reg: DWT_CYCCNT -T358C 029:550.596 - 0.469ms returns 1 (0x1) -T98A8 029:550.938 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 029:551.104 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 029:552.112 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 09 4B 58 ... -T98A8 029:552.278 - 1.340ms returns 25 (0x19) -T98A8 029:552.416 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:552.486 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 029:552.852 Data: 40 C4 01 20 -T98A8 029:552.986 - 0.569ms returns 4 (0x4) -T98A8 029:553.126 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:553.196 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 029:553.548 Data: 01 00 00 00 -T98A8 029:553.652 - 0.524ms returns 4 (0x4) -T98A8 029:553.740 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:553.808 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 029:554.164 Data: 03 -T98A8 029:554.324 - 0.580ms returns 1 (0x1) -T98A8 029:554.412 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:554.502 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 029:554.868 Data: 01 -T98A8 029:554.966 - 0.555ms returns 1 (0x1) -T98A8 029:555.036 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:555.100 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 029:555.440 Data: 01 -T98A8 029:555.564 - 0.529ms returns 1 (0x1) -T98A8 029:555.648 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:555.724 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 029:556.108 Data: 01 -T98A8 029:556.208 - 0.559ms returns 1 (0x1) -T98A8 029:556.282 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:556.348 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 029:556.678 Data: 02 -T98A8 029:556.774 - 0.493ms returns 1 (0x1) -T98A8 029:556.844 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:556.906 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 029:557.238 Data: 03 -T98A8 029:557.334 - 0.489ms returns 1 (0x1) -T98A8 029:558.182 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:558.298 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 029:558.672 Data: 01 -T98A8 029:558.772 - 0.590ms returns 1 (0x1) -T98A8 029:558.842 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:558.918 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 029:559.356 Data: 01 -T98A8 029:559.504 - 0.662ms returns 1 (0x1) -T98A8 029:559.596 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:559.674 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 029:560.032 Data: 00 00 00 00 -T98A8 029:560.166 - 0.568ms returns 4 (0x4) -T98A8 029:560.304 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:560.372 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 029:560.720 Data: 00 -T98A8 029:560.842 - 0.538ms returns 1 (0x1) -T98A8 029:561.852 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 029:561.956 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 029:562.676 Data: 00 -T98A8 029:563.286 - 1.432ms returns 1 (0x1) -T98A8 029:564.096 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:564.218 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 029:564.710 Data: 10 CF 01 20 -T98A8 029:564.844 - 0.746ms returns 4 (0x4) -T98A8 029:564.960 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 029:565.044 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 029:565.404 Data: 49 CF 01 20 -T98A8 029:565.504 - 0.543ms returns 4 (0x4) -T358C 029:565.728 JLINK_IsHalted() -T358C 029:566.080 - 0.353ms returns FALSE -T358C 029:666.694 JLINK_HasError() -T358C 029:666.992 JLINK_IsHalted() -T358C 029:667.418 - 0.423ms returns FALSE -T358C 029:768.678 JLINK_HasError() -T358C 029:768.870 JLINK_IsHalted() -T358C 029:769.814 - 0.942ms returns FALSE -T358C 029:871.076 JLINK_HasError() -T358C 029:871.248 JLINK_IsHalted() -T358C 029:871.690 - 0.439ms returns FALSE -T358C 029:971.972 JLINK_HasError() -T358C 029:972.144 JLINK_IsHalted() -T358C 029:972.544 - 0.396ms returns FALSE -T358C 030:073.492 JLINK_HasError() -T358C 030:073.692 JLINK_HasError() -T358C 030:073.760 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 030:073.850 Data: F7 AE 0E 05 -T358C 030:073.942 Debug reg: DWT_CYCCNT -T358C 030:074.042 - 0.282ms returns 1 (0x1) -T98A8 030:074.384 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 030:074.534 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 030:075.188 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 01 60 58 ... -T98A8 030:075.322 - 0.938ms returns 25 (0x19) -T98A8 030:075.428 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:075.500 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 030:075.968 Data: 40 C4 01 20 -T98A8 030:076.208 - 0.780ms returns 4 (0x4) -T98A8 030:076.380 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:076.506 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 030:076.934 Data: 01 00 00 00 -T98A8 030:077.098 - 0.717ms returns 4 (0x4) -T98A8 030:077.260 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:077.364 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 030:078.294 Data: 03 -T98A8 030:078.490 - 1.227ms returns 1 (0x1) -T98A8 030:078.570 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:078.636 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 030:078.996 Data: 01 -T98A8 030:079.130 - 0.560ms returns 1 (0x1) -T98A8 030:079.204 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:079.270 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 030:079.692 Data: 02 -T98A8 030:079.866 - 0.663ms returns 1 (0x1) -T98A8 030:081.668 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:081.788 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 030:082.180 Data: 01 -T98A8 030:082.308 - 0.638ms returns 1 (0x1) -T98A8 030:082.380 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:082.448 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 030:083.100 Data: 02 -T98A8 030:083.206 - 0.825ms returns 1 (0x1) -T98A8 030:083.274 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:083.340 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 030:084.652 Data: 03 -T98A8 030:084.844 - 1.569ms returns 1 (0x1) -T98A8 030:084.928 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:085.018 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 030:085.412 Data: 01 -T98A8 030:085.530 - 0.600ms returns 1 (0x1) -T98A8 030:085.604 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:085.668 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 030:086.052 Data: 01 -T98A8 030:086.188 - 0.586ms returns 1 (0x1) -T98A8 030:086.272 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:086.348 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 030:086.768 Data: 00 00 00 00 -T98A8 030:086.924 - 0.653ms returns 4 (0x4) -T98A8 030:087.178 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:087.276 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 030:087.712 Data: 00 -T98A8 030:087.840 - 0.663ms returns 1 (0x1) -T98A8 030:089.190 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:089.308 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 030:089.718 Data: 00 -T98A8 030:089.836 - 0.648ms returns 1 (0x1) -T98A8 030:090.352 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:090.454 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 030:090.906 Data: 10 CF 01 20 -T98A8 030:091.162 - 0.808ms returns 4 (0x4) -T98A8 030:091.328 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:091.472 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 030:092.214 Data: 49 CF 01 20 -T98A8 030:092.390 - 1.063ms returns 4 (0x4) -T358C 030:092.598 JLINK_IsHalted() -T358C 030:092.998 - 0.400ms returns FALSE -T358C 030:193.804 JLINK_HasError() -T358C 030:193.972 JLINK_IsHalted() -T358C 030:194.324 - 0.350ms returns FALSE -T358C 030:295.466 JLINK_HasError() -T358C 030:295.620 JLINK_IsHalted() -T358C 030:295.980 - 0.360ms returns FALSE -T358C 030:396.464 JLINK_HasError() -T358C 030:396.614 JLINK_IsHalted() -T358C 030:397.014 - 0.400ms returns FALSE -T358C 030:498.070 JLINK_HasError() -T358C 030:498.236 JLINK_IsHalted() -T358C 030:498.774 - 0.536ms returns FALSE -T358C 030:599.690 JLINK_HasError() -T358C 030:599.916 JLINK_HasError() -T358C 030:600.054 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 030:600.234 Data: F7 AE 0E 05 -T358C 030:600.400 Debug reg: DWT_CYCCNT -T358C 030:600.496 - 0.442ms returns 1 (0x1) -T98A8 030:600.848 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 030:600.998 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 030:601.580 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 030:601.686 - 0.837ms returns 25 (0x19) -T98A8 030:601.850 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:601.920 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 030:602.282 Data: 40 C4 01 20 -T98A8 030:602.428 - 0.580ms returns 4 (0x4) -T98A8 030:602.576 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:602.666 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 030:603.024 Data: 01 00 00 00 -T98A8 030:603.178 - 0.602ms returns 4 (0x4) -T98A8 030:603.292 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:603.372 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 030:603.750 Data: 03 -T98A8 030:603.878 - 0.584ms returns 1 (0x1) -T98A8 030:604.000 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:604.084 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 030:604.436 Data: 01 -T98A8 030:604.550 - 0.554ms returns 1 (0x1) -T98A8 030:604.624 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:604.708 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 030:605.052 Data: 02 -T98A8 030:605.174 - 0.550ms returns 1 (0x1) -T98A8 030:605.926 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:606.026 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 030:606.364 Data: 01 -T98A8 030:606.518 - 0.591ms returns 1 (0x1) -T98A8 030:606.602 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:606.684 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 030:607.066 Data: 02 -T98A8 030:607.220 - 0.617ms returns 1 (0x1) -T98A8 030:607.312 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:607.396 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 030:607.836 Data: 03 -T98A8 030:607.972 - 0.659ms returns 1 (0x1) -T98A8 030:608.042 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:608.108 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 030:608.980 Data: 03 -T98A8 030:609.136 - 1.093ms returns 1 (0x1) -T98A8 030:609.564 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:609.658 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 030:610.394 Data: 01 -T98A8 030:610.554 - 0.990ms returns 1 (0x1) -T98A8 030:610.636 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:610.716 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 030:611.084 Data: 00 00 00 00 -T98A8 030:611.228 - 0.592ms returns 4 (0x4) -T98A8 030:611.370 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:611.450 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 030:611.818 Data: 00 -T98A8 030:611.940 - 0.572ms returns 1 (0x1) -T98A8 030:614.012 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 030:614.116 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 030:614.516 Data: 00 -T98A8 030:614.666 - 0.653ms returns 1 (0x1) -T98A8 030:615.648 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:615.750 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 030:616.108 Data: 10 CF 01 20 -T98A8 030:616.204 - 0.557ms returns 4 (0x4) -T98A8 030:616.298 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 030:616.372 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 030:616.756 Data: 49 CF 01 20 -T98A8 030:616.868 - 0.569ms returns 4 (0x4) -T358C 030:617.040 JLINK_IsHalted() -T358C 030:617.388 - 0.346ms returns FALSE -T358C 030:717.892 JLINK_HasError() -T358C 030:718.080 JLINK_IsHalted() -T358C 030:718.522 - 0.440ms returns FALSE -T358C 030:819.508 JLINK_HasError() -T358C 030:819.660 JLINK_IsHalted() -T358C 030:820.076 - 0.415ms returns FALSE -T358C 030:920.762 JLINK_HasError() -T358C 030:920.912 JLINK_IsHalted() -T358C 030:921.308 - 0.394ms returns FALSE -T358C 031:021.452 JLINK_HasError() -T358C 031:021.620 JLINK_IsHalted() -T358C 031:022.032 - 0.411ms returns FALSE -T358C 031:122.660 JLINK_HasError() -T358C 031:122.816 JLINK_HasError() -T358C 031:122.884 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 031:122.986 Data: F7 AE 0E 05 -T358C 031:123.084 Debug reg: DWT_CYCCNT -T358C 031:123.184 - 0.298ms returns 1 (0x1) -T98A8 031:123.516 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 031:123.668 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 031:124.292 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 031:124.452 - 0.935ms returns 25 (0x19) -T98A8 031:124.564 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:124.652 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 031:125.044 Data: 40 C4 01 20 -T98A8 031:125.168 - 0.603ms returns 4 (0x4) -T98A8 031:125.296 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:125.396 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 031:125.788 Data: 01 00 00 00 -T98A8 031:125.920 - 0.624ms returns 4 (0x4) -T98A8 031:126.020 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:126.084 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 031:126.436 Data: 03 -T98A8 031:126.556 - 0.538ms returns 1 (0x1) -T98A8 031:126.630 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:126.698 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 031:127.044 Data: 01 -T98A8 031:127.172 - 0.541ms returns 1 (0x1) -T98A8 031:127.242 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:127.308 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 031:127.642 Data: 02 -T98A8 031:127.756 - 0.514ms returns 1 (0x1) -T98A8 031:127.836 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:127.914 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 031:128.266 Data: 01 -T98A8 031:128.374 - 0.538ms returns 1 (0x1) -T98A8 031:128.444 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:128.516 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 031:128.938 Data: 02 -T98A8 031:129.056 - 0.611ms returns 1 (0x1) -T98A8 031:129.124 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:129.188 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 031:129.530 Data: 03 -T98A8 031:129.626 - 0.501ms returns 1 (0x1) -T98A8 031:129.716 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:129.804 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 031:130.180 Data: 03 -T98A8 031:130.292 - 0.577ms returns 1 (0x1) -T98A8 031:131.034 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:131.130 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 031:131.488 Data: 01 -T98A8 031:131.590 - 0.554ms returns 1 (0x1) -T98A8 031:131.658 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:131.722 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 031:132.074 Data: 00 00 00 00 -T98A8 031:132.170 - 0.512ms returns 4 (0x4) -T98A8 031:132.282 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:132.358 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 031:132.794 Data: 00 -T98A8 031:132.938 - 0.653ms returns 1 (0x1) -T98A8 031:133.852 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:133.942 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 031:134.282 Data: 00 -T98A8 031:134.390 - 0.539ms returns 1 (0x1) -T98A8 031:134.816 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:134.922 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 031:135.332 Data: 10 CF 01 20 -T98A8 031:135.514 - 0.698ms returns 4 (0x4) -T98A8 031:135.750 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:135.910 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 031:136.460 Data: 49 CF 01 20 -T98A8 031:136.630 - 0.880ms returns 4 (0x4) -T358C 031:137.636 JLINK_IsHalted() -T358C 031:138.956 - 1.325ms returns FALSE -T358C 031:239.324 JLINK_HasError() -T358C 031:239.444 JLINK_IsHalted() -T358C 031:239.846 - 0.402ms returns FALSE -T358C 031:340.250 JLINK_HasError() -T358C 031:340.448 JLINK_IsHalted() -T358C 031:340.804 - 0.353ms returns FALSE -T358C 031:441.270 JLINK_HasError() -T358C 031:441.494 JLINK_IsHalted() -T358C 031:442.074 - 0.579ms returns FALSE -T358C 031:543.060 JLINK_HasError() -T358C 031:543.360 JLINK_IsHalted() -T358C 031:543.882 - 0.517ms returns FALSE -T358C 031:645.046 JLINK_HasError() -T358C 031:645.226 JLINK_HasError() -T358C 031:645.306 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 031:645.404 Data: F7 AE 0E 05 -T358C 031:645.516 Debug reg: DWT_CYCCNT -T358C 031:645.626 - 0.319ms returns 1 (0x1) -T98A8 031:646.028 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 031:646.298 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 031:647.024 Data: 0F 00 0C 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 031:647.168 - 1.140ms returns 25 (0x19) -T98A8 031:647.324 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:647.404 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 031:647.804 Data: 40 C4 01 20 -T98A8 031:647.914 - 0.589ms returns 4 (0x4) -T98A8 031:648.092 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:648.198 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 031:648.576 Data: 01 00 00 00 -T98A8 031:648.676 - 0.583ms returns 4 (0x4) -T98A8 031:648.778 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:648.842 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 031:649.184 Data: 03 -T98A8 031:649.286 - 0.508ms returns 1 (0x1) -T98A8 031:649.356 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:649.430 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 031:649.798 Data: 01 -T98A8 031:649.894 - 0.536ms returns 1 (0x1) -T98A8 031:649.964 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:650.038 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 031:650.420 Data: 02 -T98A8 031:650.516 - 0.548ms returns 1 (0x1) -T98A8 031:650.582 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:650.646 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 031:651.050 Data: 01 -T98A8 031:651.146 - 0.562ms returns 1 (0x1) -T98A8 031:651.216 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:651.280 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 031:651.658 Data: 02 -T98A8 031:651.754 - 0.536ms returns 1 (0x1) -T98A8 031:651.818 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:651.882 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 031:652.362 Data: 03 -T98A8 031:652.540 - 0.723ms returns 1 (0x1) -T98A8 031:652.628 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:652.720 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 031:653.164 Data: 03 -T98A8 031:653.312 - 0.683ms returns 1 (0x1) -T98A8 031:653.382 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:653.446 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 031:653.850 Data: 01 -T98A8 031:654.012 - 0.632ms returns 1 (0x1) -T98A8 031:654.100 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:654.176 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 031:654.598 Data: 00 00 00 00 -T98A8 031:654.780 - 0.682ms returns 4 (0x4) -T98A8 031:654.938 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:655.020 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 031:655.456 Data: 00 -T98A8 031:655.750 - 0.812ms returns 1 (0x1) -T98A8 031:657.738 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 031:657.872 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 031:658.826 Data: 00 -T98A8 031:658.960 - 1.222ms returns 1 (0x1) -T98A8 031:659.476 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:659.578 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 031:659.946 Data: 10 CF 01 20 -T98A8 031:660.102 - 0.628ms returns 4 (0x4) -T98A8 031:660.234 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 031:660.336 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 031:660.708 Data: 49 CF 01 20 -T98A8 031:660.820 - 0.585ms returns 4 (0x4) -T358C 031:661.014 JLINK_IsHalted() -T358C 031:661.510 - 0.494ms returns FALSE -T358C 031:761.916 JLINK_HasError() -T358C 031:762.128 JLINK_IsHalted() -T358C 031:762.596 - 0.465ms returns FALSE -T358C 031:863.222 JLINK_HasError() -T358C 031:863.388 JLINK_IsHalted() -T358C 031:863.840 - 0.452ms returns FALSE -T358C 031:965.386 JLINK_HasError() -T358C 031:965.652 JLINK_IsHalted() -T358C 031:966.694 - 1.042ms returns FALSE -T358C 032:067.668 JLINK_HasError() -T358C 032:067.878 JLINK_IsHalted() -T358C 032:068.342 - 0.462ms returns FALSE -T358C 032:168.954 JLINK_HasError() -T358C 032:169.120 JLINK_HasError() -T358C 032:169.204 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 032:169.324 Data: F7 AE 0E 05 -T358C 032:169.460 Debug reg: DWT_CYCCNT -T358C 032:169.556 - 0.350ms returns 1 (0x1) -T98A8 032:170.060 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 032:170.234 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 032:171.002 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 032:171.162 - 1.102ms returns 25 (0x19) -T98A8 032:171.322 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:171.418 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 032:172.460 Data: 40 C4 01 20 -T98A8 032:172.662 - 1.338ms returns 4 (0x4) -T98A8 032:172.864 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:172.970 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 032:173.980 Data: 01 00 00 00 -T98A8 032:174.148 - 1.285ms returns 4 (0x4) -T98A8 032:174.326 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:174.410 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 032:174.854 Data: 03 -T98A8 032:174.998 - 0.671ms returns 1 (0x1) -T98A8 032:175.088 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:175.180 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 032:175.540 Data: 01 -T98A8 032:175.642 - 0.554ms returns 1 (0x1) -T98A8 032:175.708 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:175.772 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 032:176.124 Data: 02 -T98A8 032:176.224 - 0.513ms returns 1 (0x1) -T98A8 032:176.300 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:176.364 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 032:176.700 Data: 01 -T98A8 032:176.796 - 0.496ms returns 1 (0x1) -T98A8 032:176.864 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:176.928 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 032:177.280 Data: 02 -T98A8 032:177.376 - 0.513ms returns 1 (0x1) -T98A8 032:177.446 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:177.510 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 032:177.846 Data: 03 -T98A8 032:177.984 - 0.537ms returns 1 (0x1) -T98A8 032:178.054 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:178.122 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 032:178.586 Data: 03 -T98A8 032:178.806 - 0.753ms returns 1 (0x1) -T98A8 032:178.956 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:179.068 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 032:179.484 Data: 03 -T98A8 032:179.606 - 0.650ms returns 1 (0x1) -T98A8 032:180.436 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:180.534 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 032:180.906 Data: 00 00 00 00 -T98A8 032:181.062 - 0.627ms returns 4 (0x4) -T98A8 032:181.274 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:181.354 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 032:181.722 Data: 00 -T98A8 032:181.852 - 0.578ms returns 1 (0x1) -T98A8 032:182.812 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:182.922 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 032:183.292 Data: 00 -T98A8 032:183.450 - 0.636ms returns 1 (0x1) -T98A8 032:183.910 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:184.000 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 032:184.356 Data: 10 CF 01 20 -T98A8 032:184.484 - 0.573ms returns 4 (0x4) -T98A8 032:184.580 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:184.646 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 032:185.104 Data: 49 CF 01 20 -T98A8 032:185.260 - 0.681ms returns 4 (0x4) -T358C 032:185.484 JLINK_IsHalted() -T358C 032:185.876 - 0.390ms returns FALSE -T358C 032:286.576 JLINK_HasError() -T358C 032:286.708 JLINK_IsHalted() -T358C 032:287.098 - 0.389ms returns FALSE -T358C 032:387.930 JLINK_HasError() -T358C 032:388.084 JLINK_IsHalted() -T358C 032:388.550 - 0.464ms returns FALSE -T358C 032:489.504 JLINK_HasError() -T358C 032:489.664 JLINK_IsHalted() -T358C 032:490.742 - 1.077ms returns FALSE -T358C 032:591.500 JLINK_HasError() -T358C 032:591.664 JLINK_IsHalted() -T358C 032:592.064 - 0.398ms returns FALSE -T358C 032:693.066 JLINK_HasError() -T358C 032:693.222 JLINK_HasError() -T358C 032:693.296 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 032:693.408 Data: F7 AE 0E 05 -T358C 032:693.504 Debug reg: DWT_CYCCNT -T358C 032:693.600 - 0.305ms returns 1 (0x1) -T98A8 032:693.948 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 032:694.092 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 032:694.774 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 032:694.892 - 0.947ms returns 25 (0x19) -T98A8 032:694.998 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:695.082 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 032:695.462 Data: 40 C4 01 20 -T98A8 032:695.588 - 0.589ms returns 4 (0x4) -T98A8 032:695.722 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:695.796 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 032:696.218 Data: 01 00 00 00 -T98A8 032:696.358 - 0.638ms returns 4 (0x4) -T98A8 032:696.464 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:696.532 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 032:696.912 Data: 03 -T98A8 032:697.050 - 0.585ms returns 1 (0x1) -T98A8 032:697.126 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:697.204 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 032:697.562 Data: 01 -T98A8 032:697.676 - 0.550ms returns 1 (0x1) -T98A8 032:697.748 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:697.824 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 032:698.172 Data: 02 -T98A8 032:698.268 - 0.521ms returns 1 (0x1) -T98A8 032:698.336 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:698.400 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 032:698.874 Data: 01 -T98A8 032:698.986 - 0.648ms returns 1 (0x1) -T98A8 032:699.072 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:699.142 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 032:699.482 Data: 02 -T98A8 032:699.596 - 0.526ms returns 1 (0x1) -T98A8 032:699.670 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:699.744 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 032:700.092 Data: 03 -T98A8 032:700.196 - 0.523ms returns 1 (0x1) -T98A8 032:700.260 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:700.324 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 032:700.656 Data: 03 -T98A8 032:700.800 - 0.539ms returns 1 (0x1) -T98A8 032:700.886 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:700.960 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 032:701.354 Data: 03 -T98A8 032:701.482 - 0.595ms returns 1 (0x1) -T98A8 032:702.260 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:702.358 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 032:702.724 Data: 00 00 00 00 -T98A8 032:702.832 - 0.574ms returns 4 (0x4) -T98A8 032:702.948 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:703.052 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 032:703.428 Data: 00 -T98A8 032:703.580 - 0.632ms returns 1 (0x1) -T98A8 032:705.916 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 032:706.026 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 032:706.608 Data: 00 -T98A8 032:706.796 - 0.882ms returns 1 (0x1) -T98A8 032:707.526 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:707.628 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 032:708.012 Data: 10 CF 01 20 -T98A8 032:708.144 - 0.618ms returns 4 (0x4) -T98A8 032:708.262 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 032:708.346 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 032:708.700 Data: 49 CF 01 20 -T98A8 032:708.848 - 0.584ms returns 4 (0x4) -T358C 032:709.066 JLINK_IsHalted() -T358C 032:709.418 - 0.351ms returns FALSE -T358C 032:810.396 JLINK_HasError() -T358C 032:810.612 JLINK_IsHalted() -T358C 032:811.596 - 0.983ms returns FALSE -T358C 032:912.500 JLINK_HasError() -T358C 032:912.842 JLINK_IsHalted() -T358C 032:913.450 - 0.607ms returns FALSE -T358C 033:014.086 JLINK_HasError() -T358C 033:014.272 JLINK_IsHalted() -T358C 033:014.694 - 0.420ms returns FALSE -T358C 033:115.190 JLINK_HasError() -T358C 033:115.332 JLINK_IsHalted() -T358C 033:115.744 - 0.410ms returns FALSE -T358C 033:216.796 JLINK_HasError() -T358C 033:216.998 JLINK_HasError() -T358C 033:217.062 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 033:217.152 Data: F7 AE 0E 05 -T358C 033:217.252 Debug reg: DWT_CYCCNT -T358C 033:217.344 - 0.282ms returns 1 (0x1) -T98A8 033:217.764 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 033:218.036 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 033:218.794 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 033:218.950 - 1.189ms returns 25 (0x19) -T98A8 033:219.066 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:219.146 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 033:219.546 Data: 40 C4 01 20 -T98A8 033:219.702 - 0.637ms returns 4 (0x4) -T98A8 033:219.834 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:219.914 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 033:220.330 Data: 01 00 00 00 -T98A8 033:220.490 - 0.654ms returns 4 (0x4) -T98A8 033:220.604 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:220.694 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 033:221.114 Data: 03 -T98A8 033:221.274 - 0.669ms returns 1 (0x1) -T98A8 033:221.360 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:221.440 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 033:221.932 Data: 01 -T98A8 033:222.064 - 0.705ms returns 1 (0x1) -T98A8 033:222.138 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:222.202 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 033:222.672 Data: 02 -T98A8 033:222.804 - 0.668ms returns 1 (0x1) -T98A8 033:222.876 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:222.964 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 033:223.428 Data: 01 -T98A8 033:223.578 - 0.700ms returns 1 (0x1) -T98A8 033:223.654 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:223.732 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 033:224.186 Data: 02 -T98A8 033:224.522 - 0.866ms returns 1 (0x1) -T98A8 033:224.678 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:224.838 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 033:225.312 Data: 03 -T98A8 033:225.444 - 0.768ms returns 1 (0x1) -T98A8 033:225.516 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:225.580 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 033:225.956 Data: 03 -T98A8 033:226.090 - 0.575ms returns 1 (0x1) -T98A8 033:226.172 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:226.240 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 033:226.608 Data: 01 -T98A8 033:226.704 - 0.533ms returns 1 (0x1) -T98A8 033:227.318 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:227.418 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 033:227.776 Data: 00 00 00 00 -T98A8 033:227.878 - 0.560ms returns 4 (0x4) -T98A8 033:228.010 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:228.080 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 033:228.484 Data: 00 -T98A8 033:228.646 - 0.634ms returns 1 (0x1) -T98A8 033:230.896 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:230.998 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 033:231.364 Data: 00 -T98A8 033:231.520 - 0.622ms returns 1 (0x1) -T98A8 033:232.064 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:232.160 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 033:232.544 Data: 10 CF 01 20 -T98A8 033:232.640 - 0.577ms returns 4 (0x4) -T98A8 033:232.740 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:232.804 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 033:233.220 Data: 49 CF 01 20 -T98A8 033:233.428 - 0.688ms returns 4 (0x4) -T358C 033:233.628 JLINK_IsHalted() -T358C 033:234.032 - 0.400ms returns FALSE -T358C 033:334.582 JLINK_HasError() -T358C 033:334.732 JLINK_IsHalted() -T358C 033:335.100 - 0.364ms returns FALSE -T358C 033:435.712 JLINK_HasError() -T358C 033:435.908 JLINK_IsHalted() -T358C 033:436.464 - 0.554ms returns FALSE -T358C 033:537.270 JLINK_HasError() -T358C 033:537.430 JLINK_IsHalted() -T358C 033:537.836 - 0.406ms returns FALSE -T358C 033:638.360 JLINK_HasError() -T358C 033:638.532 JLINK_IsHalted() -T358C 033:638.952 - 0.418ms returns FALSE -T358C 033:740.004 JLINK_HasError() -T358C 033:740.244 JLINK_HasError() -T358C 033:740.308 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 033:740.392 Data: F7 AE 0E 05 -T358C 033:740.472 Debug reg: DWT_CYCCNT -T358C 033:740.552 - 0.244ms returns 1 (0x1) -T98A8 033:740.904 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 033:741.060 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 033:741.672 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 033:741.824 - 0.921ms returns 25 (0x19) -T98A8 033:741.936 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:742.024 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 033:742.424 Data: 40 C4 01 20 -T98A8 033:742.568 - 0.634ms returns 4 (0x4) -T98A8 033:742.728 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:742.808 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 033:743.196 Data: 01 00 00 00 -T98A8 033:743.316 - 0.588ms returns 4 (0x4) -T98A8 033:743.424 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:743.500 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 033:743.964 Data: 03 -T98A8 033:744.256 - 0.833ms returns 1 (0x1) -T98A8 033:744.340 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:744.408 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 033:744.820 Data: 01 -T98A8 033:744.936 - 0.606ms returns 1 (0x1) -T98A8 033:745.008 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:745.096 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 033:745.464 Data: 02 -T98A8 033:745.616 - 0.610ms returns 1 (0x1) -T98A8 033:745.688 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:745.820 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 033:746.268 Data: 01 -T98A8 033:746.468 - 0.780ms returns 1 (0x1) -T98A8 033:746.576 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:746.656 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 033:747.104 Data: 02 -T98A8 033:747.312 - 0.735ms returns 1 (0x1) -T98A8 033:747.428 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:747.496 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 033:747.848 Data: 03 -T98A8 033:747.968 - 0.541ms returns 1 (0x1) -T98A8 033:748.036 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:748.100 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 033:748.452 Data: 03 -T98A8 033:748.548 - 0.513ms returns 1 (0x1) -T98A8 033:748.616 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:748.692 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 033:749.084 Data: 01 -T98A8 033:749.244 - 0.630ms returns 1 (0x1) -T98A8 033:750.144 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:750.240 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 033:750.592 Data: 00 00 00 00 -T98A8 033:750.708 - 0.566ms returns 4 (0x4) -T98A8 033:750.912 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:750.980 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 033:751.332 Data: 00 -T98A8 033:751.480 - 0.566ms returns 1 (0x1) -T98A8 033:752.464 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 033:752.564 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 033:752.964 Data: 00 -T98A8 033:753.116 - 0.654ms returns 1 (0x1) -T98A8 033:753.704 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:753.832 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 033:754.244 Data: 10 CF 01 20 -T98A8 033:754.396 - 0.696ms returns 4 (0x4) -T98A8 033:754.532 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 033:754.616 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 033:754.964 Data: 49 CF 01 20 -T98A8 033:755.064 - 0.531ms returns 4 (0x4) -T358C 033:755.236 JLINK_IsHalted() -T358C 033:755.604 - 0.366ms returns FALSE -T358C 033:856.044 JLINK_HasError() -T358C 033:856.216 JLINK_IsHalted() -T358C 033:856.636 - 0.417ms returns FALSE -T358C 033:956.856 JLINK_HasError() -T358C 033:957.020 JLINK_IsHalted() -T358C 033:957.416 - 0.391ms returns FALSE -T358C 034:057.644 JLINK_HasError() -T358C 034:057.820 JLINK_IsHalted() -T358C 034:058.296 - 0.471ms returns FALSE -T358C 034:159.308 JLINK_HasError() -T358C 034:159.500 JLINK_IsHalted() -T358C 034:159.976 - 0.470ms returns FALSE -T358C 034:260.340 JLINK_HasError() -T358C 034:260.468 JLINK_HasError() -T358C 034:260.536 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 034:260.616 Data: F7 AE 0E 05 -T358C 034:260.700 Debug reg: DWT_CYCCNT -T358C 034:260.784 - 0.247ms returns 1 (0x1) -T98A8 034:261.060 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 034:261.208 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 034:261.808 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 034:261.976 - 0.917ms returns 25 (0x19) -T98A8 034:262.088 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:262.168 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 034:262.548 Data: 40 C4 01 20 -T98A8 034:262.648 - 0.560ms returns 4 (0x4) -T98A8 034:262.768 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:262.828 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 034:263.168 Data: 01 00 00 00 -T98A8 034:263.264 - 0.498ms returns 4 (0x4) -T98A8 034:263.352 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:263.432 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 034:263.952 Data: 03 -T98A8 034:264.060 - 0.705ms returns 1 (0x1) -T98A8 034:264.132 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:264.196 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 034:264.616 Data: 01 -T98A8 034:264.760 - 0.627ms returns 1 (0x1) -T98A8 034:264.832 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:264.904 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 034:265.272 Data: 02 -T98A8 034:265.384 - 0.555ms returns 1 (0x1) -T98A8 034:265.476 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:265.552 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 034:265.972 Data: 01 -T98A8 034:266.064 - 0.590ms returns 1 (0x1) -T98A8 034:266.132 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:266.192 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 034:266.548 Data: 02 -T98A8 034:266.640 - 0.511ms returns 1 (0x1) -T98A8 034:266.708 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:266.768 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 034:267.116 Data: 03 -T98A8 034:267.248 - 0.540ms returns 1 (0x1) -T98A8 034:267.328 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:267.404 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 034:267.764 Data: 03 -T98A8 034:267.892 - 0.563ms returns 1 (0x1) -T98A8 034:267.968 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:268.076 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 034:268.524 Data: 01 -T98A8 034:268.660 - 0.691ms returns 1 (0x1) -T98A8 034:268.728 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:268.796 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 034:269.176 Data: 00 00 00 00 -T98A8 034:269.376 - 0.645ms returns 4 (0x4) -T98A8 034:269.536 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:269.636 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 034:270.652 Data: 00 -T98A8 034:270.792 - 1.253ms returns 1 (0x1) -T98A8 034:272.104 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:272.204 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 034:272.632 Data: 00 -T98A8 034:272.788 - 0.682ms returns 1 (0x1) -T98A8 034:273.352 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:273.480 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 034:273.920 Data: 10 CF 01 20 -T98A8 034:274.108 - 0.752ms returns 4 (0x4) -T98A8 034:274.240 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:274.340 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 034:274.728 Data: 49 CF 01 20 -T98A8 034:274.860 - 0.621ms returns 4 (0x4) -T358C 034:275.036 JLINK_IsHalted() -T358C 034:275.432 - 0.392ms returns FALSE -T358C 034:376.220 JLINK_HasError() -T358C 034:376.564 JLINK_IsHalted() -T358C 034:377.452 - 0.885ms returns FALSE -T358C 034:478.824 JLINK_HasError() -T358C 034:478.956 JLINK_IsHalted() -T358C 034:479.448 - 0.488ms returns FALSE -T358C 034:580.612 JLINK_HasError() -T358C 034:580.772 JLINK_IsHalted() -T358C 034:581.228 - 0.455ms returns FALSE -T358C 034:681.816 JLINK_HasError() -T358C 034:682.004 JLINK_IsHalted() -T358C 034:683.144 - 1.138ms returns FALSE -T358C 034:783.616 JLINK_HasError() -T358C 034:783.764 JLINK_HasError() -T358C 034:783.840 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 034:783.932 Data: F7 AE 0E 05 -T358C 034:784.032 Debug reg: DWT_CYCCNT -T358C 034:784.152 - 0.309ms returns 1 (0x1) -T98A8 034:784.448 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 034:784.588 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 034:785.212 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 01 60 58 ... -T98A8 034:785.356 - 0.909ms returns 25 (0x19) -T98A8 034:785.464 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:785.560 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 034:785.916 Data: 40 C4 01 20 -T98A8 034:786.068 - 0.603ms returns 4 (0x4) -T98A8 034:786.212 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:786.300 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 034:786.704 Data: 01 00 00 00 -T98A8 034:786.888 - 0.674ms returns 4 (0x4) -T98A8 034:787.056 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:787.136 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 034:788.076 Data: 03 -T98A8 034:788.200 - 1.143ms returns 1 (0x1) -T98A8 034:788.288 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:788.372 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 034:788.712 Data: 01 -T98A8 034:788.840 - 0.553ms returns 1 (0x1) -T98A8 034:788.916 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:788.984 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 034:789.324 Data: 02 -T98A8 034:789.420 - 0.506ms returns 1 (0x1) -T98A8 034:789.488 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:789.552 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 034:789.888 Data: 01 -T98A8 034:789.992 - 0.503ms returns 1 (0x1) -T98A8 034:790.056 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:790.120 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 034:790.460 Data: 02 -T98A8 034:790.556 - 0.499ms returns 1 (0x1) -T98A8 034:790.620 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:790.684 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 034:791.040 Data: 03 -T98A8 034:791.284 - 0.661ms returns 1 (0x1) -T98A8 034:791.400 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:791.504 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 034:792.064 Data: 01 -T98A8 034:792.256 - 0.855ms returns 1 (0x1) -T98A8 034:793.160 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:793.280 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 034:794.176 Data: 01 -T98A8 034:794.312 - 1.153ms returns 1 (0x1) -T98A8 034:794.388 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:794.460 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 034:794.808 Data: 00 00 00 00 -T98A8 034:794.936 - 0.550ms returns 4 (0x4) -T98A8 034:795.116 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:795.268 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 034:795.736 Data: 00 -T98A8 034:796.716 - 1.609ms returns 1 (0x1) -T98A8 034:798.252 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 034:798.392 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 034:798.788 Data: 00 -T98A8 034:798.964 - 0.710ms returns 1 (0x1) -T98A8 034:799.588 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:799.696 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 034:800.084 Data: 10 CF 01 20 -T98A8 034:800.204 - 0.617ms returns 4 (0x4) -T98A8 034:800.304 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 034:800.372 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 034:800.740 Data: 49 CF 01 20 -T98A8 034:800.848 - 0.546ms returns 4 (0x4) -T358C 034:801.020 JLINK_IsHalted() -T358C 034:801.368 - 0.344ms returns FALSE -T358C 034:902.704 JLINK_HasError() -T358C 034:902.872 JLINK_IsHalted() -T358C 034:903.436 - 0.565ms returns FALSE -T358C 035:004.680 JLINK_HasError() -T358C 035:004.896 JLINK_IsHalted() -T358C 035:005.824 - 0.925ms returns FALSE -T358C 035:106.152 JLINK_HasError() -T358C 035:106.572 JLINK_IsHalted() -T358C 035:107.796 - 1.223ms returns FALSE -T358C 035:208.416 JLINK_HasError() -T358C 035:208.596 JLINK_IsHalted() -T358C 035:209.428 - 0.829ms returns FALSE -T358C 035:309.880 JLINK_HasError() -T358C 035:310.040 JLINK_HasError() -T358C 035:310.100 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 035:310.184 Data: F7 AE 0E 05 -T358C 035:310.264 Debug reg: DWT_CYCCNT -T358C 035:310.360 - 0.261ms returns 1 (0x1) -T98A8 035:310.696 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 035:310.844 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 035:311.488 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F 1A 80 61 01 60 58 ... -T98A8 035:311.660 - 0.963ms returns 25 (0x19) -T98A8 035:311.772 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:311.852 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 035:312.224 Data: 40 C4 01 20 -T98A8 035:312.392 - 0.623ms returns 4 (0x4) -T98A8 035:312.520 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:312.588 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 035:312.928 Data: 01 00 00 00 -T98A8 035:313.036 - 0.513ms returns 4 (0x4) -T98A8 035:313.132 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:313.208 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 035:313.604 Data: 03 -T98A8 035:313.768 - 0.632ms returns 1 (0x1) -T98A8 035:313.852 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:313.932 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 035:314.300 Data: 01 -T98A8 035:314.420 - 0.565ms returns 1 (0x1) -T98A8 035:314.500 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:314.572 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 035:314.940 Data: 02 -T98A8 035:315.072 - 0.574ms returns 1 (0x1) -T98A8 035:315.156 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:315.232 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 035:315.628 Data: 01 -T98A8 035:315.780 - 0.623ms returns 1 (0x1) -T98A8 035:315.864 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:315.944 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 035:316.340 Data: 02 -T98A8 035:316.476 - 0.613ms returns 1 (0x1) -T98A8 035:316.556 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:316.632 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 035:317.052 Data: 03 -T98A8 035:317.160 - 0.604ms returns 1 (0x1) -T98A8 035:317.236 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:317.304 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 035:317.676 Data: 03 -T98A8 035:317.772 - 0.537ms returns 1 (0x1) -T98A8 035:318.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:318.628 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 035:319.096 Data: 01 -T98A8 035:319.232 - 0.708ms returns 1 (0x1) -T98A8 035:319.312 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:319.380 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 035:319.800 Data: 00 00 00 00 -T98A8 035:319.944 - 0.631ms returns 4 (0x4) -T98A8 035:320.116 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:320.364 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 035:321.348 Data: 00 -T98A8 035:321.512 - 1.392ms returns 1 (0x1) -T98A8 035:322.660 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:322.760 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 035:323.188 Data: 00 -T98A8 035:323.348 - 0.686ms returns 1 (0x1) -T98A8 035:323.884 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:323.996 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 035:324.380 Data: 10 CF 01 20 -T98A8 035:324.540 - 0.655ms returns 4 (0x4) -T98A8 035:324.664 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:324.744 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 035:325.204 Data: 49 CF 01 20 -T98A8 035:325.328 - 0.665ms returns 4 (0x4) -T358C 035:325.508 JLINK_IsHalted() -T358C 035:325.856 - 0.351ms returns FALSE -T358C 035:427.016 JLINK_HasError() -T358C 035:427.232 JLINK_IsHalted() -T358C 035:427.692 - 0.459ms returns FALSE -T358C 035:528.764 JLINK_HasError() -T358C 035:528.944 JLINK_IsHalted() -T358C 035:529.400 - 0.457ms returns FALSE -T358C 035:629.952 JLINK_HasError() -T358C 035:630.124 JLINK_IsHalted() -T358C 035:630.560 - 0.435ms returns FALSE -T358C 035:731.684 JLINK_HasError() -T358C 035:731.924 JLINK_IsHalted() -T358C 035:732.472 - 0.544ms returns FALSE -T358C 035:833.500 JLINK_HasError() -T358C 035:833.648 JLINK_HasError() -T358C 035:833.720 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 035:833.812 Data: F7 AE 0E 05 -T358C 035:833.904 Debug reg: DWT_CYCCNT -T358C 035:834.008 - 0.286ms returns 1 (0x1) -T98A8 035:834.320 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 035:834.468 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 035:835.160 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 01 60 58 ... -T98A8 035:835.320 - 0.996ms returns 25 (0x19) -T98A8 035:835.424 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:835.512 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 035:836.148 Data: 40 C4 01 20 -T98A8 035:836.424 - 1.001ms returns 4 (0x4) -T98A8 035:836.564 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:836.632 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 035:837.000 Data: 01 00 00 00 -T98A8 035:837.168 - 0.604ms returns 4 (0x4) -T98A8 035:837.288 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:837.368 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 035:837.768 Data: 03 -T98A8 035:837.892 - 0.606ms returns 1 (0x1) -T98A8 035:837.964 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:838.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 035:838.416 Data: 01 -T98A8 035:838.536 - 0.571ms returns 1 (0x1) -T98A8 035:838.604 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:838.672 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 035:839.080 Data: 02 -T98A8 035:839.192 - 0.585ms returns 1 (0x1) -T98A8 035:839.256 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:839.336 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 035:839.692 Data: 01 -T98A8 035:839.852 - 0.594ms returns 1 (0x1) -T98A8 035:839.940 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:840.008 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 035:840.348 Data: 02 -T98A8 035:840.476 - 0.540ms returns 1 (0x1) -T98A8 035:840.568 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:840.644 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 035:841.240 Data: 03 -T98A8 035:841.432 - 0.864ms returns 1 (0x1) -T98A8 035:841.528 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:841.616 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 035:842.092 Data: 01 -T98A8 035:842.248 - 0.717ms returns 1 (0x1) -T98A8 035:843.268 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:843.368 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 035:843.740 Data: 01 -T98A8 035:843.844 - 0.577ms returns 1 (0x1) -T98A8 035:843.912 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:843.976 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 035:844.328 Data: 00 00 00 00 -T98A8 035:844.456 - 0.541ms returns 4 (0x4) -T98A8 035:844.596 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:844.664 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 035:845.096 Data: 00 -T98A8 035:845.220 - 0.626ms returns 1 (0x1) -T98A8 035:846.736 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 035:847.348 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 035:848.100 Data: 00 -T98A8 035:848.244 - 1.512ms returns 1 (0x1) -T98A8 035:848.704 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:848.808 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 035:849.248 Data: 10 CF 01 20 -T98A8 035:849.380 - 0.676ms returns 4 (0x4) -T98A8 035:849.488 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 035:849.560 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 035:849.900 Data: 49 CF 01 20 -T98A8 035:850.020 - 0.531ms returns 4 (0x4) -T358C 035:850.200 JLINK_IsHalted() -T358C 035:850.520 - 0.318ms returns FALSE -T358C 035:951.420 JLINK_HasError() -T358C 035:951.572 JLINK_IsHalted() -T358C 035:951.992 - 0.421ms returns FALSE -T358C 036:052.608 JLINK_HasError() -T358C 036:052.920 JLINK_IsHalted() -T358C 036:053.504 - 0.579ms returns FALSE -T358C 036:154.272 JLINK_HasError() -T358C 036:154.456 JLINK_IsHalted() -T358C 036:155.032 - 0.572ms returns FALSE -T358C 036:256.108 JLINK_HasError() -T358C 036:256.500 JLINK_IsHalted() -T358C 036:257.048 - 0.545ms returns FALSE -T358C 036:357.304 JLINK_HasError() -T358C 036:357.416 JLINK_HasError() -T358C 036:357.488 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 036:357.572 Data: F7 AE 0E 05 -T358C 036:357.664 Debug reg: DWT_CYCCNT -T358C 036:357.744 - 0.255ms returns 1 (0x1) -T98A8 036:358.068 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 036:358.192 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 036:358.776 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 9F 06 60 58 ... -T98A8 036:358.880 - 0.812ms returns 25 (0x19) -T98A8 036:358.968 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:359.040 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 036:359.408 Data: 40 C4 01 20 -T98A8 036:359.568 - 0.602ms returns 4 (0x4) -T98A8 036:359.720 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:359.800 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 036:360.168 Data: 01 00 00 00 -T98A8 036:360.300 - 0.578ms returns 4 (0x4) -T98A8 036:360.408 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:360.484 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 036:360.824 Data: 03 -T98A8 036:360.972 - 0.563ms returns 1 (0x1) -T98A8 036:361.060 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:361.144 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 036:361.500 Data: 01 -T98A8 036:361.624 - 0.563ms returns 1 (0x1) -T98A8 036:361.692 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:361.756 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 036:362.132 Data: 02 -T98A8 036:362.228 - 0.535ms returns 1 (0x1) -T98A8 036:362.296 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:362.356 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 036:362.792 Data: 03 -T98A8 036:362.884 - 0.589ms returns 1 (0x1) -T98A8 036:363.632 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:363.752 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 036:364.144 Data: 02 -T98A8 036:364.300 - 0.671ms returns 1 (0x1) -T98A8 036:364.388 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:364.472 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 036:364.848 Data: 03 -T98A8 036:364.996 - 0.609ms returns 1 (0x1) -T98A8 036:365.080 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:365.160 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 036:365.556 Data: 01 -T98A8 036:365.696 - 0.616ms returns 1 (0x1) -T98A8 036:366.124 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:366.228 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 036:366.688 Data: 01 -T98A8 036:366.928 - 0.803ms returns 1 (0x1) -T98A8 036:367.044 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:367.128 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 036:368.124 Data: 00 00 00 00 -T98A8 036:368.304 - 1.260ms returns 4 (0x4) -T98A8 036:368.456 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:368.528 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 036:368.888 Data: 00 -T98A8 036:368.996 - 0.538ms returns 1 (0x1) -T98A8 036:369.832 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:369.924 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 036:370.276 Data: 00 -T98A8 036:370.504 - 0.675ms returns 1 (0x1) -T98A8 036:371.672 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:372.248 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 036:372.996 Data: 10 CF 01 20 -T98A8 036:373.152 - 1.483ms returns 4 (0x4) -T98A8 036:373.268 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:373.352 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 036:373.712 Data: 49 CF 01 20 -T98A8 036:373.832 - 0.565ms returns 4 (0x4) -T358C 036:374.008 JLINK_IsHalted() -T358C 036:374.344 - 0.335ms returns FALSE -T358C 036:474.864 JLINK_HasError() -T358C 036:475.192 JLINK_IsHalted() -T358C 036:475.852 - 0.662ms returns FALSE -T358C 036:576.768 JLINK_HasError() -T358C 036:577.044 JLINK_IsHalted() -T358C 036:577.500 - 0.452ms returns FALSE -T358C 036:678.152 JLINK_HasError() -T358C 036:678.296 JLINK_IsHalted() -T358C 036:678.892 - 0.597ms returns FALSE -T358C 036:779.128 JLINK_HasError() -T358C 036:779.288 JLINK_IsHalted() -T358C 036:780.188 - 0.901ms returns FALSE -T358C 036:880.548 JLINK_HasError() -T358C 036:880.732 JLINK_HasError() -T358C 036:880.792 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 036:880.872 Data: F7 AE 0E 05 -T358C 036:880.960 Debug reg: DWT_CYCCNT -T358C 036:881.036 - 0.244ms returns 1 (0x1) -T98A8 036:881.304 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 036:881.464 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 036:882.056 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 9F 06 60 58 ... -T98A8 036:882.172 - 0.866ms returns 25 (0x19) -T98A8 036:882.280 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:882.348 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 036:882.728 Data: 40 C4 01 20 -T98A8 036:882.832 - 0.553ms returns 4 (0x4) -T98A8 036:882.956 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:883.044 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 036:883.440 Data: 01 00 00 00 -T98A8 036:883.556 - 0.598ms returns 4 (0x4) -T98A8 036:883.668 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:883.756 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 036:884.160 Data: 01 -T98A8 036:884.424 - 0.759ms returns 1 (0x1) -T98A8 036:885.412 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:885.556 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 036:885.968 Data: 01 -T98A8 036:886.124 - 0.711ms returns 1 (0x1) -T98A8 036:886.212 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:886.296 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 036:886.868 Data: 02 -T98A8 036:887.024 - 0.810ms returns 1 (0x1) -T98A8 036:887.112 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:887.196 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 036:887.624 Data: 03 -T98A8 036:887.756 - 0.646ms returns 1 (0x1) -T98A8 036:888.284 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:888.408 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 036:888.768 Data: 02 -T98A8 036:888.932 - 0.646ms returns 1 (0x1) -T98A8 036:889.020 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:889.112 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 036:889.816 Data: 03 -T98A8 036:889.960 - 0.941ms returns 1 (0x1) -T98A8 036:890.036 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:890.104 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 036:890.456 Data: 01 -T98A8 036:890.588 - 0.555ms returns 1 (0x1) -T98A8 036:890.664 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:890.736 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 036:891.276 Data: 01 -T98A8 036:891.452 - 0.790ms returns 1 (0x1) -T98A8 036:891.536 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:891.620 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 036:892.000 Data: 00 00 00 00 -T98A8 036:892.140 - 0.606ms returns 4 (0x4) -T98A8 036:892.316 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:892.404 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 036:892.772 Data: 00 -T98A8 036:892.872 - 0.556ms returns 1 (0x1) -T98A8 036:893.992 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 036:894.120 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 036:894.552 Data: 00 -T98A8 036:894.676 - 0.681ms returns 1 (0x1) -T98A8 036:895.128 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:895.220 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 036:896.012 Data: 10 CF 01 20 -T98A8 036:896.176 - 1.049ms returns 4 (0x4) -T98A8 036:896.296 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 036:896.380 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 036:897.368 Data: 49 CF 01 20 -T98A8 036:897.528 - 1.227ms returns 4 (0x4) -T358C 036:897.736 JLINK_IsHalted() -T358C 036:898.864 - 1.126ms returns FALSE -T358C 036:999.768 JLINK_HasError() -T358C 036:999.996 JLINK_IsHalted() -T358C 037:000.544 - 0.546ms returns FALSE -T358C 037:101.656 JLINK_HasError() -T358C 037:101.844 JLINK_IsHalted() -T358C 037:102.304 - 0.458ms returns FALSE -T358C 037:202.744 JLINK_HasError() -T358C 037:202.904 JLINK_IsHalted() -T358C 037:203.424 - 0.517ms returns FALSE -T358C 037:304.196 JLINK_HasError() -T358C 037:304.472 JLINK_IsHalted() -T358C 037:305.064 - 0.592ms returns FALSE -T358C 037:405.504 JLINK_HasError() -T358C 037:405.672 JLINK_HasError() -T358C 037:405.736 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 037:405.840 Data: F7 AE 0E 05 -T358C 037:405.944 Debug reg: DWT_CYCCNT -T358C 037:406.060 - 0.320ms returns 1 (0x1) -T98A8 037:406.388 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 037:406.508 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 037:407.104 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 9F FE F4 A7 ... -T98A8 037:407.264 - 0.878ms returns 25 (0x19) -T98A8 037:407.380 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:407.460 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 037:407.832 Data: 40 C4 01 20 -T98A8 037:408.008 - 0.627ms returns 4 (0x4) -T98A8 037:408.164 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:408.244 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 037:409.112 Data: 01 00 00 00 -T98A8 037:409.208 - 1.048ms returns 4 (0x4) -T98A8 037:409.304 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:409.368 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 037:409.716 Data: 01 -T98A8 037:409.836 - 0.536ms returns 1 (0x1) -T98A8 037:410.656 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:410.768 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 037:411.208 Data: 03 -T98A8 037:411.332 - 0.676ms returns 1 (0x1) -T98A8 037:411.756 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:411.848 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 037:412.204 Data: 03 -T98A8 037:412.332 - 0.575ms returns 1 (0x1) -T98A8 037:412.728 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:412.820 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 037:413.204 Data: 03 -T98A8 037:413.304 - 0.579ms returns 1 (0x1) -T98A8 037:413.372 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:413.436 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 037:414.440 Data: 02 -T98A8 037:414.584 - 1.210ms returns 1 (0x1) -T98A8 037:414.668 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:414.744 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 037:415.200 Data: 03 -T98A8 037:415.464 - 0.794ms returns 1 (0x1) -T98A8 037:415.608 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:415.704 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 037:416.212 Data: 01 -T98A8 037:416.340 - 0.733ms returns 1 (0x1) -T98A8 037:416.408 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:416.476 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 037:416.824 Data: 01 -T98A8 037:416.980 - 0.569ms returns 1 (0x1) -T98A8 037:417.064 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:417.144 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 037:417.520 Data: 00 00 00 00 -T98A8 037:417.640 - 0.577ms returns 4 (0x4) -T98A8 037:417.836 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:417.928 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 037:418.308 Data: 00 -T98A8 037:418.408 - 0.569ms returns 1 (0x1) -T98A8 037:419.428 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:419.524 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 037:419.932 Data: 00 -T98A8 037:420.084 - 0.655ms returns 1 (0x1) -T98A8 037:420.612 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:420.700 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 037:421.056 Data: 10 CF 01 20 -T98A8 037:421.156 - 0.547ms returns 4 (0x4) -T98A8 037:421.252 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:421.320 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 037:421.684 Data: 49 CF 01 20 -T98A8 037:421.780 - 0.527ms returns 4 (0x4) -T358C 037:421.960 JLINK_IsHalted() -T358C 037:422.260 - 0.294ms returns FALSE -T358C 037:522.472 JLINK_HasError() -T358C 037:522.632 JLINK_IsHalted() -T358C 037:523.128 - 0.490ms returns FALSE -T358C 037:623.528 JLINK_HasError() -T358C 037:623.728 JLINK_IsHalted() -T358C 037:624.212 - 0.482ms returns FALSE -T358C 037:725.012 JLINK_HasError() -T358C 037:725.152 JLINK_IsHalted() -T358C 037:726.088 - 0.930ms returns FALSE -T358C 037:827.272 JLINK_HasError() -T358C 037:827.468 JLINK_IsHalted() -T358C 037:828.312 - 0.841ms returns FALSE -T358C 037:928.512 JLINK_HasError() -T358C 037:928.696 JLINK_HasError() -T358C 037:928.776 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 037:928.872 Data: F7 AE 0E 05 -T358C 037:928.988 Debug reg: DWT_CYCCNT -T358C 037:929.108 - 0.333ms returns 1 (0x1) -T98A8 037:929.368 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 037:929.532 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 037:930.268 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 9F 0E 0B 00 ... -T98A8 037:930.404 - 1.037ms returns 25 (0x19) -T98A8 037:930.504 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:930.572 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 037:930.932 Data: 40 C4 01 20 -T98A8 037:931.044 - 0.538ms returns 4 (0x4) -T98A8 037:931.236 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:931.304 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 037:931.724 Data: 01 00 00 00 -T98A8 037:931.860 - 0.623ms returns 4 (0x4) -T98A8 037:931.960 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:932.036 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 037:932.424 Data: 01 -T98A8 037:932.580 - 0.623ms returns 1 (0x1) -T98A8 037:932.664 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:932.744 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 037:933.164 Data: 02 -T98A8 037:933.296 - 0.630ms returns 1 (0x1) -T98A8 037:933.976 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:934.076 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 037:934.564 Data: 01 -T98A8 037:934.696 - 0.719ms returns 1 (0x1) -T98A8 037:935.080 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:935.192 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 037:935.676 Data: 03 -T98A8 037:935.808 - 0.729ms returns 1 (0x1) -T98A8 037:935.880 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:935.944 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 037:936.432 Data: 02 -T98A8 037:936.564 - 0.683ms returns 1 (0x1) -T98A8 037:936.632 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:936.708 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 037:937.108 Data: 03 -T98A8 037:937.264 - 0.629ms returns 1 (0x1) -T98A8 037:937.344 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:937.420 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 037:937.820 Data: 01 -T98A8 037:937.932 - 0.588ms returns 1 (0x1) -T98A8 037:938.000 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:938.064 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 037:938.456 Data: 01 -T98A8 037:938.620 - 0.618ms returns 1 (0x1) -T98A8 037:938.724 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:938.808 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 037:939.224 Data: 00 00 00 00 -T98A8 037:939.404 - 0.681ms returns 4 (0x4) -T98A8 037:939.544 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:939.640 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 037:940.032 Data: 00 -T98A8 037:940.152 - 0.605ms returns 1 (0x1) -T98A8 037:941.204 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 037:941.332 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 037:941.712 Data: 00 -T98A8 037:941.812 - 0.608ms returns 1 (0x1) -T98A8 037:942.228 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:942.316 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 037:942.668 Data: 10 CF 01 20 -T98A8 037:942.816 - 0.589ms returns 4 (0x4) -T98A8 037:942.932 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 037:943.020 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 037:943.376 Data: 49 CF 01 20 -T98A8 037:943.496 - 0.562ms returns 4 (0x4) -T358C 037:943.684 JLINK_IsHalted() -T358C 037:944.056 - 0.374ms returns FALSE -T358C 038:045.376 JLINK_HasError() -T358C 038:045.512 JLINK_IsHalted() -T358C 038:045.892 - 0.377ms returns FALSE -T358C 038:146.480 JLINK_HasError() -T358C 038:146.612 JLINK_IsHalted() -T358C 038:147.032 - 0.417ms returns FALSE -T358C 038:248.080 JLINK_HasError() -T358C 038:248.304 JLINK_IsHalted() -T358C 038:249.104 - 0.799ms returns FALSE -T358C 038:349.596 JLINK_HasError() -T358C 038:349.796 JLINK_IsHalted() -T358C 038:350.316 - 0.518ms returns FALSE -T358C 038:451.776 JLINK_HasError() -T358C 038:451.956 JLINK_HasError() -T358C 038:452.064 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 038:452.176 Data: F7 AE 0E 05 -T358C 038:452.292 Debug reg: DWT_CYCCNT -T358C 038:452.408 - 0.318ms returns 1 (0x1) -T98A8 038:452.868 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 038:453.024 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 038:453.684 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 9F FE F4 A7 ... -T98A8 038:453.832 - 0.965ms returns 25 (0x19) -T98A8 038:453.944 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:454.012 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 038:454.376 Data: 40 C4 01 20 -T98A8 038:454.524 - 0.581ms returns 4 (0x4) -T98A8 038:454.660 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:454.728 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 038:455.312 Data: 01 00 00 00 -T98A8 038:455.448 - 0.788ms returns 4 (0x4) -T98A8 038:455.988 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:456.104 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 038:456.480 Data: 01 -T98A8 038:456.600 - 0.616ms returns 1 (0x1) -T98A8 038:456.680 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:456.764 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 038:457.624 Data: 03 -T98A8 038:457.752 - 1.075ms returns 1 (0x1) -T98A8 038:458.620 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:458.724 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 038:459.080 Data: 03 -T98A8 038:459.196 - 0.574ms returns 1 (0x1) -T98A8 038:459.608 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:459.700 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 038:460.628 Data: 03 -T98A8 038:460.776 - 1.167ms returns 1 (0x1) -T98A8 038:460.856 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:460.948 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 038:462.156 Data: 02 -T98A8 038:462.312 - 1.453ms returns 1 (0x1) -T98A8 038:462.488 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:462.616 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 038:463.112 Data: 03 -T98A8 038:463.692 - 1.203ms returns 1 (0x1) -T98A8 038:464.040 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:464.416 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 038:464.996 Data: 01 -T98A8 038:465.172 - 1.134ms returns 1 (0x1) -T98A8 038:465.272 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:465.336 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 038:465.724 Data: 01 -T98A8 038:465.948 - 0.676ms returns 1 (0x1) -T98A8 038:466.056 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:466.176 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 038:466.936 Data: 00 00 00 00 -T98A8 038:467.048 - 0.994ms returns 4 (0x4) -T98A8 038:467.236 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:467.328 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 038:467.688 Data: 00 -T98A8 038:467.840 - 0.604ms returns 1 (0x1) -T98A8 038:469.136 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:469.256 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 038:469.652 Data: 00 -T98A8 038:469.820 - 0.686ms returns 1 (0x1) -T98A8 038:470.688 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:470.792 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 038:471.336 Data: 10 CF 01 20 -T98A8 038:471.640 - 0.949ms returns 4 (0x4) -T98A8 038:471.928 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:472.040 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 038:472.584 Data: 49 CF 01 20 -T98A8 038:472.712 - 0.780ms returns 4 (0x4) -T358C 038:472.932 JLINK_IsHalted() -T358C 038:473.264 - 0.332ms returns FALSE -T358C 038:574.256 JLINK_HasError() -T358C 038:574.636 JLINK_IsHalted() -T358C 038:575.336 - 0.694ms returns FALSE -T358C 038:676.532 JLINK_HasError() -T358C 038:676.832 JLINK_IsHalted() -T358C 038:677.336 - 0.500ms returns FALSE -T358C 038:777.604 JLINK_HasError() -T358C 038:777.800 JLINK_IsHalted() -T358C 038:778.292 - 0.492ms returns FALSE -T358C 038:878.700 JLINK_HasError() -T358C 038:878.888 JLINK_IsHalted() -T358C 038:879.316 - 0.423ms returns FALSE -T358C 038:980.144 JLINK_HasError() -T358C 038:980.336 JLINK_HasError() -T358C 038:980.416 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 038:980.520 Data: F7 AE 0E 05 -T358C 038:980.672 Debug reg: DWT_CYCCNT -T358C 038:980.776 - 0.358ms returns 1 (0x1) -T98A8 038:981.144 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 038:981.288 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 038:981.872 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 9F 06 E0 A7 ... -T98A8 038:982.024 - 0.883ms returns 25 (0x19) -T98A8 038:982.144 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:982.220 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 038:982.612 Data: 40 C4 01 20 -T98A8 038:982.720 - 0.576ms returns 4 (0x4) -T98A8 038:982.852 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:982.920 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 038:983.316 Data: 01 00 00 00 -T98A8 038:983.412 - 0.563ms returns 4 (0x4) -T98A8 038:983.500 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:983.564 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 038:983.992 Data: 01 -T98A8 038:984.096 - 0.595ms returns 1 (0x1) -T98A8 038:984.168 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:984.236 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 038:984.616 Data: 03 -T98A8 038:984.712 - 0.545ms returns 1 (0x1) -T98A8 038:985.432 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:985.528 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 038:985.896 Data: 02 -T98A8 038:986.028 - 0.599ms returns 1 (0x1) -T98A8 038:986.456 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:986.552 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 038:987.700 Data: 03 -T98A8 038:987.984 - 1.528ms returns 1 (0x1) -T98A8 038:988.072 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:988.152 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 038:988.644 Data: 02 -T98A8 038:988.812 - 0.741ms returns 1 (0x1) -T98A8 038:988.896 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:988.972 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 038:989.396 Data: 03 -T98A8 038:989.544 - 0.650ms returns 1 (0x1) -T98A8 038:989.624 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:989.700 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 038:990.176 Data: 01 -T98A8 038:990.324 - 0.699ms returns 1 (0x1) -T98A8 038:990.408 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:990.488 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 038:990.880 Data: 01 -T98A8 038:991.036 - 0.632ms returns 1 (0x1) -T98A8 038:991.124 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:991.244 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 038:992.056 Data: 00 00 00 00 -T98A8 038:992.216 - 1.089ms returns 4 (0x4) -T98A8 038:992.388 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:992.456 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 038:992.824 Data: 00 -T98A8 038:992.936 - 0.552ms returns 1 (0x1) -T98A8 038:994.036 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 038:994.168 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 038:994.592 Data: 00 -T98A8 038:994.724 - 0.690ms returns 1 (0x1) -T98A8 038:995.236 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:995.352 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 038:995.736 Data: 10 CF 01 20 -T98A8 038:995.864 - 0.627ms returns 4 (0x4) -T98A8 038:995.968 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 038:996.056 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 038:996.420 Data: 49 CF 01 20 -T98A8 038:996.524 - 0.556ms returns 4 (0x4) -T358C 038:996.692 JLINK_IsHalted() -T358C 038:997.032 - 0.341ms returns FALSE -T358C 039:097.548 JLINK_HasError() -T358C 039:097.776 JLINK_IsHalted() -T358C 039:098.188 - 0.408ms returns FALSE -T358C 039:198.456 JLINK_HasError() -T358C 039:198.680 JLINK_IsHalted() -T358C 039:199.640 - 0.956ms returns FALSE -T358C 039:300.520 JLINK_HasError() -T358C 039:300.676 JLINK_IsHalted() -T358C 039:301.076 - 0.399ms returns FALSE -T358C 039:401.880 JLINK_HasError() -T358C 039:402.056 JLINK_IsHalted() -T358C 039:402.476 - 0.422ms returns FALSE -T358C 039:503.372 JLINK_HasError() -T358C 039:503.508 JLINK_HasError() -T358C 039:503.640 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 039:503.720 Data: F7 AE 0E 05 -T358C 039:503.816 Debug reg: DWT_CYCCNT -T358C 039:503.896 - 0.252ms returns 1 (0x1) -T98A8 039:504.212 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 039:504.368 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 039:504.992 Data: 0F 00 0C 20 00 F1 17 96 B0 7C 1A 80 9F 06 20 00 ... -T98A8 039:505.128 - 0.920ms returns 25 (0x19) -T98A8 039:505.236 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 039:505.304 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 039:505.656 Data: 40 C4 01 20 -T98A8 039:505.752 - 0.521ms returns 4 (0x4) -T98A8 039:505.880 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 039:505.944 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 039:506.344 Data: 01 00 00 00 -T98A8 039:506.460 - 0.579ms returns 4 (0x4) -T98A8 039:506.552 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:506.616 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 039:506.972 Data: 01 -T98A8 039:507.076 - 0.522ms returns 1 (0x1) -T98A8 039:507.144 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:507.208 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 039:507.556 Data: 02 -T98A8 039:507.656 - 0.510ms returns 1 (0x1) -T98A8 039:508.428 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:508.544 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 039:508.912 Data: 02 -T98A8 039:509.064 - 0.638ms returns 1 (0x1) -T98A8 039:509.588 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:509.704 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 039:510.072 Data: 03 -T98A8 039:510.216 - 0.627ms returns 1 (0x1) -T98A8 039:510.300 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:510.392 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 039:510.776 Data: 02 -T98A8 039:510.912 - 0.614ms returns 1 (0x1) -T98A8 039:511.016 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:511.120 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 039:511.540 Data: 03 -T98A8 039:511.640 - 0.624ms returns 1 (0x1) -T98A8 039:511.708 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:511.772 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 039:512.372 Data: 01 -T98A8 039:512.688 - 0.977ms returns 1 (0x1) -T98A8 039:512.888 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:513.128 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 039:513.640 Data: 01 -T98A8 039:513.784 - 0.897ms returns 1 (0x1) -T98A8 039:513.860 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 039:513.928 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 039:514.320 Data: 00 00 00 00 -T98A8 039:514.436 - 0.577ms returns 4 (0x4) -T98A8 039:514.580 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:514.648 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 039:514.984 Data: 00 -T98A8 039:515.088 - 0.506ms returns 1 (0x1) -T98A8 039:516.032 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 039:516.124 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 039:516.472 Data: 00 -T98A8 039:516.588 - 0.558ms returns 1 (0x1) -T98A8 039:517.076 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 039:517.200 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 039:517.568 Data: 10 CF 01 20 -T98A8 039:517.664 - 0.587ms returns 4 (0x4) -T98A8 039:517.756 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 039:517.832 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 039:518.208 Data: 49 CF 01 20 -T98A8 039:518.340 - 0.581ms returns 4 (0x4) -T358C 039:518.580 JLINK_IsHalted() -T358C 039:519.608 - 1.026ms returns FALSE -T358C 039:620.356 JLINK_HasError() -T358C 039:620.552 JLINK_IsHalted() -T358C 039:620.984 - 0.429ms returns FALSE -T358C 039:721.720 JLINK_HasError() -T358C 039:721.912 JLINK_IsHalted() -T358C 039:722.340 - 0.427ms returns FALSE -T358C 039:823.292 JLINK_HasError() -T358C 039:823.480 JLINK_IsHalted() -T358C 039:823.920 - 0.437ms returns FALSE -T358C 039:924.768 JLINK_HasError() -T358C 039:925.068 JLINK_IsHalted() -T358C 039:925.576 - 0.505ms returns FALSE -T358C 040:026.548 JLINK_HasError() -T358C 040:026.856 JLINK_HasError() -T358C 040:026.984 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 040:027.136 Data: F7 AE 0E 05 -T358C 040:027.248 Debug reg: DWT_CYCCNT -T358C 040:027.332 - 0.347ms returns 1 (0x1) -T98A8 040:027.808 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 040:027.936 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 040:028.556 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 9F 06 20 00 ... -T98A8 040:028.724 - 0.913ms returns 25 (0x19) -T98A8 040:028.828 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:028.908 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 040:029.392 Data: 40 C4 01 20 -T98A8 040:029.524 - 0.696ms returns 4 (0x4) -T98A8 040:029.656 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:029.736 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 040:030.184 Data: 01 00 00 00 -T98A8 040:030.344 - 0.684ms returns 4 (0x4) -T98A8 040:030.460 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:030.552 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 040:031.000 Data: 03 -T98A8 040:031.160 - 0.701ms returns 1 (0x1) -T98A8 040:032.300 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:032.408 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 040:032.828 Data: 02 -T98A8 040:032.936 - 0.634ms returns 1 (0x1) -T98A8 040:033.320 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:033.408 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 040:033.772 Data: 02 -T98A8 040:033.872 - 0.553ms returns 1 (0x1) -T98A8 040:033.940 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:034.004 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 040:034.360 Data: 03 -T98A8 040:034.456 - 0.518ms returns 1 (0x1) -T98A8 040:034.520 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:034.584 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 040:034.916 Data: 02 -T98A8 040:035.084 - 0.561ms returns 1 (0x1) -T98A8 040:035.176 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:035.312 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 040:035.672 Data: 03 -T98A8 040:035.800 - 0.623ms returns 1 (0x1) -T98A8 040:035.868 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:035.932 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 040:036.360 Data: 01 -T98A8 040:036.456 - 0.588ms returns 1 (0x1) -T98A8 040:036.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:036.584 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 040:037.108 Data: 01 -T98A8 040:037.264 - 0.742ms returns 1 (0x1) -T98A8 040:037.352 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:037.432 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 040:037.812 Data: 00 00 00 00 -T98A8 040:037.964 - 0.613ms returns 4 (0x4) -T98A8 040:038.424 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:038.776 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 040:039.948 Data: 00 -T98A8 040:040.112 - 1.692ms returns 1 (0x1) -T98A8 040:041.076 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:041.168 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 040:041.536 Data: 00 -T98A8 040:041.692 - 0.617ms returns 1 (0x1) -T98A8 040:042.216 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:042.316 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 040:042.664 Data: 10 CF 01 20 -T98A8 040:042.808 - 0.592ms returns 4 (0x4) -T98A8 040:042.920 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:043.000 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 040:043.432 Data: 49 CF 01 20 -T98A8 040:043.544 - 0.628ms returns 4 (0x4) -T358C 040:043.772 JLINK_IsHalted() -T358C 040:044.204 - 0.430ms returns FALSE -T358C 040:145.420 JLINK_HasError() -T358C 040:145.676 JLINK_IsHalted() -T358C 040:146.248 - 0.570ms returns FALSE -T358C 040:247.140 JLINK_HasError() -T358C 040:247.292 JLINK_IsHalted() -T358C 040:247.756 - 0.463ms returns FALSE -T358C 040:348.504 JLINK_HasError() -T358C 040:348.700 JLINK_IsHalted() -T358C 040:349.152 - 0.450ms returns FALSE -T358C 040:449.604 JLINK_HasError() -T358C 040:449.816 JLINK_IsHalted() -T358C 040:450.804 - 0.983ms returns FALSE -T358C 040:551.344 JLINK_HasError() -T358C 040:551.528 JLINK_HasError() -T358C 040:551.592 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 040:551.684 Data: F7 AE 0E 05 -T358C 040:551.776 Debug reg: DWT_CYCCNT -T358C 040:551.864 - 0.266ms returns 1 (0x1) -T98A8 040:552.184 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 040:552.344 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 040:552.936 Data: 0F 00 0C 20 00 F1 17 96 4F 7F 1A 80 9F 06 20 00 ... -T98A8 040:553.060 - 0.874ms returns 25 (0x19) -T98A8 040:553.164 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:553.240 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 040:553.612 Data: 40 C4 01 20 -T98A8 040:553.736 - 0.570ms returns 4 (0x4) -T98A8 040:553.856 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:553.928 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 040:554.476 Data: 01 00 00 00 -T98A8 040:554.684 - 0.830ms returns 4 (0x4) -T98A8 040:554.824 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:554.980 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 040:555.416 Data: 03 -T98A8 040:555.592 - 0.765ms returns 1 (0x1) -T98A8 040:556.536 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:556.632 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 040:557.032 Data: 02 -T98A8 040:557.192 - 0.655ms returns 1 (0x1) -T98A8 040:557.348 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:557.432 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 040:557.800 Data: 02 -T98A8 040:557.948 - 0.601ms returns 1 (0x1) -T98A8 040:558.032 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:558.108 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 040:558.528 Data: 03 -T98A8 040:558.644 - 0.610ms returns 1 (0x1) -T98A8 040:558.724 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:558.800 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 040:559.208 Data: 02 -T98A8 040:559.320 - 0.598ms returns 1 (0x1) -T98A8 040:559.392 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:559.460 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 040:559.804 Data: 03 -T98A8 040:559.960 - 0.567ms returns 1 (0x1) -T98A8 040:560.044 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:560.132 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 040:560.544 Data: 01 -T98A8 040:560.700 - 0.657ms returns 1 (0x1) -T98A8 040:560.788 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:560.868 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 040:561.264 Data: 01 -T98A8 040:561.384 - 0.599ms returns 1 (0x1) -T98A8 040:561.456 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:561.528 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 040:561.900 Data: 00 00 00 00 -T98A8 040:562.068 - 0.611ms returns 4 (0x4) -T98A8 040:562.252 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:562.344 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 040:562.720 Data: 00 -T98A8 040:562.824 - 0.573ms returns 1 (0x1) -T98A8 040:564.132 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 040:564.240 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 040:564.636 Data: 00 -T98A8 040:564.776 - 0.642ms returns 1 (0x1) -T98A8 040:565.256 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:565.388 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 040:565.752 Data: 10 CF 01 20 -T98A8 040:565.868 - 0.613ms returns 4 (0x4) -T98A8 040:565.968 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 040:566.036 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 040:566.396 Data: 49 CF 01 20 -T98A8 040:566.536 - 0.565ms returns 4 (0x4) -T358C 040:566.720 JLINK_IsHalted() -T358C 040:567.128 - 0.407ms returns FALSE -T358C 040:667.816 JLINK_HasError() -T358C 040:667.972 JLINK_IsHalted() -T358C 040:668.480 - 0.506ms returns FALSE -T358C 040:769.132 JLINK_HasError() -T358C 040:769.328 JLINK_IsHalted() -T358C 040:769.812 - 0.482ms returns FALSE -T358C 040:870.840 JLINK_HasError() -T358C 040:871.016 JLINK_IsHalted() -T358C 040:871.440 - 0.424ms returns FALSE -T358C 040:972.656 JLINK_HasError() -T358C 040:972.804 JLINK_IsHalted() -T358C 040:973.232 - 0.427ms returns FALSE -T358C 041:074.120 JLINK_HasError() -T358C 041:074.288 JLINK_HasError() -T358C 041:074.364 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 041:074.476 Data: F7 AE 0E 05 -T358C 041:074.588 Debug reg: DWT_CYCCNT -T358C 041:074.696 - 0.332ms returns 1 (0x1) -T98A8 041:075.088 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 041:075.392 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 041:076.136 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 9F 06 60 58 ... -T98A8 041:076.392 - 1.306ms returns 25 (0x19) -T98A8 041:076.568 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:076.652 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 041:077.052 Data: 40 C4 01 20 -T98A8 041:077.200 - 0.633ms returns 4 (0x4) -T98A8 041:077.340 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:077.408 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 041:077.836 Data: 01 00 00 00 -T98A8 041:077.936 - 0.594ms returns 4 (0x4) -T98A8 041:078.024 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:078.088 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 041:078.492 Data: 03 -T98A8 041:078.644 - 0.615ms returns 1 (0x1) -T98A8 041:078.716 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:078.780 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 041:079.212 Data: 01 -T98A8 041:079.308 - 0.593ms returns 1 (0x1) -T98A8 041:080.064 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:080.156 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 041:080.552 Data: 02 -T98A8 041:080.652 - 0.591ms returns 1 (0x1) -T98A8 041:080.720 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:080.784 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 041:081.160 Data: 03 -T98A8 041:081.256 - 0.533ms returns 1 (0x1) -T98A8 041:081.320 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:081.384 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 041:081.736 Data: 02 -T98A8 041:081.832 - 0.511ms returns 1 (0x1) -T98A8 041:081.896 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:081.960 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 041:082.312 Data: 03 -T98A8 041:082.420 - 0.524ms returns 1 (0x1) -T98A8 041:082.492 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:082.556 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 041:083.116 Data: 01 -T98A8 041:083.256 - 0.764ms returns 1 (0x1) -T98A8 041:083.336 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:083.416 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 041:083.800 Data: 01 -T98A8 041:083.928 - 0.588ms returns 1 (0x1) -T98A8 041:084.008 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:084.084 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 041:084.488 Data: 00 00 00 00 -T98A8 041:084.592 - 0.587ms returns 4 (0x4) -T98A8 041:084.712 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:084.776 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 041:085.132 Data: 00 -T98A8 041:085.224 - 0.516ms returns 1 (0x1) -T98A8 041:086.152 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:086.244 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 041:086.600 Data: 00 -T98A8 041:086.808 - 0.658ms returns 1 (0x1) -T98A8 041:087.332 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:087.456 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 041:087.988 Data: 10 CF 01 20 -T98A8 041:088.616 - 1.281ms returns 4 (0x4) -T98A8 041:089.292 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:089.412 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 041:089.804 Data: 49 CF 01 20 -T98A8 041:089.936 - 0.643ms returns 4 (0x4) -T358C 041:090.108 JLINK_IsHalted() -T358C 041:090.488 - 0.378ms returns FALSE -T358C 041:191.540 JLINK_HasError() -T358C 041:191.696 JLINK_IsHalted() -T358C 041:192.120 - 0.422ms returns FALSE -T358C 041:293.032 JLINK_HasError() -T358C 041:293.300 JLINK_IsHalted() -T358C 041:293.772 - 0.473ms returns FALSE -T358C 041:394.696 JLINK_HasError() -T358C 041:394.952 JLINK_IsHalted() -T358C 041:396.172 - 1.215ms returns FALSE -T358C 041:497.992 JLINK_HasError() -T358C 041:498.120 JLINK_IsHalted() -T358C 041:498.544 - 0.418ms returns FALSE -T358C 041:599.204 JLINK_HasError() -T358C 041:599.392 JLINK_HasError() -T358C 041:599.528 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 041:599.656 Data: F7 AE 0E 05 -T358C 041:599.780 Debug reg: DWT_CYCCNT -T358C 041:599.900 - 0.373ms returns 1 (0x1) -T98A8 041:600.248 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 041:600.348 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 041:600.912 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 9F 06 60 58 ... -T98A8 041:601.056 - 0.811ms returns 25 (0x19) -T98A8 041:601.148 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:601.216 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 041:601.596 Data: 40 C4 01 20 -T98A8 041:601.704 - 0.553ms returns 4 (0x4) -T98A8 041:601.828 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:601.896 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 041:602.264 Data: 01 00 00 00 -T98A8 041:602.392 - 0.565ms returns 4 (0x4) -T98A8 041:602.496 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:602.568 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 041:602.912 Data: 03 -T98A8 041:603.088 - 0.591ms returns 1 (0x1) -T98A8 041:603.188 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:603.276 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 041:603.808 Data: 01 -T98A8 041:603.956 - 0.769ms returns 1 (0x1) -T98A8 041:604.836 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:604.936 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 041:605.304 Data: 02 -T98A8 041:605.400 - 0.567ms returns 1 (0x1) -T98A8 041:605.468 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:605.532 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 041:605.868 Data: 03 -T98A8 041:605.992 - 0.522ms returns 1 (0x1) -T98A8 041:606.064 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:606.132 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 041:606.476 Data: 02 -T98A8 041:606.576 - 0.514ms returns 1 (0x1) -T98A8 041:606.648 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:606.712 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 041:607.056 Data: 03 -T98A8 041:607.192 - 0.546ms returns 1 (0x1) -T98A8 041:607.276 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:607.368 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 041:607.732 Data: 01 -T98A8 041:607.832 - 0.556ms returns 1 (0x1) -T98A8 041:607.896 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:607.960 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 041:608.324 Data: 01 -T98A8 041:608.428 - 0.531ms returns 1 (0x1) -T98A8 041:608.496 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:608.556 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 041:608.920 Data: 00 00 00 00 -T98A8 041:609.016 - 0.520ms returns 4 (0x4) -T98A8 041:609.140 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:609.204 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 041:609.532 Data: 00 -T98A8 041:609.628 - 0.487ms returns 1 (0x1) -T98A8 041:610.760 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 041:610.856 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 041:611.200 Data: 00 -T98A8 041:611.332 - 0.571ms returns 1 (0x1) -T98A8 041:611.796 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:611.888 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 041:612.292 Data: 10 CF 01 20 -T98A8 041:612.488 - 0.694ms returns 4 (0x4) -T98A8 041:612.608 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 041:612.688 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 041:613.156 Data: 49 CF 01 20 -T98A8 041:613.864 - 1.253ms returns 4 (0x4) -T358C 041:614.808 JLINK_IsHalted() -T358C 041:615.272 - 0.460ms returns FALSE -T358C 041:716.884 JLINK_HasError() -T358C 041:717.016 JLINK_IsHalted() -T358C 041:717.492 - 0.474ms returns FALSE -T358C 041:817.816 JLINK_HasError() -T358C 041:818.168 JLINK_IsHalted() -T358C 041:818.628 - 0.459ms returns FALSE -T358C 041:919.224 JLINK_HasError() -T358C 041:919.364 JLINK_IsHalted() -T358C 041:920.240 - 0.876ms returns FALSE -T358C 042:021.088 JLINK_HasError() -T358C 042:021.260 JLINK_IsHalted() -T358C 042:021.876 - 0.612ms returns FALSE -T358C 042:123.416 JLINK_HasError() -T358C 042:123.620 JLINK_HasError() -T358C 042:123.676 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 042:123.756 Data: F7 AE 0E 05 -T358C 042:123.840 Debug reg: DWT_CYCCNT -T358C 042:123.920 - 0.244ms returns 1 (0x1) -T98A8 042:124.272 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 042:124.420 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 042:125.112 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 9F FE 74 58 ... -T98A8 042:125.416 - 1.147ms returns 25 (0x19) -T98A8 042:125.624 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:125.768 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 042:126.332 Data: 40 C4 01 20 -T98A8 042:126.480 - 0.856ms returns 4 (0x4) -T98A8 042:126.616 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:126.688 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 042:127.108 Data: 01 00 00 00 -T98A8 042:127.240 - 0.624ms returns 4 (0x4) -T98A8 042:127.340 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:127.408 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 042:127.856 Data: 03 -T98A8 042:128.000 - 0.660ms returns 1 (0x1) -T98A8 042:128.072 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:128.140 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 042:128.564 Data: 01 -T98A8 042:128.772 - 0.696ms returns 1 (0x1) -T98A8 042:128.868 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:128.956 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 042:129.512 Data: 03 -T98A8 042:129.680 - 0.812ms returns 1 (0x1) -T98A8 042:130.504 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:130.608 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 042:131.028 Data: 03 -T98A8 042:131.164 - 0.660ms returns 1 (0x1) -T98A8 042:131.240 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:131.308 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 042:131.672 Data: 02 -T98A8 042:131.808 - 0.567ms returns 1 (0x1) -T98A8 042:131.880 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:131.944 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 042:132.296 Data: 03 -T98A8 042:132.392 - 0.512ms returns 1 (0x1) -T98A8 042:132.456 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:132.520 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 042:132.872 Data: 01 -T98A8 042:133.032 - 0.571ms returns 1 (0x1) -T98A8 042:133.112 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:133.192 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 042:133.552 Data: 01 -T98A8 042:133.684 - 0.569ms returns 1 (0x1) -T98A8 042:133.768 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:133.832 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 042:134.208 Data: 00 00 00 00 -T98A8 042:134.304 - 0.538ms returns 4 (0x4) -T98A8 042:134.468 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:134.540 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 042:134.924 Data: 00 -T98A8 042:135.016 - 0.553ms returns 1 (0x1) -T98A8 042:136.088 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:136.188 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 042:136.616 Data: 00 -T98A8 042:136.796 - 0.707ms returns 1 (0x1) -T98A8 042:137.316 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:137.412 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 042:137.872 Data: 10 CF 01 20 -T98A8 042:138.028 - 0.714ms returns 4 (0x4) -T98A8 042:138.156 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:138.244 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 042:138.632 Data: 49 CF 01 20 -T98A8 042:138.800 - 0.644ms returns 4 (0x4) -T358C 042:139.064 JLINK_IsHalted() -T358C 042:139.504 - 0.438ms returns FALSE -T358C 042:239.728 JLINK_HasError() -T358C 042:239.892 JLINK_IsHalted() -T358C 042:240.516 - 0.621ms returns FALSE -T358C 042:341.152 JLINK_HasError() -T358C 042:341.336 JLINK_IsHalted() -T358C 042:341.772 - 0.434ms returns FALSE -T358C 042:442.688 JLINK_HasError() -T358C 042:442.888 JLINK_IsHalted() -T358C 042:443.332 - 0.438ms returns FALSE -T358C 042:544.052 JLINK_HasError() -T358C 042:544.200 JLINK_IsHalted() -T358C 042:544.604 - 0.401ms returns FALSE -T358C 042:645.804 JLINK_HasError() -T358C 042:645.984 JLINK_HasError() -T358C 042:646.040 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 042:646.124 Data: F7 AE 0E 05 -T358C 042:646.208 Debug reg: DWT_CYCCNT -T358C 042:646.292 - 0.247ms returns 1 (0x1) -T98A8 042:646.592 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 042:646.720 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 042:647.344 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 9F FE 74 58 ... -T98A8 042:647.508 - 0.915ms returns 25 (0x19) -T98A8 042:647.640 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:647.720 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 042:648.180 Data: 40 C4 01 20 -T98A8 042:648.308 - 0.669ms returns 4 (0x4) -T98A8 042:648.496 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:648.580 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 042:649.016 Data: 01 00 00 00 -T98A8 042:649.176 - 0.679ms returns 4 (0x4) -T98A8 042:649.320 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:649.400 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 042:649.776 Data: 03 -T98A8 042:649.944 - 0.625ms returns 1 (0x1) -T98A8 042:650.100 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:650.184 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 042:650.576 Data: 01 -T98A8 042:650.712 - 0.613ms returns 1 (0x1) -T98A8 042:650.796 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:650.880 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 042:651.272 Data: 03 -T98A8 042:651.420 - 0.624ms returns 1 (0x1) -T98A8 042:652.220 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:652.316 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 042:652.704 Data: 03 -T98A8 042:652.836 - 0.615ms returns 1 (0x1) -T98A8 042:652.908 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:652.988 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 042:653.340 Data: 02 -T98A8 042:653.500 - 0.592ms returns 1 (0x1) -T98A8 042:653.596 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:653.676 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 042:654.056 Data: 03 -T98A8 042:654.224 - 0.629ms returns 1 (0x1) -T98A8 042:654.320 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:654.504 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 042:654.880 Data: 01 -T98A8 042:655.000 - 0.680ms returns 1 (0x1) -T98A8 042:655.072 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:655.140 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 042:655.536 Data: 01 -T98A8 042:655.644 - 0.571ms returns 1 (0x1) -T98A8 042:655.712 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:655.780 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 042:656.136 Data: 00 00 00 00 -T98A8 042:656.232 - 0.520ms returns 4 (0x4) -T98A8 042:656.424 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:656.492 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 042:656.856 Data: 00 -T98A8 042:656.988 - 0.564ms returns 1 (0x1) -T98A8 042:658.028 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 042:658.124 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 042:658.536 Data: 00 -T98A8 042:658.696 - 0.666ms returns 1 (0x1) -T98A8 042:659.296 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:659.420 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 042:659.792 Data: 10 CF 01 20 -T98A8 042:659.932 - 0.637ms returns 4 (0x4) -T98A8 042:660.060 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 042:660.140 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 042:660.568 Data: 49 CF 01 20 -T98A8 042:660.720 - 0.660ms returns 4 (0x4) -T358C 042:660.928 JLINK_IsHalted() -T358C 042:661.336 - 0.405ms returns FALSE -T358C 042:761.496 JLINK_HasError() -T358C 042:761.656 JLINK_IsHalted() -T358C 042:762.184 - 0.528ms returns FALSE -T358C 042:862.904 JLINK_HasError() -T358C 042:863.308 JLINK_IsHalted() -T358C 042:863.988 - 0.677ms returns FALSE -T358C 042:965.008 JLINK_HasError() -T358C 042:965.132 JLINK_IsHalted() -T358C 042:965.560 - 0.423ms returns FALSE -T358C 043:066.504 JLINK_HasError() -T358C 043:066.656 JLINK_IsHalted() -T358C 043:067.032 - 0.374ms returns FALSE -T358C 043:167.816 JLINK_HasError() -T358C 043:168.012 JLINK_HasError() -T358C 043:168.076 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 043:168.168 Data: F7 AE 0E 05 -T358C 043:168.260 Debug reg: DWT_CYCCNT -T358C 043:168.348 - 0.272ms returns 1 (0x1) -T98A8 043:168.676 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 043:168.840 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 043:169.728 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 F9 74 58 ... -T98A8 043:169.856 - 1.181ms returns 25 (0x19) -T98A8 043:169.992 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:170.060 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 043:170.560 Data: 40 C4 01 20 -T98A8 043:170.728 - 0.736ms returns 4 (0x4) -T98A8 043:170.928 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:171.008 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 043:171.988 Data: 01 00 00 00 -T98A8 043:172.152 - 1.226ms returns 4 (0x4) -T98A8 043:172.296 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:172.392 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 043:172.744 Data: 03 -T98A8 043:172.888 - 0.594ms returns 1 (0x1) -T98A8 043:172.968 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:173.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 043:173.384 Data: 01 -T98A8 043:173.512 - 0.547ms returns 1 (0x1) -T98A8 043:173.588 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:173.656 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 043:174.016 Data: 03 -T98A8 043:174.136 - 0.548ms returns 1 (0x1) -T98A8 043:174.208 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:174.276 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 043:174.656 Data: 01 -T98A8 043:174.764 - 0.557ms returns 1 (0x1) -T98A8 043:175.512 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:175.608 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 043:175.984 Data: 02 -T98A8 043:176.116 - 0.601ms returns 1 (0x1) -T98A8 043:176.184 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:176.252 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 043:176.604 Data: 03 -T98A8 043:176.704 - 0.518ms returns 1 (0x1) -T98A8 043:176.772 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:176.832 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 043:177.192 Data: 01 -T98A8 043:177.292 - 0.521ms returns 1 (0x1) -T98A8 043:177.364 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:177.428 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 043:177.772 Data: 01 -T98A8 043:177.956 - 0.591ms returns 1 (0x1) -T98A8 043:178.028 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:178.088 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 043:178.436 Data: 00 00 00 00 -T98A8 043:178.528 - 0.500ms returns 4 (0x4) -T98A8 043:178.636 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:178.696 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 043:179.032 Data: 00 -T98A8 043:179.152 - 0.515ms returns 1 (0x1) -T98A8 043:180.168 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:180.264 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 043:180.612 Data: 00 -T98A8 043:180.716 - 0.552ms returns 1 (0x1) -T98A8 043:181.152 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:181.256 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 043:181.596 Data: 10 CF 01 20 -T98A8 043:181.692 - 0.539ms returns 4 (0x4) -T98A8 043:181.784 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:181.848 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 043:182.188 Data: 49 CF 01 20 -T98A8 043:182.284 - 0.504ms returns 4 (0x4) -T358C 043:182.444 JLINK_IsHalted() -T358C 043:182.804 - 0.358ms returns FALSE -T358C 043:283.116 JLINK_HasError() -T358C 043:283.360 JLINK_IsHalted() -T358C 043:283.944 - 0.578ms returns FALSE -T358C 043:384.252 JLINK_HasError() -T358C 043:384.404 JLINK_IsHalted() -T358C 043:384.928 - 0.523ms returns FALSE -T358C 043:485.480 JLINK_HasError() -T358C 043:485.708 JLINK_IsHalted() -T358C 043:486.296 - 0.584ms returns FALSE -T358C 043:587.400 JLINK_HasError() -T358C 043:587.512 JLINK_IsHalted() -T358C 043:587.912 - 0.403ms returns FALSE -T358C 043:688.168 JLINK_HasError() -T358C 043:688.332 JLINK_HasError() -T358C 043:688.400 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 043:688.488 Data: F7 AE 0E 05 -T358C 043:688.584 Debug reg: DWT_CYCCNT -T358C 043:688.680 - 0.281ms returns 1 (0x1) -T98A8 043:689.032 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 043:689.208 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 043:689.788 Data: 0F 00 04 20 00 F1 17 96 4F 7F 1A 80 61 F9 74 58 ... -T98A8 043:689.912 - 0.878ms returns 25 (0x19) -T98A8 043:690.008 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:690.072 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 043:690.464 Data: 40 C4 01 20 -T98A8 043:690.560 - 0.550ms returns 4 (0x4) -T98A8 043:690.680 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:690.744 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 043:691.116 Data: 01 00 00 00 -T98A8 043:691.208 - 0.531ms returns 4 (0x4) -T98A8 043:691.300 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:691.364 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 043:691.736 Data: 03 -T98A8 043:691.836 - 0.538ms returns 1 (0x1) -T98A8 043:691.908 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:691.972 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 043:692.320 Data: 01 -T98A8 043:692.420 - 0.510ms returns 1 (0x1) -T98A8 043:692.488 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:692.572 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 043:692.996 Data: 03 -T98A8 043:693.304 - 0.821ms returns 1 (0x1) -T98A8 043:693.416 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:693.500 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 043:693.868 Data: 01 -T98A8 043:693.976 - 0.560ms returns 1 (0x1) -T98A8 043:694.696 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:694.792 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 043:695.172 Data: 02 -T98A8 043:695.288 - 0.598ms returns 1 (0x1) -T98A8 043:695.364 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:695.428 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 043:695.892 Data: 03 -T98A8 043:696.008 - 0.646ms returns 1 (0x1) -T98A8 043:696.088 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:696.160 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 043:696.688 Data: 01 -T98A8 043:697.544 - 1.445ms returns 1 (0x1) -T98A8 043:697.844 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:697.920 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 043:698.280 Data: 01 -T98A8 043:698.404 - 0.559ms returns 1 (0x1) -T98A8 043:698.548 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:698.616 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 043:698.968 Data: 00 00 00 00 -T98A8 043:699.116 - 0.572ms returns 4 (0x4) -T98A8 043:699.312 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:699.400 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 043:699.768 Data: 00 -T98A8 043:699.908 - 0.595ms returns 1 (0x1) -T98A8 043:701.112 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 043:701.216 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 043:701.608 Data: 00 -T98A8 043:701.712 - 0.600ms returns 1 (0x1) -T98A8 043:702.160 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:702.248 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 043:702.632 Data: 10 CF 01 20 -T98A8 043:702.748 - 0.590ms returns 4 (0x4) -T98A8 043:702.848 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 043:702.916 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 043:703.276 Data: 49 CF 01 20 -T98A8 043:703.416 - 0.565ms returns 4 (0x4) -T358C 043:703.612 JLINK_IsHalted() -T358C 043:703.944 - 0.329ms returns FALSE -T358C 043:804.936 JLINK_HasError() -T358C 043:805.128 JLINK_IsHalted() -T358C 043:805.720 - 0.593ms returns FALSE -T358C 043:906.424 JLINK_HasError() -T358C 043:906.628 JLINK_IsHalted() -T358C 043:907.156 - 0.527ms returns FALSE -T358C 044:008.084 JLINK_HasError() -T358C 044:008.288 JLINK_IsHalted() -T358C 044:008.708 - 0.417ms returns FALSE -T358C 044:109.512 JLINK_HasError() -T358C 044:109.628 JLINK_IsHalted() -T358C 044:110.016 - 0.387ms returns FALSE -T358C 044:210.964 JLINK_HasError() -T358C 044:211.212 JLINK_HasError() -T358C 044:211.328 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 044:211.464 Data: F7 AE 0E 05 -T358C 044:211.632 Debug reg: DWT_CYCCNT -T358C 044:211.792 - 0.464ms returns 1 (0x1) -T98A8 044:212.256 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 044:212.440 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 044:213.132 Data: 0F 00 0C 20 00 F1 17 96 4F 7F FA D3 61 F9 74 58 ... -T98A8 044:213.356 - 1.102ms returns 25 (0x19) -T98A8 044:213.484 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:213.556 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 044:214.344 Data: 40 C4 01 20 -T98A8 044:214.480 - 0.995ms returns 4 (0x4) -T98A8 044:214.680 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:214.760 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 044:215.132 Data: 01 00 00 00 -T98A8 044:215.276 - 0.600ms returns 4 (0x4) -T98A8 044:215.400 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:215.480 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 044:215.848 Data: 03 -T98A8 044:216.036 - 0.636ms returns 1 (0x1) -T98A8 044:216.112 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:216.180 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 044:216.532 Data: 01 -T98A8 044:216.676 - 0.561ms returns 1 (0x1) -T98A8 044:216.748 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:216.812 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 044:217.328 Data: 03 -T98A8 044:217.556 - 0.806ms returns 1 (0x1) -T98A8 044:217.708 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:217.832 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 044:218.256 Data: 01 -T98A8 044:218.404 - 0.695ms returns 1 (0x1) -T98A8 044:218.500 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:218.600 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 044:219.020 Data: 03 -T98A8 044:219.148 - 0.650ms returns 1 (0x1) -T98A8 044:220.052 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:220.180 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 044:220.656 Data: 03 -T98A8 044:220.788 - 0.737ms returns 1 (0x1) -T98A8 044:220.868 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:220.936 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 044:221.328 Data: 01 -T98A8 044:221.464 - 0.593ms returns 1 (0x1) -T98A8 044:221.536 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:221.608 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 044:221.976 Data: 01 -T98A8 044:222.136 - 0.596ms returns 1 (0x1) -T98A8 044:222.220 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:222.300 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 044:222.668 Data: 00 00 00 00 -T98A8 044:222.796 - 0.576ms returns 4 (0x4) -T98A8 044:222.996 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:223.084 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 044:223.480 Data: 00 -T98A8 044:223.596 - 0.600ms returns 1 (0x1) -T98A8 044:224.728 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:224.824 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 044:225.208 Data: 00 -T98A8 044:225.308 - 0.581ms returns 1 (0x1) -T98A8 044:225.748 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:225.852 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 044:226.248 Data: 10 CF 01 20 -T98A8 044:226.348 - 0.603ms returns 4 (0x4) -T98A8 044:226.444 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:226.520 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 044:226.936 Data: 49 CF 01 20 -T98A8 044:227.040 - 0.595ms returns 4 (0x4) -T358C 044:227.256 JLINK_IsHalted() -T358C 044:227.704 - 0.446ms returns FALSE -T358C 044:328.356 JLINK_HasError() -T358C 044:328.508 JLINK_IsHalted() -T358C 044:329.032 - 0.524ms returns FALSE -T358C 044:429.708 JLINK_HasError() -T358C 044:429.900 JLINK_IsHalted() -T358C 044:430.344 - 0.439ms returns FALSE -T358C 044:531.492 JLINK_HasError() -T358C 044:531.740 JLINK_IsHalted() -T358C 044:532.200 - 0.457ms returns FALSE -T358C 044:633.000 JLINK_HasError() -T358C 044:633.168 JLINK_IsHalted() -T358C 044:633.724 - 0.557ms returns FALSE -T358C 044:734.192 JLINK_HasError() -T358C 044:734.320 JLINK_HasError() -T358C 044:734.380 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 044:734.468 Data: F7 AE 0E 05 -T358C 044:734.552 Debug reg: DWT_CYCCNT -T358C 044:734.648 - 0.271ms returns 1 (0x1) -T98A8 044:734.964 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 044:735.104 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 044:735.704 Data: 0F 00 04 20 00 F1 17 96 4F 7F FA D3 61 F9 74 58 ... -T98A8 044:735.832 - 0.870ms returns 25 (0x19) -T98A8 044:735.936 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:736.024 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 044:736.980 Data: 40 C4 01 20 -T98A8 044:737.108 - 1.172ms returns 4 (0x4) -T98A8 044:737.240 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:737.308 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 044:737.972 Data: 01 00 00 00 -T98A8 044:738.096 - 0.854ms returns 4 (0x4) -T98A8 044:738.200 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:738.276 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 044:738.656 Data: 03 -T98A8 044:738.776 - 0.578ms returns 1 (0x1) -T98A8 044:738.900 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:739.096 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 044:739.676 Data: 01 -T98A8 044:739.800 - 0.901ms returns 1 (0x1) -T98A8 044:739.868 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:739.936 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 044:740.304 Data: 03 -T98A8 044:740.456 - 0.585ms returns 1 (0x1) -T98A8 044:740.540 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:740.624 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 044:740.996 Data: 01 -T98A8 044:741.112 - 0.571ms returns 1 (0x1) -T98A8 044:741.192 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:741.264 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 044:741.664 Data: 03 -T98A8 044:741.768 - 0.578ms returns 1 (0x1) -T98A8 044:742.536 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:742.640 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 044:742.980 Data: 03 -T98A8 044:743.084 - 0.551ms returns 1 (0x1) -T98A8 044:743.160 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:743.224 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 044:743.560 Data: 01 -T98A8 044:743.656 - 0.499ms returns 1 (0x1) -T98A8 044:743.724 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:743.800 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 044:744.152 Data: 01 -T98A8 044:744.272 - 0.546ms returns 1 (0x1) -T98A8 044:744.348 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:744.424 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 044:744.792 Data: 00 00 00 00 -T98A8 044:744.900 - 0.550ms returns 4 (0x4) -T98A8 044:745.064 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:745.160 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 044:745.488 Data: 00 -T98A8 044:745.592 - 0.526ms returns 1 (0x1) -T98A8 044:747.524 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 044:747.672 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 044:748.068 Data: 00 -T98A8 044:748.228 - 0.704ms returns 1 (0x1) -T98A8 044:748.728 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:748.820 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 044:749.176 Data: 10 CF 01 20 -T98A8 044:749.332 - 0.604ms returns 4 (0x4) -T98A8 044:749.448 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 044:749.528 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 044:749.896 Data: 49 CF 01 20 -T98A8 044:750.024 - 0.572ms returns 4 (0x4) -T358C 044:750.216 JLINK_IsHalted() -T358C 044:750.536 - 0.319ms returns FALSE -T358C 044:850.680 JLINK_HasError() -T358C 044:850.860 JLINK_IsHalted() -T358C 044:851.300 - 0.436ms returns FALSE -T358C 044:952.272 JLINK_HasError() -T358C 044:952.440 JLINK_IsHalted() -T358C 044:952.860 - 0.420ms returns FALSE -T358C 045:054.012 JLINK_HasError() -T358C 045:054.240 JLINK_IsHalted() -T358C 045:054.724 - 0.482ms returns FALSE -T358C 045:155.176 JLINK_HasError() -T358C 045:155.316 JLINK_IsHalted() -T358C 045:155.720 - 0.404ms returns FALSE -T358C 045:256.384 JLINK_HasError() -T358C 045:256.616 JLINK_HasError() -T358C 045:256.712 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 045:256.824 Data: F7 AE 0E 05 -T358C 045:256.940 Debug reg: DWT_CYCCNT -T358C 045:257.040 - 0.330ms returns 1 (0x1) -T98A8 045:257.832 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 045:257.948 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 045:258.500 Data: 0F 00 04 20 00 F1 17 96 4F 7F FA D3 61 F9 74 58 ... -T98A8 045:258.616 - 0.788ms returns 25 (0x19) -T98A8 045:258.720 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:258.792 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 045:259.228 Data: 40 C4 01 20 -T98A8 045:259.336 - 0.619ms returns 4 (0x4) -T98A8 045:259.472 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:259.544 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 045:259.928 Data: 01 00 00 00 -T98A8 045:260.024 - 0.553ms returns 4 (0x4) -T98A8 045:260.112 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:260.176 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 045:261.148 Data: 03 -T98A8 045:261.436 - 1.322ms returns 1 (0x1) -T98A8 045:261.592 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:261.736 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 045:262.664 Data: 01 -T98A8 045:262.824 - 1.236ms returns 1 (0x1) -T98A8 045:262.916 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:263.000 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 045:263.432 Data: 03 -T98A8 045:263.564 - 0.648ms returns 1 (0x1) -T98A8 045:263.640 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:263.716 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 045:264.112 Data: 01 -T98A8 045:264.296 - 0.658ms returns 1 (0x1) -T98A8 045:264.408 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:264.520 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 045:264.856 Data: 03 -T98A8 045:264.968 - 0.560ms returns 1 (0x1) -T98A8 045:265.032 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:265.104 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 045:265.464 Data: 03 -T98A8 045:265.560 - 0.525ms returns 1 (0x1) -T98A8 045:265.624 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:265.688 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 045:266.112 Data: 01 -T98A8 045:266.236 - 0.611ms returns 1 (0x1) -T98A8 045:266.304 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:266.372 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 045:266.828 Data: 01 -T98A8 045:266.924 - 0.618ms returns 1 (0x1) -T98A8 045:267.000 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:267.072 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 045:267.512 Data: 00 00 00 00 -T98A8 045:267.616 - 0.615ms returns 4 (0x4) -T98A8 045:267.740 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:267.816 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 045:268.308 Data: 00 -T98A8 045:268.464 - 0.721ms returns 1 (0x1) -T98A8 045:269.720 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:269.816 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 045:270.232 Data: 00 -T98A8 045:270.376 - 0.657ms returns 1 (0x1) -T98A8 045:270.848 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:270.968 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 045:271.352 Data: 10 CF 01 20 -T98A8 045:271.736 - 0.886ms returns 4 (0x4) -T98A8 045:272.184 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:272.860 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 045:273.400 Data: 49 CF 01 20 -T98A8 045:273.584 - 1.402ms returns 4 (0x4) -T358C 045:273.816 JLINK_IsHalted() -T358C 045:274.232 - 0.412ms returns FALSE -T358C 045:374.684 JLINK_HasError() -T358C 045:374.832 JLINK_IsHalted() -T358C 045:375.788 - 0.954ms returns FALSE -T358C 045:476.872 JLINK_HasError() -T358C 045:477.864 JLINK_IsHalted() -T358C 045:478.292 - 0.424ms returns FALSE -T358C 045:579.264 JLINK_HasError() -T358C 045:579.688 JLINK_IsHalted() -T358C 045:580.328 - 0.638ms returns FALSE -T358C 045:680.552 JLINK_HasError() -T358C 045:680.884 JLINK_IsHalted() -T358C 045:681.384 - 0.503ms returns FALSE -T358C 045:782.548 JLINK_HasError() -T358C 045:782.720 JLINK_HasError() -T358C 045:782.788 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 045:782.880 Data: F7 AE 0E 05 -T358C 045:782.984 Debug reg: DWT_CYCCNT -T358C 045:783.100 - 0.312ms returns 1 (0x1) -T98A8 045:783.448 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 045:783.612 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 045:784.260 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F FA D3 61 F9 74 58 ... -T98A8 045:784.388 - 0.942ms returns 25 (0x19) -T98A8 045:784.484 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:784.552 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 045:784.920 Data: 40 C4 01 20 -T98A8 045:785.048 - 0.563ms returns 4 (0x4) -T98A8 045:785.176 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:785.240 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 045:785.588 Data: 01 00 00 00 -T98A8 045:785.728 - 0.553ms returns 4 (0x4) -T98A8 045:785.836 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:785.916 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 045:786.280 Data: 03 -T98A8 045:786.412 - 0.577ms returns 1 (0x1) -T98A8 045:786.488 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:786.560 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 045:786.916 Data: 01 -T98A8 045:787.060 - 0.572ms returns 1 (0x1) -T98A8 045:787.144 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:787.236 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 045:787.740 Data: 03 -T98A8 045:787.908 - 0.760ms returns 1 (0x1) -T98A8 045:787.992 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:788.080 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 045:788.600 Data: 01 -T98A8 045:788.880 - 0.889ms returns 1 (0x1) -T98A8 045:789.032 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:789.116 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 045:789.468 Data: 03 -T98A8 045:789.800 - 0.765ms returns 1 (0x1) -T98A8 045:789.888 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:789.976 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 045:790.392 Data: 03 -T98A8 045:790.552 - 0.663ms returns 1 (0x1) -T98A8 045:790.632 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:790.732 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 045:791.092 Data: 03 -T98A8 045:791.248 - 0.613ms returns 1 (0x1) -T98A8 045:792.128 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:792.252 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 045:792.736 Data: 01 -T98A8 045:792.836 - 0.707ms returns 1 (0x1) -T98A8 045:792.904 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:792.968 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 045:793.396 Data: 00 00 00 00 -T98A8 045:793.492 - 0.588ms returns 4 (0x4) -T98A8 045:793.624 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:793.704 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 045:794.124 Data: 00 -T98A8 045:794.216 - 0.593ms returns 1 (0x1) -T98A8 045:795.672 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 045:795.780 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 045:796.124 Data: 00 -T98A8 045:796.256 - 0.582ms returns 1 (0x1) -T98A8 045:796.728 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:796.820 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 045:797.168 Data: 10 CF 01 20 -T98A8 045:797.288 - 0.566ms returns 4 (0x4) -T98A8 045:797.412 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 045:797.480 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 045:798.320 Data: 49 CF 01 20 -T98A8 045:798.484 - 1.072ms returns 4 (0x4) -T358C 045:798.696 JLINK_IsHalted() -T358C 045:799.704 - 1.010ms returns FALSE -T358C 045:899.992 JLINK_HasError() -T358C 045:900.184 JLINK_IsHalted() -T358C 045:900.696 - 0.514ms returns FALSE -T358C 046:001.948 JLINK_HasError() -T358C 046:002.120 JLINK_IsHalted() -T358C 046:002.584 - 0.467ms returns FALSE -T358C 046:103.172 JLINK_HasError() -T358C 046:103.316 JLINK_IsHalted() -T358C 046:103.876 - 0.555ms returns FALSE -T358C 046:205.008 JLINK_HasError() -T358C 046:205.188 JLINK_IsHalted() -T358C 046:205.596 - 0.408ms returns FALSE -T358C 046:306.744 JLINK_HasError() -T358C 046:306.900 JLINK_HasError() -T358C 046:306.968 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 046:307.052 Data: F7 AE 0E 05 -T358C 046:307.144 Debug reg: DWT_CYCCNT -T358C 046:307.236 - 0.269ms returns 1 (0x1) -T98A8 046:307.624 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 046:307.872 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 046:308.632 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F FA D3 61 F9 74 58 ... -T98A8 046:308.768 - 1.145ms returns 25 (0x19) -T98A8 046:308.860 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:308.928 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 046:309.296 Data: 40 C4 01 20 -T98A8 046:309.432 - 0.569ms returns 4 (0x4) -T98A8 046:309.568 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:309.636 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 046:310.012 Data: 01 00 00 00 -T98A8 046:310.108 - 0.543ms returns 4 (0x4) -T98A8 046:310.200 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:310.264 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 046:310.648 Data: 03 -T98A8 046:310.760 - 0.559ms returns 1 (0x1) -T98A8 046:310.828 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:310.896 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 046:311.256 Data: 01 -T98A8 046:311.356 - 0.525ms returns 1 (0x1) -T98A8 046:311.424 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:311.524 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 046:311.896 Data: 03 -T98A8 046:312.008 - 0.587ms returns 1 (0x1) -T98A8 046:312.080 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:312.140 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 046:312.484 Data: 01 -T98A8 046:312.616 - 0.539ms returns 1 (0x1) -T98A8 046:312.696 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:312.760 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 046:313.112 Data: 03 -T98A8 046:313.240 - 0.546ms returns 1 (0x1) -T98A8 046:313.312 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:313.376 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 046:313.776 Data: 03 -T98A8 046:313.872 - 0.560ms returns 1 (0x1) -T98A8 046:313.940 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:314.004 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 046:314.328 Data: 03 -T98A8 046:314.424 - 0.486ms returns 1 (0x1) -T98A8 046:315.372 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:315.524 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 046:315.904 Data: 01 -T98A8 046:316.016 - 0.642ms returns 1 (0x1) -T98A8 046:316.088 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:316.152 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 046:316.508 Data: 00 00 00 00 -T98A8 046:316.604 - 0.519ms returns 4 (0x4) -T98A8 046:316.740 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:316.808 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 046:317.148 Data: 00 -T98A8 046:317.248 - 0.507ms returns 1 (0x1) -T98A8 046:318.168 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:318.268 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 046:318.636 Data: 00 -T98A8 046:318.736 - 0.566ms returns 1 (0x1) -T98A8 046:319.140 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:319.228 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 046:319.600 Data: 10 CF 01 20 -T98A8 046:319.732 - 0.593ms returns 4 (0x4) -T98A8 046:319.832 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:319.904 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 046:320.252 Data: 49 CF 01 20 -T98A8 046:320.400 - 0.569ms returns 4 (0x4) -T358C 046:320.600 JLINK_IsHalted() -T358C 046:321.128 - 0.529ms returns FALSE -T358C 046:421.976 JLINK_HasError() -T358C 046:422.132 JLINK_IsHalted() -T358C 046:422.548 - 0.416ms returns FALSE -T358C 046:522.696 JLINK_HasError() -T358C 046:522.848 JLINK_IsHalted() -T358C 046:523.264 - 0.414ms returns FALSE -T358C 046:623.740 JLINK_HasError() -T358C 046:623.928 JLINK_IsHalted() -T358C 046:624.392 - 0.464ms returns FALSE -T358C 046:725.992 JLINK_HasError() -T358C 046:726.348 JLINK_IsHalted() -T358C 046:727.092 - 0.741ms returns FALSE -T358C 046:828.364 JLINK_HasError() -T358C 046:828.504 JLINK_HasError() -T358C 046:828.584 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 046:828.684 Data: F7 AE 0E 05 -T358C 046:828.796 Debug reg: DWT_CYCCNT -T358C 046:828.904 - 0.318ms returns 1 (0x1) -T98A8 046:829.528 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 046:829.640 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 046:830.328 Data: 0F 00 04 20 00 F1 F7 E9 4F 7F FA D3 61 F9 74 58 ... -T98A8 046:830.480 - 0.951ms returns 25 (0x19) -T98A8 046:830.576 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:830.648 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 046:831.020 Data: 40 C4 01 20 -T98A8 046:831.152 - 0.576ms returns 4 (0x4) -T98A8 046:831.284 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:831.352 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 046:831.868 Data: 01 00 00 00 -T98A8 046:832.048 - 0.765ms returns 4 (0x4) -T98A8 046:832.168 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:832.244 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 046:832.604 Data: 03 -T98A8 046:832.728 - 0.559ms returns 1 (0x1) -T98A8 046:832.808 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:832.892 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 046:833.268 Data: 01 -T98A8 046:833.364 - 0.554ms returns 1 (0x1) -T98A8 046:833.432 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:833.496 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 046:833.824 Data: 03 -T98A8 046:833.976 - 0.544ms returns 1 (0x1) -T98A8 046:834.060 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:834.152 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 046:834.516 Data: 01 -T98A8 046:834.632 - 0.572ms returns 1 (0x1) -T98A8 046:834.712 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:834.792 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 046:835.148 Data: 03 -T98A8 046:835.264 - 0.550ms returns 1 (0x1) -T98A8 046:835.344 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:835.420 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 046:835.844 Data: 03 -T98A8 046:836.028 - 0.685ms returns 1 (0x1) -T98A8 046:836.148 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:836.272 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 046:836.824 Data: 03 -T98A8 046:837.028 - 0.882ms returns 1 (0x1) -T98A8 046:837.112 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:837.192 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 046:837.772 Data: 01 -T98A8 046:837.928 - 0.812ms returns 1 (0x1) -T98A8 046:838.012 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:838.096 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 046:838.460 Data: 00 00 00 00 -T98A8 046:838.584 - 0.573ms returns 4 (0x4) -T98A8 046:838.720 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:838.796 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 046:839.168 Data: 00 -T98A8 046:839.264 - 0.545ms returns 1 (0x1) -T98A8 046:840.456 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 046:840.552 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 046:840.968 Data: 00 -T98A8 046:841.096 - 0.643ms returns 1 (0x1) -T98A8 046:841.560 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:841.656 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 046:842.008 Data: 10 CF 01 20 -T98A8 046:842.304 - 0.743ms returns 4 (0x4) -T98A8 046:842.504 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 046:842.616 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 046:843.032 Data: 49 CF 01 20 -T98A8 046:843.156 - 0.654ms returns 4 (0x4) -T358C 046:843.352 JLINK_IsHalted() -T358C 046:843.800 - 0.447ms returns FALSE -T358C 046:944.532 JLINK_HasError() -T358C 046:944.720 JLINK_IsHalted() -T358C 046:945.216 - 0.492ms returns FALSE -T358C 047:045.512 JLINK_HasError() -T358C 047:045.688 JLINK_IsHalted() -T358C 047:046.360 - 0.668ms returns FALSE -T358C 047:147.176 JLINK_HasError() -T358C 047:147.436 JLINK_IsHalted() -T358C 047:147.976 - 0.538ms returns FALSE -T358C 047:248.500 JLINK_HasError() -T358C 047:248.684 JLINK_IsHalted() -T358C 047:249.516 - 0.833ms returns FALSE -T358C 047:350.332 JLINK_HasError() -T358C 047:350.520 JLINK_HasError() -T358C 047:350.584 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 047:350.672 Data: F7 AE 0E 05 -T358C 047:350.764 Debug reg: DWT_CYCCNT -T358C 047:350.856 - 0.274ms returns 1 (0x1) -T98A8 047:351.268 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 047:351.496 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 047:352.236 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 047:352.392 - 1.122ms returns 25 (0x19) -T98A8 047:352.536 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:352.616 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 047:353.124 Data: 40 C4 01 20 -T98A8 047:353.264 - 0.727ms returns 4 (0x4) -T98A8 047:353.400 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:353.472 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 047:353.888 Data: 01 00 00 00 -T98A8 047:354.032 - 0.630ms returns 4 (0x4) -T98A8 047:354.152 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:354.228 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 047:354.616 Data: 03 -T98A8 047:354.748 - 0.598ms returns 1 (0x1) -T98A8 047:354.912 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:354.992 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 047:355.400 Data: 01 -T98A8 047:355.512 - 0.603ms returns 1 (0x1) -T98A8 047:355.588 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:355.660 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 047:356.008 Data: 03 -T98A8 047:356.112 - 0.524ms returns 1 (0x1) -T98A8 047:356.184 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:356.248 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 047:356.616 Data: 01 -T98A8 047:356.948 - 0.762ms returns 1 (0x1) -T98A8 047:357.392 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:357.768 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 047:358.912 Data: 03 -T98A8 047:359.056 - 1.669ms returns 1 (0x1) -T98A8 047:359.128 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:359.200 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 047:359.600 Data: 03 -T98A8 047:359.756 - 0.628ms returns 1 (0x1) -T98A8 047:359.852 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:359.928 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 047:360.360 Data: 02 -T98A8 047:360.492 - 0.639ms returns 1 (0x1) -T98A8 047:361.784 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:361.904 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 047:362.648 Data: 01 -T98A8 047:362.816 - 1.034ms returns 1 (0x1) -T98A8 047:362.912 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:363.000 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 047:363.416 Data: 00 00 00 00 -T98A8 047:363.548 - 0.636ms returns 4 (0x4) -T98A8 047:363.740 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:363.808 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 047:364.160 Data: 00 -T98A8 047:364.264 - 0.522ms returns 1 (0x1) -T98A8 047:365.320 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:365.424 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 047:366.048 Data: 00 -T98A8 047:366.204 - 0.885ms returns 1 (0x1) -T98A8 047:366.824 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:366.932 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 047:367.316 Data: 10 CF 01 20 -T98A8 047:367.452 - 0.632ms returns 4 (0x4) -T98A8 047:367.560 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:367.632 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 047:368.024 Data: 49 CF 01 20 -T98A8 047:368.160 - 0.596ms returns 4 (0x4) -T358C 047:368.356 JLINK_IsHalted() -T358C 047:368.832 - 0.475ms returns FALSE -T358C 047:469.872 JLINK_HasError() -T358C 047:470.184 JLINK_IsHalted() -T358C 047:470.640 - 0.454ms returns FALSE -T358C 047:571.192 JLINK_HasError() -T358C 047:571.436 JLINK_IsHalted() -T358C 047:571.992 - 0.554ms returns FALSE -T358C 047:672.568 JLINK_HasError() -T358C 047:672.752 JLINK_IsHalted() -T358C 047:673.128 - 0.376ms returns FALSE -T358C 047:773.892 JLINK_HasError() -T358C 047:774.136 JLINK_IsHalted() -T358C 047:774.568 - 0.427ms returns FALSE -T358C 047:875.124 JLINK_HasError() -T358C 047:875.292 JLINK_HasError() -T358C 047:875.352 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 047:875.432 Data: F7 AE 0E 05 -T358C 047:875.512 Debug reg: DWT_CYCCNT -T358C 047:875.612 - 0.261ms returns 1 (0x1) -T98A8 047:875.944 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 047:876.088 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 047:876.668 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 047:876.792 - 0.849ms returns 25 (0x19) -T98A8 047:876.888 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:876.960 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 047:877.316 Data: 40 C4 01 20 -T98A8 047:877.468 - 0.578ms returns 4 (0x4) -T98A8 047:877.640 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:877.720 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 047:878.664 Data: 01 00 00 00 -T98A8 047:878.796 - 1.160ms returns 4 (0x4) -T98A8 047:878.900 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:878.968 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 047:880.032 Data: 03 -T98A8 047:880.168 - 1.269ms returns 1 (0x1) -T98A8 047:880.244 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:880.312 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 047:880.668 Data: 01 -T98A8 047:880.808 - 0.566ms returns 1 (0x1) -T98A8 047:880.896 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:880.976 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 047:881.352 Data: 03 -T98A8 047:881.496 - 0.603ms returns 1 (0x1) -T98A8 047:881.580 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:881.660 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 047:882.040 Data: 01 -T98A8 047:882.168 - 0.588ms returns 1 (0x1) -T98A8 047:882.240 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:882.308 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 047:882.660 Data: 03 -T98A8 047:882.760 - 0.517ms returns 1 (0x1) -T98A8 047:882.824 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:882.888 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 047:883.224 Data: 03 -T98A8 047:883.344 - 0.520ms returns 1 (0x1) -T98A8 047:883.416 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:883.480 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 047:883.876 Data: 02 -T98A8 047:883.992 - 0.575ms returns 1 (0x1) -T98A8 047:884.776 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:884.868 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 047:885.288 Data: 01 -T98A8 047:885.560 - 0.782ms returns 1 (0x1) -T98A8 047:885.664 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:885.732 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 047:886.088 Data: 00 00 00 00 -T98A8 047:886.216 - 0.551ms returns 4 (0x4) -T98A8 047:886.364 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:886.432 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 047:886.876 Data: 00 -T98A8 047:887.012 - 0.645ms returns 1 (0x1) -T98A8 047:888.036 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 047:888.132 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 047:888.492 Data: 00 -T98A8 047:888.616 - 0.581ms returns 1 (0x1) -T98A8 047:889.096 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:889.192 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 047:889.560 Data: 10 CF 01 20 -T98A8 047:889.692 - 0.594ms returns 4 (0x4) -T98A8 047:889.796 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 047:889.872 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 047:890.216 Data: 49 CF 01 20 -T98A8 047:890.312 - 0.519ms returns 4 (0x4) -T358C 047:890.476 JLINK_IsHalted() -T358C 047:890.880 - 0.402ms returns FALSE -T358C 047:991.460 JLINK_HasError() -T358C 047:991.640 JLINK_IsHalted() -T358C 047:992.044 - 0.402ms returns FALSE -T358C 048:092.188 JLINK_HasError() -T358C 048:092.352 JLINK_IsHalted() -T358C 048:092.744 - 0.390ms returns FALSE -T358C 048:194.312 JLINK_HasError() -T358C 048:194.536 JLINK_IsHalted() -T358C 048:194.980 - 0.440ms returns FALSE -T358C 048:295.480 JLINK_HasError() -T358C 048:295.620 JLINK_IsHalted() -T358C 048:296.040 - 0.422ms returns FALSE -T358C 048:396.748 JLINK_HasError() -T358C 048:396.976 JLINK_HasError() -T358C 048:397.208 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 048:397.464 Data: F7 AE 0E 05 -T358C 048:397.648 Debug reg: DWT_CYCCNT -T358C 048:397.832 - 0.622ms returns 1 (0x1) -T98A8 048:398.552 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 048:398.708 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 048:399.304 Data: 0F 00 04 20 00 F1 07 C0 4F 87 E5 D3 61 F9 74 58 ... -T98A8 048:399.440 - 0.890ms returns 25 (0x19) -T98A8 048:399.540 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:399.608 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 048:400.080 Data: 40 C4 01 20 -T98A8 048:400.240 - 0.701ms returns 4 (0x4) -T98A8 048:400.400 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:400.480 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 048:400.904 Data: 01 00 00 00 -T98A8 048:401.072 - 0.673ms returns 4 (0x4) -T98A8 048:401.196 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:401.276 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 048:401.708 Data: 03 -T98A8 048:401.840 - 0.644ms returns 1 (0x1) -T98A8 048:401.916 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:401.988 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 048:402.376 Data: 01 -T98A8 048:402.472 - 0.555ms returns 1 (0x1) -T98A8 048:402.536 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:402.600 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 048:402.968 Data: 03 -T98A8 048:403.064 - 0.528ms returns 1 (0x1) -T98A8 048:403.128 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:403.192 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 048:403.556 Data: 01 -T98A8 048:403.652 - 0.522ms returns 1 (0x1) -T98A8 048:403.716 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:403.780 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 048:404.284 Data: 03 -T98A8 048:404.564 - 0.847ms returns 1 (0x1) -T98A8 048:404.732 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:404.876 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 048:405.452 Data: 01 -T98A8 048:405.740 - 1.008ms returns 1 (0x1) -T98A8 048:406.756 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:406.852 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 048:407.268 Data: 02 -T98A8 048:407.432 - 0.678ms returns 1 (0x1) -T98A8 048:407.540 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:407.640 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 048:408.052 Data: 01 -T98A8 048:408.308 - 0.768ms returns 1 (0x1) -T98A8 048:408.448 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:408.596 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 048:409.160 Data: 00 00 00 00 -T98A8 048:409.292 - 0.844ms returns 4 (0x4) -T98A8 048:409.420 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:409.488 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 048:410.280 Data: 00 -T98A8 048:410.420 - 1.001ms returns 1 (0x1) -T98A8 048:411.416 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:411.536 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 048:411.960 Data: 00 -T98A8 048:412.092 - 0.677ms returns 1 (0x1) -T98A8 048:412.528 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:412.624 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 048:413.256 Data: 10 CF 01 20 -T98A8 048:413.396 - 0.868ms returns 4 (0x4) -T98A8 048:413.496 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:413.568 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 048:413.952 Data: 49 CF 01 20 -T98A8 048:414.048 - 0.552ms returns 4 (0x4) -T358C 048:414.208 JLINK_IsHalted() -T358C 048:414.552 - 0.347ms returns FALSE -T358C 048:514.772 JLINK_HasError() -T358C 048:514.900 JLINK_IsHalted() -T358C 048:515.464 - 0.565ms returns FALSE -T358C 048:616.004 JLINK_HasError() -T358C 048:616.160 JLINK_IsHalted() -T358C 048:616.536 - 0.372ms returns FALSE -T358C 048:717.384 JLINK_HasError() -T358C 048:717.528 JLINK_IsHalted() -T358C 048:718.460 - 0.932ms returns FALSE -T358C 048:818.624 JLINK_HasError() -T358C 048:818.800 JLINK_IsHalted() -T358C 048:819.208 - 0.402ms returns FALSE -T358C 048:920.064 JLINK_HasError() -T358C 048:920.300 JLINK_HasError() -T358C 048:920.420 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 048:920.564 Data: F7 AE 0E 05 -T358C 048:920.740 Debug reg: DWT_CYCCNT -T358C 048:920.908 - 0.486ms returns 1 (0x1) -T98A8 048:921.456 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 048:921.572 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 048:922.180 Data: 0F 00 0C 20 00 F1 07 C0 4F 87 E5 D3 61 F9 74 58 ... -T98A8 048:922.312 - 0.859ms returns 25 (0x19) -T98A8 048:922.424 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:922.492 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 048:923.480 Data: 40 C4 01 20 -T98A8 048:923.640 - 1.212ms returns 4 (0x4) -T98A8 048:923.780 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:923.848 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 048:924.232 Data: 01 00 00 00 -T98A8 048:924.416 - 0.638ms returns 4 (0x4) -T98A8 048:924.596 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:924.724 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 048:925.148 Data: 03 -T98A8 048:925.288 - 0.692ms returns 1 (0x1) -T98A8 048:925.368 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:925.452 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 048:925.828 Data: 01 -T98A8 048:925.968 - 0.601ms returns 1 (0x1) -T98A8 048:926.040 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:926.108 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 048:926.488 Data: 03 -T98A8 048:926.616 - 0.574ms returns 1 (0x1) -T98A8 048:926.696 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:926.768 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 048:927.124 Data: 01 -T98A8 048:927.228 - 0.533ms returns 1 (0x1) -T98A8 048:927.300 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:927.376 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 048:927.728 Data: 03 -T98A8 048:927.836 - 0.537ms returns 1 (0x1) -T98A8 048:927.912 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:927.984 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 048:928.348 Data: 01 -T98A8 048:928.520 - 0.605ms returns 1 (0x1) -T98A8 048:929.544 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:929.672 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 048:930.156 Data: 02 -T98A8 048:930.924 - 1.378ms returns 1 (0x1) -T98A8 048:931.288 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:931.564 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 048:932.204 Data: 01 -T98A8 048:932.336 - 1.049ms returns 1 (0x1) -T98A8 048:932.408 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:932.480 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 048:932.948 Data: 00 00 00 00 -T98A8 048:933.108 - 0.696ms returns 4 (0x4) -T98A8 048:933.264 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:933.344 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 048:933.732 Data: 00 -T98A8 048:933.828 - 0.562ms returns 1 (0x1) -T98A8 048:934.744 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 048:934.840 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 048:935.316 Data: 00 -T98A8 048:935.448 - 0.702ms returns 1 (0x1) -T98A8 048:935.920 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:936.016 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 048:936.496 Data: 10 CF 01 20 -T98A8 048:936.628 - 0.706ms returns 4 (0x4) -T98A8 048:936.728 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 048:936.792 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 048:937.224 Data: 49 CF 01 20 -T98A8 048:937.356 - 0.631ms returns 4 (0x4) -T358C 048:937.576 JLINK_IsHalted() -T358C 048:938.000 - 0.421ms returns FALSE -T358C 049:038.496 JLINK_HasError() -T358C 049:038.688 JLINK_IsHalted() -T358C 049:039.100 - 0.409ms returns FALSE -T358C 049:139.872 JLINK_HasError() -T358C 049:140.052 JLINK_IsHalted() -T358C 049:140.476 - 0.426ms returns FALSE -T358C 049:241.544 JLINK_HasError() -T358C 049:241.696 JLINK_IsHalted() -T358C 049:242.108 - 0.411ms returns FALSE -T358C 049:342.588 JLINK_HasError() -T358C 049:342.816 JLINK_IsHalted() -T358C 049:343.300 - 0.480ms returns FALSE -T358C 049:444.172 JLINK_HasError() -T358C 049:444.416 JLINK_HasError() -T358C 049:444.536 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 049:444.712 Data: F7 AE 0E 05 -T358C 049:444.936 Debug reg: DWT_CYCCNT -T358C 049:445.208 - 0.673ms returns 1 (0x1) -T98A8 049:445.628 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 049:445.864 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 049:446.520 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 049:446.792 - 1.166ms returns 25 (0x19) -T98A8 049:447.016 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:447.176 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 049:447.576 Data: 40 C4 01 20 -T98A8 049:447.696 - 0.685ms returns 4 (0x4) -T98A8 049:447.832 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:447.900 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 049:448.640 Data: 01 00 00 00 -T98A8 049:448.812 - 0.979ms returns 4 (0x4) -T98A8 049:448.932 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:449.008 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 049:449.376 Data: 03 -T98A8 049:449.480 - 0.550ms returns 1 (0x1) -T98A8 049:449.552 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:449.612 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 049:449.992 Data: 01 -T98A8 049:450.096 - 0.544ms returns 1 (0x1) -T98A8 049:450.164 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:450.228 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 049:450.584 Data: 03 -T98A8 049:450.700 - 0.536ms returns 1 (0x1) -T98A8 049:450.792 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:450.872 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 049:451.332 Data: 01 -T98A8 049:451.596 - 0.805ms returns 1 (0x1) -T98A8 049:451.820 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:451.956 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 049:452.316 Data: 03 -T98A8 049:452.424 - 0.604ms returns 1 (0x1) -T98A8 049:452.504 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:452.572 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 049:452.976 Data: 03 -T98A8 049:453.092 - 0.589ms returns 1 (0x1) -T98A8 049:453.832 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:453.928 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 049:454.272 Data: 02 -T98A8 049:454.376 - 0.540ms returns 1 (0x1) -T98A8 049:454.440 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:454.520 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 049:454.848 Data: 01 -T98A8 049:454.944 - 0.502ms returns 1 (0x1) -T98A8 049:455.012 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:455.076 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 049:455.448 Data: 00 00 00 00 -T98A8 049:455.548 - 0.536ms returns 4 (0x4) -T98A8 049:455.688 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:455.756 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 049:456.120 Data: 00 -T98A8 049:456.232 - 0.541ms returns 1 (0x1) -T98A8 049:457.176 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:457.288 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 049:457.704 Data: 00 -T98A8 049:457.844 - 0.667ms returns 1 (0x1) -T98A8 049:458.336 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:458.440 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 049:458.836 Data: 10 CF 01 20 -T98A8 049:458.984 - 0.645ms returns 4 (0x4) -T98A8 049:459.092 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:459.168 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 049:459.664 Data: 49 CF 01 20 -T98A8 049:459.812 - 0.720ms returns 4 (0x4) -T358C 049:460.008 JLINK_IsHalted() -T358C 049:461.052 - 1.042ms returns FALSE -T358C 049:562.288 JLINK_HasError() -T358C 049:562.488 JLINK_IsHalted() -T358C 049:562.984 - 0.500ms returns FALSE -T358C 049:664.408 JLINK_HasError() -T358C 049:664.584 JLINK_IsHalted() -T358C 049:665.000 - 0.410ms returns FALSE -T358C 049:765.416 JLINK_HasError() -T358C 049:765.612 JLINK_IsHalted() -T358C 049:766.048 - 0.433ms returns FALSE -T358C 049:866.468 JLINK_HasError() -T358C 049:866.708 JLINK_IsHalted() -T358C 049:867.248 - 0.538ms returns FALSE -T358C 049:968.632 JLINK_HasError() -T358C 049:968.848 JLINK_HasError() -T358C 049:968.904 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 049:968.988 Data: F7 AE 0E 05 -T358C 049:969.112 Debug reg: DWT_CYCCNT -T358C 049:969.272 - 0.365ms returns 1 (0x1) -T98A8 049:969.740 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 049:970.000 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 049:970.776 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 049:970.948 - 1.206ms returns 25 (0x19) -T98A8 049:971.068 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:971.148 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 049:971.560 Data: 40 C4 01 20 -T98A8 049:971.692 - 0.625ms returns 4 (0x4) -T98A8 049:971.828 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:972.064 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 049:972.532 Data: 01 00 00 00 -T98A8 049:972.660 - 0.835ms returns 4 (0x4) -T98A8 049:972.760 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:972.840 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 049:973.348 Data: 03 -T98A8 049:973.480 - 0.719ms returns 1 (0x1) -T98A8 049:973.572 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:973.640 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 049:974.072 Data: 01 -T98A8 049:974.212 - 0.640ms returns 1 (0x1) -T98A8 049:974.280 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:974.348 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 049:974.796 Data: 03 -T98A8 049:974.928 - 0.645ms returns 1 (0x1) -T98A8 049:975.016 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:975.092 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 049:975.576 Data: 01 -T98A8 049:975.688 - 0.672ms returns 1 (0x1) -T98A8 049:975.760 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:975.832 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 049:976.272 Data: 03 -T98A8 049:976.684 - 0.919ms returns 1 (0x1) -T98A8 049:976.824 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:976.928 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 049:978.008 Data: 03 -T98A8 049:978.116 - 1.288ms returns 1 (0x1) -T98A8 049:978.848 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:978.940 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 049:979.320 Data: 02 -T98A8 049:979.500 - 0.654ms returns 1 (0x1) -T98A8 049:979.608 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:979.728 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 049:980.144 Data: 03 -T98A8 049:980.844 - 1.232ms returns 1 (0x1) -T98A8 049:982.004 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:982.104 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 049:983.176 Data: 00 00 00 00 -T98A8 049:983.316 - 1.313ms returns 4 (0x4) -T98A8 049:983.440 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:983.512 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 049:983.896 Data: 00 -T98A8 049:984.052 - 0.612ms returns 1 (0x1) -T98A8 049:985.036 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 049:985.128 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 049:985.484 Data: 00 -T98A8 049:985.604 - 0.567ms returns 1 (0x1) -T98A8 049:986.060 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:986.152 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 049:986.504 Data: 10 CF 01 20 -T98A8 049:986.600 - 0.537ms returns 4 (0x4) -T98A8 049:986.688 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 049:986.756 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 049:987.144 Data: 49 CF 01 20 -T98A8 049:987.240 - 0.552ms returns 4 (0x4) -T358C 049:987.396 JLINK_IsHalted() -T358C 049:987.736 - 0.342ms returns FALSE -T358C 050:088.136 JLINK_HasError() -T358C 050:088.260 JLINK_IsHalted() -T358C 050:088.656 - 0.393ms returns FALSE -T358C 050:189.468 JLINK_HasError() -T358C 050:189.636 JLINK_IsHalted() -T358C 050:190.152 - 0.516ms returns FALSE -T358C 050:290.420 JLINK_HasError() -T358C 050:290.572 JLINK_IsHalted() -T358C 050:291.104 - 0.529ms returns FALSE -T358C 050:392.456 JLINK_HasError() -T358C 050:392.592 JLINK_IsHalted() -T358C 050:393.036 - 0.445ms returns FALSE -T358C 050:494.168 JLINK_HasError() -T358C 050:494.328 JLINK_HasError() -T358C 050:494.384 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 050:494.460 Data: F7 AE 0E 05 -T358C 050:494.544 Debug reg: DWT_CYCCNT -T358C 050:494.652 - 0.270ms returns 1 (0x1) -T98A8 050:494.968 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 050:495.152 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 050:495.796 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 050:495.952 - 0.980ms returns 25 (0x19) -T98A8 050:496.056 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 050:496.228 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 050:496.716 Data: 40 C4 01 20 -T98A8 050:496.864 - 0.809ms returns 4 (0x4) -T98A8 050:497.012 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 050:497.096 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 050:497.528 Data: 01 00 00 00 -T98A8 050:497.672 - 0.662ms returns 4 (0x4) -T98A8 050:497.788 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:497.876 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 050:498.824 Data: 03 -T98A8 050:499.164 - 1.376ms returns 1 (0x1) -T98A8 050:499.476 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:499.608 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 050:500.100 Data: 01 -T98A8 050:500.384 - 0.907ms returns 1 (0x1) -T98A8 050:500.632 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:500.788 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 050:501.284 Data: 03 -T98A8 050:501.508 - 0.873ms returns 1 (0x1) -T98A8 050:501.640 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:501.752 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 050:502.264 Data: 01 -T98A8 050:502.476 - 0.838ms returns 1 (0x1) -T98A8 050:502.616 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:502.728 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 050:503.184 Data: 03 -T98A8 050:503.304 - 0.686ms returns 1 (0x1) -T98A8 050:503.372 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:503.436 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 050:503.800 Data: 03 -T98A8 050:503.948 - 0.577ms returns 1 (0x1) -T98A8 050:504.032 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:504.112 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 050:504.588 Data: 02 -T98A8 050:504.692 - 0.659ms returns 1 (0x1) -T98A8 050:504.768 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:504.832 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 050:505.192 Data: 03 -T98A8 050:505.384 - 0.614ms returns 1 (0x1) -T98A8 050:506.300 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 050:506.412 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 050:506.788 Data: 00 00 00 00 -T98A8 050:506.936 - 0.633ms returns 4 (0x4) -T98A8 050:507.112 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:507.192 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 050:507.560 Data: 00 -T98A8 050:507.660 - 0.549ms returns 1 (0x1) -T98A8 050:508.576 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 050:508.676 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 050:509.048 Data: 00 -T98A8 050:509.192 - 0.612ms returns 1 (0x1) -T98A8 050:509.720 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 050:509.824 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 050:510.208 Data: 10 CF 01 20 -T98A8 050:510.312 - 0.597ms returns 4 (0x4) -T98A8 050:510.408 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 050:510.472 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 050:510.816 Data: 49 CF 01 20 -T98A8 050:510.908 - 0.504ms returns 4 (0x4) -T358C 050:511.064 JLINK_IsHalted() -T358C 050:511.420 - 0.357ms returns FALSE -T358C 050:612.188 JLINK_HasError() -T358C 050:612.424 JLINK_IsHalted() -T358C 050:613.112 - 0.683ms returns FALSE -T358C 050:713.644 JLINK_HasError() -T358C 050:713.788 JLINK_IsHalted() -T358C 050:714.216 - 0.424ms returns FALSE -T358C 050:814.816 JLINK_HasError() -T358C 050:815.056 JLINK_IsHalted() -T358C 050:815.568 - 0.512ms returns FALSE -T358C 050:916.372 JLINK_HasError() -T358C 050:916.672 JLINK_IsHalted() -T358C 050:917.264 - 0.591ms returns FALSE -T358C 051:018.524 JLINK_HasError() -T358C 051:018.784 JLINK_HasError() -T358C 051:018.900 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 051:019.036 Data: F7 AE 0E 05 -T358C 051:019.248 Debug reg: DWT_CYCCNT -T358C 051:019.432 - 0.533ms returns 1 (0x1) -T98A8 051:019.868 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 051:020.020 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 051:020.984 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 051:021.212 - 1.342ms returns 25 (0x19) -T98A8 051:021.352 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:021.452 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 051:022.380 Data: 40 C4 01 20 -T98A8 051:022.504 - 1.154ms returns 4 (0x4) -T98A8 051:022.672 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:022.764 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 051:024.004 Data: 01 00 00 00 -T98A8 051:024.148 - 1.473ms returns 4 (0x4) -T98A8 051:024.264 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:024.332 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 051:024.744 Data: 03 -T98A8 051:024.936 - 0.668ms returns 1 (0x1) -T98A8 051:025.016 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:025.084 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 051:025.448 Data: 01 -T98A8 051:025.612 - 0.597ms returns 1 (0x1) -T98A8 051:025.700 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:025.792 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 051:026.152 Data: 03 -T98A8 051:026.260 - 0.559ms returns 1 (0x1) -T98A8 051:026.408 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:026.476 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 051:026.840 Data: 01 -T98A8 051:026.996 - 0.586ms returns 1 (0x1) -T98A8 051:027.080 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:027.172 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 051:027.564 Data: 03 -T98A8 051:027.700 - 0.617ms returns 1 (0x1) -T98A8 051:027.768 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:027.840 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 051:028.212 Data: 03 -T98A8 051:028.360 - 0.591ms returns 1 (0x1) -T98A8 051:028.448 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:028.524 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 051:028.956 Data: 02 -T98A8 051:029.060 - 0.611ms returns 1 (0x1) -T98A8 051:029.128 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:029.192 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 051:029.524 Data: 03 -T98A8 051:029.660 - 0.533ms returns 1 (0x1) -T98A8 051:029.744 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:029.824 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 051:030.216 Data: 00 00 00 00 -T98A8 051:030.336 - 0.590ms returns 4 (0x4) -T98A8 051:030.532 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:030.624 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 051:030.972 Data: 00 -T98A8 051:031.096 - 0.561ms returns 1 (0x1) -T98A8 051:032.560 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:032.692 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 051:033.076 Data: 00 -T98A8 051:033.192 - 0.631ms returns 1 (0x1) -T98A8 051:033.672 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:033.768 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 051:034.136 Data: 10 CF 01 20 -T98A8 051:034.284 - 0.616ms returns 4 (0x4) -T98A8 051:034.392 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:034.460 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 051:034.828 Data: 49 CF 01 20 -T98A8 051:034.960 - 0.567ms returns 4 (0x4) -T358C 051:035.160 JLINK_IsHalted() -T358C 051:035.504 - 0.341ms returns FALSE -T358C 051:136.628 JLINK_HasError() -T358C 051:136.828 JLINK_IsHalted() -T358C 051:137.744 - 0.912ms returns FALSE -T358C 051:238.704 JLINK_HasError() -T358C 051:238.996 JLINK_IsHalted() -T358C 051:240.132 - 1.134ms returns FALSE -T358C 051:340.364 JLINK_HasError() -T358C 051:340.528 JLINK_IsHalted() -T358C 051:340.920 - 0.390ms returns FALSE -T358C 051:441.568 JLINK_HasError() -T358C 051:441.712 JLINK_IsHalted() -T358C 051:442.132 - 0.420ms returns FALSE -T358C 051:542.464 JLINK_HasError() -T358C 051:542.664 JLINK_HasError() -T358C 051:542.728 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 051:542.808 Data: F7 AE 0E 05 -T358C 051:542.900 Debug reg: DWT_CYCCNT -T358C 051:542.984 - 0.256ms returns 1 (0x1) -T98A8 051:543.332 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 051:543.508 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 051:544.168 Data: 0F 00 04 20 00 DD 08 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 051:544.304 - 0.974ms returns 25 (0x19) -T98A8 051:544.404 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:544.472 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 051:544.920 Data: 40 C4 01 20 -T98A8 051:545.092 - 0.686ms returns 4 (0x4) -T98A8 051:545.304 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:545.404 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 051:545.820 Data: 01 00 00 00 -T98A8 051:545.960 - 0.656ms returns 4 (0x4) -T98A8 051:546.088 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:546.188 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 051:546.552 Data: 03 -T98A8 051:546.712 - 0.626ms returns 1 (0x1) -T98A8 051:546.804 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:546.896 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 051:547.284 Data: 01 -T98A8 051:547.416 - 0.615ms returns 1 (0x1) -T98A8 051:547.492 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:547.624 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 051:547.980 Data: 03 -T98A8 051:548.148 - 0.656ms returns 1 (0x1) -T98A8 051:548.228 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:548.296 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 051:548.672 Data: 01 -T98A8 051:548.776 - 0.546ms returns 1 (0x1) -T98A8 051:548.844 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:548.908 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 051:549.276 Data: 03 -T98A8 051:549.432 - 0.591ms returns 1 (0x1) -T98A8 051:549.524 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:549.596 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 051:550.008 Data: 03 -T98A8 051:550.164 - 0.639ms returns 1 (0x1) -T98A8 051:550.248 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:550.316 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 051:550.668 Data: 02 -T98A8 051:550.804 - 0.551ms returns 1 (0x1) -T98A8 051:550.888 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:550.968 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 051:551.348 Data: 01 -T98A8 051:551.472 - 0.584ms returns 1 (0x1) -T98A8 051:552.300 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:552.416 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 051:552.800 Data: 00 00 00 00 -T98A8 051:552.940 - 0.639ms returns 4 (0x4) -T98A8 051:553.104 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:553.192 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 051:553.544 Data: 00 -T98A8 051:553.664 - 0.560ms returns 1 (0x1) -T98A8 051:554.596 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 051:554.692 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 051:555.144 Data: 00 -T98A8 051:555.624 - 1.026ms returns 1 (0x1) -T98A8 051:557.192 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:557.320 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 051:557.728 Data: 10 CF 01 20 -T98A8 051:557.880 - 0.688ms returns 4 (0x4) -T98A8 051:558.000 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 051:558.080 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 051:558.476 Data: 49 CF 01 20 -T98A8 051:558.584 - 0.584ms returns 4 (0x4) -T358C 051:558.776 JLINK_IsHalted() -T358C 051:559.204 - 0.429ms returns FALSE -T358C 051:660.120 JLINK_HasError() -T358C 051:660.264 JLINK_IsHalted() -T358C 051:660.784 - 0.516ms returns FALSE -T358C 051:761.236 JLINK_HasError() -T358C 051:761.588 JLINK_IsHalted() -T358C 051:762.156 - 0.566ms returns FALSE -T358C 051:862.828 JLINK_HasError() -T358C 051:863.076 JLINK_IsHalted() -T358C 051:863.700 - 0.619ms returns FALSE -T358C 051:964.588 JLINK_HasError() -T358C 051:964.724 JLINK_IsHalted() -T358C 051:965.140 - 0.412ms returns FALSE -T358C 052:065.364 JLINK_HasError() -T358C 052:065.540 JLINK_HasError() -T358C 052:065.604 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 052:065.692 Data: F7 AE 0E 05 -T358C 052:065.808 Debug reg: DWT_CYCCNT -T358C 052:065.888 - 0.283ms returns 1 (0x1) -T98A8 052:066.204 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 052:066.352 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 052:066.996 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 052:067.132 - 0.928ms returns 25 (0x19) -T98A8 052:067.236 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:067.304 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 052:068.268 Data: 40 C4 01 20 -T98A8 052:068.424 - 1.188ms returns 4 (0x4) -T98A8 052:068.584 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:068.668 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 052:069.144 Data: 01 00 00 00 -T98A8 052:069.272 - 0.687ms returns 4 (0x4) -T98A8 052:069.384 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:069.468 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 052:069.816 Data: 03 -T98A8 052:069.928 - 0.543ms returns 1 (0x1) -T98A8 052:070.008 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:070.084 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 052:070.520 Data: 01 -T98A8 052:070.636 - 0.628ms returns 1 (0x1) -T98A8 052:070.708 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:070.912 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 052:071.356 Data: 03 -T98A8 052:071.508 - 0.799ms returns 1 (0x1) -T98A8 052:071.596 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:071.688 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 052:072.040 Data: 01 -T98A8 052:072.192 - 0.594ms returns 1 (0x1) -T98A8 052:072.276 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:072.356 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 052:072.728 Data: 03 -T98A8 052:072.836 - 0.559ms returns 1 (0x1) -T98A8 052:072.908 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:072.972 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 052:073.312 Data: 03 -T98A8 052:073.408 - 0.499ms returns 1 (0x1) -T98A8 052:073.480 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:073.540 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 052:073.880 Data: 02 -T98A8 052:073.996 - 0.518ms returns 1 (0x1) -T98A8 052:074.088 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:074.172 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 052:074.568 Data: 01 -T98A8 052:074.676 - 0.590ms returns 1 (0x1) -T98A8 052:075.440 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:075.540 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 052:075.892 Data: 00 00 00 00 -T98A8 052:075.992 - 0.553ms returns 4 (0x4) -T98A8 052:076.104 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:076.168 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 052:076.508 Data: 00 -T98A8 052:076.600 - 0.499ms returns 1 (0x1) -T98A8 052:077.428 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:077.524 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 052:077.912 Data: 00 -T98A8 052:078.044 - 0.618ms returns 1 (0x1) -T98A8 052:078.504 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:078.596 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 052:078.960 Data: 10 CF 01 20 -T98A8 052:079.060 - 0.554ms returns 4 (0x4) -T98A8 052:079.148 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:079.216 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 052:079.748 Data: 49 CF 01 20 -T98A8 052:080.052 - 0.901ms returns 4 (0x4) -T358C 052:080.368 JLINK_IsHalted() -T358C 052:081.884 - 1.514ms returns FALSE -T358C 052:183.084 JLINK_HasError() -T358C 052:183.260 JLINK_IsHalted() -T358C 052:184.224 - 0.963ms returns FALSE -T358C 052:284.692 JLINK_HasError() -T358C 052:284.928 JLINK_IsHalted() -T358C 052:285.524 - 0.593ms returns FALSE -T358C 052:386.372 JLINK_HasError() -T358C 052:386.516 JLINK_IsHalted() -T358C 052:386.892 - 0.377ms returns FALSE -T358C 052:487.352 JLINK_HasError() -T358C 052:487.744 JLINK_IsHalted() -T358C 052:488.324 - 0.578ms returns FALSE -T358C 052:588.732 JLINK_HasError() -T358C 052:588.960 JLINK_HasError() -T358C 052:589.032 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 052:589.112 Data: F7 AE 0E 05 -T358C 052:589.204 Debug reg: DWT_CYCCNT -T358C 052:589.288 - 0.256ms returns 1 (0x1) -T98A8 052:589.508 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 052:589.640 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 052:590.208 Data: 0F 00 0C 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 052:590.388 - 0.879ms returns 25 (0x19) -T98A8 052:590.500 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:590.584 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 052:590.928 Data: 40 C4 01 20 -T98A8 052:591.024 - 0.527ms returns 4 (0x4) -T98A8 052:591.144 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:591.212 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 052:591.576 Data: 01 00 00 00 -T98A8 052:591.684 - 0.536ms returns 4 (0x4) -T98A8 052:591.772 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:591.836 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 052:592.184 Data: 03 -T98A8 052:592.280 - 0.510ms returns 1 (0x1) -T98A8 052:592.352 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:592.416 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 052:592.756 Data: 01 -T98A8 052:592.916 - 0.562ms returns 1 (0x1) -T98A8 052:593.000 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:593.092 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 052:593.472 Data: 03 -T98A8 052:593.576 - 0.575ms returns 1 (0x1) -T98A8 052:593.644 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:593.708 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 052:594.048 Data: 01 -T98A8 052:594.144 - 0.500ms returns 1 (0x1) -T98A8 052:594.212 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:594.276 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 052:594.608 Data: 03 -T98A8 052:594.704 - 0.493ms returns 1 (0x1) -T98A8 052:594.772 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:594.832 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 052:595.176 Data: 03 -T98A8 052:595.268 - 0.497ms returns 1 (0x1) -T98A8 052:595.336 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:595.396 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 052:595.848 Data: 02 -T98A8 052:596.000 - 0.667ms returns 1 (0x1) -T98A8 052:596.104 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:596.200 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 052:596.644 Data: 01 -T98A8 052:596.824 - 0.722ms returns 1 (0x1) -T98A8 052:596.972 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:597.052 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 052:597.480 Data: 00 00 00 00 -T98A8 052:597.640 - 0.665ms returns 4 (0x4) -T98A8 052:597.876 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:597.960 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 052:598.360 Data: 00 -T98A8 052:598.484 - 0.610ms returns 1 (0x1) -T98A8 052:599.960 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 052:600.064 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 052:600.444 Data: 00 -T98A8 052:600.600 - 0.639ms returns 1 (0x1) -T98A8 052:601.132 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:601.228 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 052:601.608 Data: 10 CF 01 20 -T98A8 052:601.712 - 0.577ms returns 4 (0x4) -T98A8 052:601.824 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 052:601.892 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 052:602.320 Data: 49 CF 01 20 -T98A8 052:602.416 - 0.591ms returns 4 (0x4) -T358C 052:602.696 JLINK_IsHalted() -T358C 052:603.176 - 0.479ms returns FALSE -T358C 052:703.364 JLINK_HasError() -T358C 052:703.568 JLINK_IsHalted() -T358C 052:703.956 - 0.384ms returns FALSE -T358C 052:804.840 JLINK_HasError() -T358C 052:805.124 JLINK_IsHalted() -T358C 052:805.512 - 0.387ms returns FALSE -T358C 052:906.324 JLINK_HasError() -T358C 052:906.600 JLINK_IsHalted() -T358C 052:907.064 - 0.462ms returns FALSE -T358C 053:007.960 JLINK_HasError() -T358C 053:008.132 JLINK_IsHalted() -T358C 053:008.632 - 0.499ms returns FALSE -T358C 053:109.816 JLINK_HasError() -T358C 053:110.028 JLINK_HasError() -T358C 053:110.104 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 053:110.236 Data: F7 AE 0E 05 -T358C 053:110.320 Debug reg: DWT_CYCCNT -T358C 053:110.404 - 0.299ms returns 1 (0x1) -T98A8 053:111.420 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 053:111.560 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 053:112.140 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 053:112.296 - 0.877ms returns 25 (0x19) -T98A8 053:112.416 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:112.500 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 053:112.904 Data: 40 C4 01 20 -T98A8 053:113.140 - 0.722ms returns 4 (0x4) -T98A8 053:113.332 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:113.520 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 053:114.000 Data: 01 00 00 00 -T98A8 053:114.152 - 0.817ms returns 4 (0x4) -T98A8 053:114.300 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:114.424 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 053:114.832 Data: 03 -T98A8 053:114.980 - 0.677ms returns 1 (0x1) -T98A8 053:115.072 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:115.156 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 053:115.524 Data: 01 -T98A8 053:115.656 - 0.587ms returns 1 (0x1) -T98A8 053:115.732 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:115.804 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 053:116.216 Data: 03 -T98A8 053:116.344 - 0.614ms returns 1 (0x1) -T98A8 053:116.472 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:116.540 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 053:116.912 Data: 01 -T98A8 053:117.072 - 0.603ms returns 1 (0x1) -T98A8 053:117.156 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:117.240 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 053:117.624 Data: 03 -T98A8 053:117.752 - 0.596ms returns 1 (0x1) -T98A8 053:117.836 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:117.912 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 053:118.268 Data: 03 -T98A8 053:118.364 - 0.528ms returns 1 (0x1) -T98A8 053:118.436 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:118.496 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 053:118.836 Data: 02 -T98A8 053:118.932 - 0.498ms returns 1 (0x1) -T98A8 053:119.004 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:119.064 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 053:119.508 Data: 01 -T98A8 053:119.600 - 0.597ms returns 1 (0x1) -T98A8 053:119.668 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:119.728 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 053:120.112 Data: 00 00 00 00 -T98A8 053:120.332 - 0.666ms returns 4 (0x4) -T98A8 053:120.552 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:120.676 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 053:121.032 Data: 00 -T98A8 053:121.152 - 0.601ms returns 1 (0x1) -T98A8 053:122.412 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:122.512 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 053:122.888 Data: 00 -T98A8 053:122.988 - 0.577ms returns 1 (0x1) -T98A8 053:123.460 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:123.560 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 053:123.912 Data: 10 CF 01 20 -T98A8 053:124.008 - 0.551ms returns 4 (0x4) -T98A8 053:124.104 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:124.172 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 053:124.568 Data: 49 CF 01 20 -T98A8 053:124.672 - 0.566ms returns 4 (0x4) -T358C 053:124.944 JLINK_IsHalted() -T358C 053:125.316 - 0.370ms returns FALSE -T358C 053:226.280 JLINK_HasError() -T358C 053:226.424 JLINK_IsHalted() -T358C 053:226.824 - 0.396ms returns FALSE -T358C 053:327.724 JLINK_HasError() -T358C 053:327.896 JLINK_IsHalted() -T358C 053:328.316 - 0.417ms returns FALSE -T358C 053:428.556 JLINK_HasError() -T358C 053:428.788 JLINK_IsHalted() -T358C 053:429.328 - 0.538ms returns FALSE -T98A8 053:466.200 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:466.388 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 053:466.868 Data: 00 00 00 00 -T98A8 053:466.992 - 0.794ms returns 4 (0x4) -T98A8 053:467.080 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:467.144 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 053:467.508 Data: 00 00 00 00 -T98A8 053:467.704 - 0.620ms returns 4 (0x4) -T98A8 053:467.880 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:467.952 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 053:468.312 Data: 00 00 00 00 -T98A8 053:468.424 - 0.546ms returns 4 (0x4) -T98A8 053:468.488 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:468.552 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 053:468.884 Data: 00 00 00 00 -T98A8 053:468.968 - 0.477ms returns 4 (0x4) -T98A8 053:487.464 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:487.612 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 053:488.104 Data: 00 00 00 00 -T98A8 053:488.384 - 0.920ms returns 4 (0x4) -T98A8 053:488.568 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:488.700 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 053:489.304 Data: 00 00 00 00 -T98A8 053:489.444 - 0.878ms returns 4 (0x4) -T358C 053:530.296 JLINK_HasError() -T358C 053:530.568 JLINK_IsHalted() -T358C 053:531.652 - 1.080ms returns FALSE -T358C 053:632.520 JLINK_HasError() -T358C 053:632.692 JLINK_HasError() -T358C 053:632.760 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 053:632.856 Data: F7 AE 0E 05 -T358C 053:632.952 Debug reg: DWT_CYCCNT -T358C 053:633.048 - 0.285ms returns 1 (0x1) -T98A8 053:633.384 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 053:633.492 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 053:634.120 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 053:634.264 - 0.880ms returns 25 (0x19) -T98A8 053:634.392 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:634.488 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 053:634.864 Data: 40 C4 01 20 -T98A8 053:634.984 - 0.590ms returns 4 (0x4) -T98A8 053:635.112 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:635.180 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 053:635.544 Data: 01 00 00 00 -T98A8 053:635.640 - 0.530ms returns 4 (0x4) -T98A8 053:635.724 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:635.788 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 053:636.272 Data: 00 00 00 00 -T98A8 053:636.452 - 0.727ms returns 4 (0x4) -T98A8 053:636.540 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:636.620 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 053:636.968 Data: 00 00 00 00 -T98A8 053:637.068 - 0.526ms returns 4 (0x4) -T98A8 053:637.160 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:637.228 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 053:637.608 Data: 03 -T98A8 053:637.772 - 0.610ms returns 1 (0x1) -T98A8 053:637.864 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:637.952 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 053:638.744 Data: 01 -T98A8 053:639.016 - 1.151ms returns 1 (0x1) -T98A8 053:639.132 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:639.212 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 053:639.620 Data: 03 -T98A8 053:639.752 - 0.619ms returns 1 (0x1) -T98A8 053:639.824 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:639.888 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 053:640.312 Data: 01 -T98A8 053:640.444 - 0.621ms returns 1 (0x1) -T98A8 053:640.516 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:640.580 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 053:640.972 Data: 03 -T98A8 053:641.104 - 0.590ms returns 1 (0x1) -T98A8 053:641.176 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:641.252 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 053:641.672 Data: 03 -T98A8 053:641.800 - 0.626ms returns 1 (0x1) -T98A8 053:641.872 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:641.940 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 053:642.296 Data: 02 -T98A8 053:642.392 - 0.519ms returns 1 (0x1) -T98A8 053:642.456 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:642.520 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 053:642.964 Data: 01 -T98A8 053:643.056 - 0.598ms returns 1 (0x1) -T98A8 053:643.128 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:643.192 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 053:643.688 Data: 00 00 00 00 -T98A8 053:643.960 - 0.832ms returns 4 (0x4) -T98A8 053:644.208 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:644.344 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 053:644.808 Data: 00 -T98A8 053:644.968 - 0.761ms returns 1 (0x1) -T98A8 053:646.484 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 053:646.672 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 053:647.752 Data: 00 -T98A8 053:648.072 - 1.612ms returns 1 (0x1) -T98A8 053:648.872 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:649.012 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 053:649.404 Data: 10 CF 01 20 -T98A8 053:649.556 - 0.686ms returns 4 (0x4) -T98A8 053:649.748 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 053:649.852 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 053:650.256 Data: 49 CF 01 20 -T98A8 053:650.376 - 0.631ms returns 4 (0x4) -T358C 053:650.568 JLINK_IsHalted() -T358C 053:650.956 - 0.391ms returns FALSE -T358C 053:751.832 JLINK_HasError() -T358C 053:752.064 JLINK_IsHalted() -T358C 053:752.936 - 0.872ms returns FALSE -T358C 053:853.288 JLINK_HasError() -T358C 053:853.440 JLINK_IsHalted() -T358C 053:854.284 - 0.843ms returns FALSE -T358C 053:955.576 JLINK_HasError() -T358C 053:955.712 JLINK_IsHalted() -T358C 053:956.104 - 0.388ms returns FALSE -T358C 054:057.208 JLINK_HasError() -T358C 054:057.336 JLINK_IsHalted() -T358C 054:057.736 - 0.389ms returns FALSE -T358C 054:158.752 JLINK_HasError() -T358C 054:158.900 JLINK_HasError() -T358C 054:158.964 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 054:159.048 Data: F7 AE 0E 05 -T358C 054:159.144 Debug reg: DWT_CYCCNT -T358C 054:159.232 - 0.272ms returns 1 (0x1) -T98A8 054:159.660 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 054:160.000 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 054:160.972 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 054:161.112 - 1.458ms returns 25 (0x19) -T98A8 054:161.228 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:161.300 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 054:161.656 Data: 40 C4 01 20 -T98A8 054:161.752 - 0.527ms returns 4 (0x4) -T98A8 054:161.880 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:161.944 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 054:162.304 Data: 01 00 00 00 -T98A8 054:162.400 - 0.520ms returns 4 (0x4) -T98A8 054:162.476 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:162.540 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 054:162.936 Data: 00 00 00 00 -T98A8 054:163.040 - 0.559ms returns 4 (0x4) -T98A8 054:163.180 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:163.252 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 054:163.624 Data: 00 00 00 00 -T98A8 054:163.744 - 0.561ms returns 4 (0x4) -T98A8 054:163.832 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:163.896 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 054:164.280 Data: 03 -T98A8 054:164.384 - 0.552ms returns 1 (0x1) -T98A8 054:164.488 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:164.556 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 054:164.896 Data: 01 -T98A8 054:164.992 - 0.504ms returns 1 (0x1) -T98A8 054:165.056 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:165.120 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 054:165.460 Data: 03 -T98A8 054:165.576 - 0.514ms returns 1 (0x1) -T98A8 054:165.640 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:165.704 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 054:166.036 Data: 01 -T98A8 054:166.132 - 0.492ms returns 1 (0x1) -T98A8 054:166.196 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:166.260 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 054:166.592 Data: 03 -T98A8 054:166.728 - 0.534ms returns 1 (0x1) -T98A8 054:166.796 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:166.856 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 054:167.276 Data: 03 -T98A8 054:167.448 - 0.652ms returns 1 (0x1) -T98A8 054:167.540 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:167.624 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 054:167.992 Data: 02 -T98A8 054:168.104 - 0.560ms returns 1 (0x1) -T98A8 054:168.168 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:168.232 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 054:168.552 Data: 01 -T98A8 054:168.648 - 0.479ms returns 1 (0x1) -T98A8 054:168.712 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:168.824 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 054:169.352 Data: 00 00 00 00 -T98A8 054:169.472 - 0.762ms returns 4 (0x4) -T98A8 054:169.580 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:169.644 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 054:170.004 Data: 00 -T98A8 054:170.144 - 0.566ms returns 1 (0x1) -T98A8 054:171.368 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:171.468 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 054:172.544 Data: 00 -T98A8 054:173.172 - 1.802ms returns 1 (0x1) -T98A8 054:173.952 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:174.068 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 054:175.048 Data: 10 CF 01 20 -T98A8 054:175.176 - 1.226ms returns 4 (0x4) -T98A8 054:175.276 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:175.348 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 054:175.692 Data: 49 CF 01 20 -T98A8 054:175.796 - 0.516ms returns 4 (0x4) -T358C 054:175.976 JLINK_IsHalted() -T358C 054:176.328 - 0.353ms returns FALSE -T358C 054:277.240 JLINK_HasError() -T358C 054:277.536 JLINK_IsHalted() -T358C 054:277.912 - 0.376ms returns FALSE -T358C 054:378.976 JLINK_HasError() -T358C 054:379.244 JLINK_IsHalted() -T358C 054:379.980 - 0.735ms returns FALSE -T358C 054:480.332 JLINK_HasError() -T358C 054:480.500 JLINK_IsHalted() -T358C 054:480.908 - 0.407ms returns FALSE -T358C 054:581.580 JLINK_HasError() -T358C 054:581.716 JLINK_IsHalted() -T358C 054:582.048 - 0.336ms returns FALSE -T358C 054:682.528 JLINK_HasError() -T358C 054:682.648 JLINK_HasError() -T358C 054:682.708 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 054:682.796 Data: F7 AE 0E 05 -T358C 054:682.888 Debug reg: DWT_CYCCNT -T358C 054:682.968 - 0.261ms returns 1 (0x1) -T98A8 054:684.056 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 054:684.212 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 054:684.788 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 054:684.920 - 0.862ms returns 25 (0x19) -T98A8 054:685.012 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:685.080 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 054:685.484 Data: 40 C4 01 20 -T98A8 054:685.612 - 0.604ms returns 4 (0x4) -T98A8 054:685.720 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:685.800 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 054:686.136 Data: 01 00 00 00 -T98A8 054:686.240 - 0.519ms returns 4 (0x4) -T98A8 054:686.328 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:686.392 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 054:686.740 Data: 00 00 00 00 -T98A8 054:686.892 - 0.561ms returns 4 (0x4) -T98A8 054:686.984 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:687.064 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 054:687.444 Data: 00 00 00 00 -T98A8 054:687.560 - 0.581ms returns 4 (0x4) -T98A8 054:687.672 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:687.764 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 054:688.204 Data: 03 -T98A8 054:688.352 - 0.675ms returns 1 (0x1) -T98A8 054:688.436 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:688.512 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 054:688.952 Data: 01 -T98A8 054:689.128 - 0.690ms returns 1 (0x1) -T98A8 054:689.204 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:689.272 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 054:689.652 Data: 03 -T98A8 054:689.812 - 0.604ms returns 1 (0x1) -T98A8 054:689.888 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:689.964 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 054:690.336 Data: 01 -T98A8 054:690.472 - 0.583ms returns 1 (0x1) -T98A8 054:690.548 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:690.612 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 054:690.968 Data: 03 -T98A8 054:691.176 - 0.628ms returns 1 (0x1) -T98A8 054:691.272 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:691.336 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 054:691.884 Data: 03 -T98A8 054:692.076 - 0.806ms returns 1 (0x1) -T98A8 054:692.152 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:692.216 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 054:692.632 Data: 02 -T98A8 054:692.852 - 0.696ms returns 1 (0x1) -T98A8 054:692.920 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:692.992 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 054:693.336 Data: 01 -T98A8 054:693.440 - 0.519ms returns 1 (0x1) -T98A8 054:693.512 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:693.576 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 054:693.920 Data: 00 00 00 00 -T98A8 054:694.016 - 0.508ms returns 4 (0x4) -T98A8 054:694.144 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:694.208 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 054:694.552 Data: 00 -T98A8 054:694.664 - 0.514ms returns 1 (0x1) -T98A8 054:695.692 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 054:695.788 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 054:696.192 Data: 00 -T98A8 054:696.392 - 0.696ms returns 1 (0x1) -T98A8 054:696.620 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:696.748 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 054:697.144 Data: 10 CF 01 20 -T98A8 054:697.280 - 0.660ms returns 4 (0x4) -T98A8 054:697.448 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 054:697.516 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 054:697.880 Data: 49 CF 01 20 -T98A8 054:698.040 - 0.596ms returns 4 (0x4) -T358C 054:698.312 JLINK_IsHalted() -T358C 054:698.656 - 0.345ms returns FALSE -T358C 054:800.168 JLINK_HasError() -T358C 054:800.376 JLINK_IsHalted() -T358C 054:800.800 - 0.425ms returns FALSE -T358C 054:902.028 JLINK_HasError() -T358C 054:902.240 JLINK_IsHalted() -T358C 054:902.712 - 0.472ms returns FALSE -T358C 055:004.148 JLINK_HasError() -T358C 055:004.360 JLINK_IsHalted() -T358C 055:004.760 - 0.401ms returns FALSE -T358C 055:105.416 JLINK_HasError() -T358C 055:105.588 JLINK_IsHalted() -T358C 055:106.072 - 0.483ms returns FALSE -T358C 055:206.868 JLINK_HasError() -T358C 055:207.028 JLINK_HasError() -T358C 055:207.096 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 055:207.188 Data: F7 AE 0E 05 -T358C 055:207.288 Debug reg: DWT_CYCCNT -T358C 055:207.404 - 0.306ms returns 1 (0x1) -T98A8 055:207.628 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 055:207.768 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 055:208.416 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 055:208.532 - 0.908ms returns 25 (0x19) -T98A8 055:208.648 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:208.724 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 055:209.088 Data: 40 C4 01 20 -T98A8 055:209.248 - 0.601ms returns 4 (0x4) -T98A8 055:209.396 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:209.504 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 055:209.900 Data: 01 00 00 00 -T98A8 055:210.004 - 0.607ms returns 4 (0x4) -T98A8 055:210.088 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:210.152 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 055:210.584 Data: 00 00 00 00 -T98A8 055:210.688 - 0.602ms returns 4 (0x4) -T98A8 055:210.824 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:210.900 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 055:211.240 Data: 00 00 00 00 -T98A8 055:211.336 - 0.512ms returns 4 (0x4) -T98A8 055:211.424 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:211.488 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 055:211.828 Data: 03 -T98A8 055:211.948 - 0.521ms returns 1 (0x1) -T98A8 055:212.020 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:212.084 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 055:212.456 Data: 01 -T98A8 055:212.576 - 0.558ms returns 1 (0x1) -T98A8 055:212.652 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:212.724 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 055:213.056 Data: 03 -T98A8 055:213.152 - 0.498ms returns 1 (0x1) -T98A8 055:213.216 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:213.280 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 055:213.620 Data: 01 -T98A8 055:213.716 - 0.496ms returns 1 (0x1) -T98A8 055:213.780 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:213.844 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 055:214.184 Data: 03 -T98A8 055:214.280 - 0.498ms returns 1 (0x1) -T98A8 055:214.344 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:214.408 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 055:214.744 Data: 03 -T98A8 055:214.848 - 0.502ms returns 1 (0x1) -T98A8 055:214.912 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:214.968 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 055:215.348 Data: 02 -T98A8 055:215.448 - 0.541ms returns 1 (0x1) -T98A8 055:215.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:215.576 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 055:215.944 Data: 01 -T98A8 055:216.032 - 0.514ms returns 1 (0x1) -T98A8 055:216.096 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:216.160 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 055:216.492 Data: 00 00 00 00 -T98A8 055:216.588 - 0.490ms returns 4 (0x4) -T98A8 055:216.684 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:216.760 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 055:217.080 Data: 00 -T98A8 055:217.176 - 0.494ms returns 1 (0x1) -T98A8 055:218.324 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:218.420 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 055:218.968 Data: 00 -T98A8 055:219.104 - 0.785ms returns 1 (0x1) -T98A8 055:219.688 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:219.828 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 055:220.184 Data: 10 CF 01 20 -T98A8 055:220.320 - 0.636ms returns 4 (0x4) -T98A8 055:220.436 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:220.536 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 055:220.968 Data: 49 CF 01 20 -T98A8 055:221.100 - 0.668ms returns 4 (0x4) -T358C 055:221.396 JLINK_IsHalted() -T358C 055:221.752 - 0.357ms returns FALSE -T358C 055:322.484 JLINK_HasError() -T358C 055:322.696 JLINK_IsHalted() -T358C 055:323.144 - 0.448ms returns FALSE -T358C 055:423.768 JLINK_HasError() -T358C 055:423.928 JLINK_IsHalted() -T358C 055:424.384 - 0.451ms returns FALSE -T358C 055:525.876 JLINK_HasError() -T358C 055:526.016 JLINK_IsHalted() -T358C 055:526.412 - 0.392ms returns FALSE -T98A8 055:586.176 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:586.328 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 055:586.836 Data: 80 56 43 BC -T98A8 055:587.092 - 0.919ms returns 4 (0x4) -T98A8 055:587.252 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:587.416 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 055:588.152 Data: 00 00 00 00 -T98A8 055:588.276 - 1.023ms returns 4 (0x4) -T98A8 055:588.440 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:588.504 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 055:588.972 Data: 80 56 43 BC -T98A8 055:589.612 - 1.164ms returns 4 (0x4) -T98A8 055:590.216 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:590.388 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 055:591.232 Data: 00 00 00 00 -T98A8 055:591.360 - 1.146ms returns 4 (0x4) -T98A8 055:611.796 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:611.976 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 055:612.532 Data: 80 56 43 BC -T98A8 055:612.800 - 1.010ms returns 4 (0x4) -T98A8 055:613.000 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:613.132 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 055:613.600 Data: 00 00 00 00 -T98A8 055:613.728 - 0.727ms returns 4 (0x4) -T358C 055:627.456 JLINK_HasError() -T358C 055:627.604 JLINK_IsHalted() -T358C 055:628.020 - 0.410ms returns FALSE -T358C 055:728.184 JLINK_HasError() -T358C 055:728.384 JLINK_HasError() -T358C 055:728.456 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 055:728.552 Data: F7 AE 0E 05 -T358C 055:728.652 Debug reg: DWT_CYCCNT -T358C 055:728.768 - 0.311ms returns 1 (0x1) -T98A8 055:729.112 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 055:729.248 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 055:729.848 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 055:729.952 - 0.836ms returns 25 (0x19) -T98A8 055:730.048 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:730.120 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 055:730.536 Data: 40 C4 01 20 -T98A8 055:730.644 - 0.596ms returns 4 (0x4) -T98A8 055:730.836 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:730.912 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 055:731.272 Data: 01 00 00 00 -T98A8 055:731.368 - 0.530ms returns 4 (0x4) -T98A8 055:731.448 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:731.520 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 055:731.864 Data: 00 00 00 00 -T98A8 055:732.024 - 0.571ms returns 4 (0x4) -T98A8 055:732.116 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:732.204 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 055:732.584 Data: 00 00 00 00 -T98A8 055:732.712 - 0.594ms returns 4 (0x4) -T98A8 055:732.820 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:732.896 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 055:733.272 Data: 80 56 43 BC -T98A8 055:733.396 - 0.581ms returns 4 (0x4) -T98A8 055:733.480 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:733.548 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 055:733.908 Data: 00 00 00 00 -T98A8 055:734.004 - 0.523ms returns 4 (0x4) -T98A8 055:734.092 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:734.156 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 055:734.520 Data: 03 -T98A8 055:734.616 - 0.527ms returns 1 (0x1) -T98A8 055:734.688 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:734.752 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 055:735.144 Data: 01 -T98A8 055:735.276 - 0.585ms returns 1 (0x1) -T98A8 055:735.348 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:735.412 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 055:735.756 Data: 03 -T98A8 055:735.884 - 0.541ms returns 1 (0x1) -T98A8 055:735.956 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:736.024 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 055:736.384 Data: 01 -T98A8 055:736.520 - 0.560ms returns 1 (0x1) -T98A8 055:736.588 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:736.652 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 055:737.016 Data: 03 -T98A8 055:737.140 - 0.554ms returns 1 (0x1) -T98A8 055:737.208 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:737.280 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 055:737.632 Data: 03 -T98A8 055:737.728 - 0.516ms returns 1 (0x1) -T98A8 055:737.804 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:737.908 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 055:738.264 Data: 02 -T98A8 055:738.456 - 0.655ms returns 1 (0x1) -T98A8 055:738.584 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:738.668 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 055:739.156 Data: 01 -T98A8 055:739.276 - 0.690ms returns 1 (0x1) -T98A8 055:739.348 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:739.412 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 055:739.784 Data: 00 00 00 00 -T98A8 055:739.896 - 0.552ms returns 4 (0x4) -T98A8 055:740.008 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:740.072 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 055:740.552 Data: 00 -T98A8 055:740.692 - 0.685ms returns 1 (0x1) -T98A8 055:741.652 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 055:741.748 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 055:742.132 Data: 00 -T98A8 055:742.260 - 0.609ms returns 1 (0x1) -T98A8 055:742.412 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:742.484 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 055:742.848 Data: 10 CF 01 20 -T98A8 055:743.000 - 0.586ms returns 4 (0x4) -T98A8 055:743.124 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 055:743.208 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 055:743.596 Data: 49 CF 01 20 -T98A8 055:743.724 - 0.605ms returns 4 (0x4) -T358C 055:743.896 JLINK_IsHalted() -T358C 055:744.232 - 0.328ms returns FALSE -T358C 055:844.916 JLINK_HasError() -T358C 055:845.192 JLINK_IsHalted() -T358C 055:845.728 - 0.539ms returns FALSE -T358C 055:946.040 JLINK_HasError() -T358C 055:946.220 JLINK_IsHalted() -T358C 055:946.816 - 0.593ms returns FALSE -T358C 056:047.948 JLINK_HasError() -T358C 056:048.108 JLINK_IsHalted() -T358C 056:048.544 - 0.433ms returns FALSE -T358C 056:149.388 JLINK_HasError() -T358C 056:149.588 JLINK_IsHalted() -T358C 056:150.040 - 0.452ms returns FALSE -T358C 056:251.116 JLINK_HasError() -T358C 056:251.464 JLINK_HasError() -T358C 056:251.584 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 056:251.736 Data: F7 AE 0E 05 -T358C 056:251.916 Debug reg: DWT_CYCCNT -T358C 056:252.084 - 0.498ms returns 1 (0x1) -T98A8 056:252.552 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 056:252.808 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 056:253.452 Data: 0F 60 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 056:253.576 - 1.030ms returns 25 (0x19) -T98A8 056:255.916 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:256.052 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 056:256.520 Data: 40 C4 01 20 -T98A8 056:256.640 - 0.723ms returns 4 (0x4) -T98A8 056:256.904 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:256.992 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 056:257.416 Data: 01 00 00 00 -T98A8 056:257.524 - 0.619ms returns 4 (0x4) -T98A8 056:257.620 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:257.684 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 056:258.048 Data: F8 80 12 3E -T98A8 056:258.144 - 0.529ms returns 4 (0x4) -T98A8 056:258.676 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:258.772 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 056:259.180 Data: 00 00 00 00 -T98A8 056:259.284 - 0.609ms returns 4 (0x4) -T98A8 056:259.392 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:259.464 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 056:259.832 Data: 80 56 43 BC -T98A8 056:259.936 - 0.541ms returns 4 (0x4) -T98A8 056:260.008 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:260.072 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 056:260.596 Data: 00 00 00 00 -T98A8 056:260.884 - 0.873ms returns 4 (0x4) -T98A8 056:261.032 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:261.164 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 056:261.624 Data: 03 -T98A8 056:261.760 - 0.734ms returns 1 (0x1) -T98A8 056:261.836 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:261.908 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 056:262.312 Data: 01 -T98A8 056:262.440 - 0.600ms returns 1 (0x1) -T98A8 056:262.508 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:262.592 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 056:262.968 Data: 03 -T98A8 056:263.096 - 0.587ms returns 1 (0x1) -T98A8 056:263.180 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:263.256 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 056:263.608 Data: 01 -T98A8 056:263.720 - 0.540ms returns 1 (0x1) -T98A8 056:263.788 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:263.852 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 056:264.192 Data: 03 -T98A8 056:264.296 - 0.501ms returns 1 (0x1) -T98A8 056:264.360 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:264.424 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 056:264.776 Data: 03 -T98A8 056:264.872 - 0.511ms returns 1 (0x1) -T98A8 056:264.940 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:265.004 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 056:265.400 Data: 02 -T98A8 056:265.496 - 0.559ms returns 1 (0x1) -T98A8 056:265.568 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:265.632 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 056:266.080 Data: 01 -T98A8 056:266.248 - 0.676ms returns 1 (0x1) -T98A8 056:266.336 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:266.420 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 056:266.808 Data: 00 00 00 00 -T98A8 056:266.932 - 0.595ms returns 4 (0x4) -T98A8 056:267.128 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:267.200 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 056:267.584 Data: 00 -T98A8 056:267.704 - 0.573ms returns 1 (0x1) -T98A8 056:268.736 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:268.840 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 056:269.208 Data: 00 -T98A8 056:269.352 - 0.614ms returns 1 (0x1) -T98A8 056:269.528 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:269.608 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 056:270.028 Data: 10 CF 01 20 -T98A8 056:270.136 - 0.608ms returns 4 (0x4) -T98A8 056:270.232 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:270.304 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 056:270.720 Data: 49 CF 01 20 -T98A8 056:270.888 - 0.651ms returns 4 (0x4) -T358C 056:271.064 JLINK_IsHalted() -T358C 056:271.512 - 0.444ms returns FALSE -T358C 056:372.448 JLINK_HasError() -T358C 056:372.608 JLINK_IsHalted() -T358C 056:373.128 - 0.514ms returns FALSE -T358C 056:473.920 JLINK_HasError() -T358C 056:474.104 JLINK_IsHalted() -T358C 056:474.504 - 0.394ms returns FALSE -T358C 056:575.604 JLINK_HasError() -T358C 056:575.864 JLINK_IsHalted() -T358C 056:576.376 - 0.515ms returns FALSE -T358C 056:676.684 JLINK_HasError() -T358C 056:676.844 JLINK_IsHalted() -T358C 056:677.248 - 0.399ms returns FALSE -T358C 056:778.188 JLINK_HasError() -T358C 056:778.376 JLINK_HasError() -T358C 056:778.440 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 056:778.536 Data: F7 AE 0E 05 -T358C 056:778.616 Debug reg: DWT_CYCCNT -T358C 056:778.700 - 0.262ms returns 1 (0x1) -T98A8 056:779.016 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 056:779.160 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 056:779.872 Data: 0F 21 0D 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 056:780.056 - 1.047ms returns 25 (0x19) -T98A8 056:782.880 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:783.020 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 056:783.464 Data: 40 C4 01 20 -T98A8 056:783.592 - 0.713ms returns 4 (0x4) -T98A8 056:783.776 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:783.852 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 056:784.248 Data: 01 00 00 00 -T98A8 056:784.456 - 0.678ms returns 4 (0x4) -T98A8 056:784.600 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:784.812 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 056:785.192 Data: C4 84 DC 3E -T98A8 056:785.320 - 0.713ms returns 4 (0x4) -T98A8 056:785.856 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:785.952 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 056:786.336 Data: 00 00 00 00 -T98A8 056:786.464 - 0.608ms returns 4 (0x4) -T98A8 056:786.560 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:786.648 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 056:787.048 Data: 80 56 43 BC -T98A8 056:787.264 - 0.704ms returns 4 (0x4) -T98A8 056:787.352 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:787.432 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 056:787.988 Data: 00 00 00 00 -T98A8 056:788.120 - 0.769ms returns 4 (0x4) -T98A8 056:788.248 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:788.340 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 056:789.568 Data: 03 -T98A8 056:790.312 - 2.051ms returns 1 (0x1) -T98A8 056:790.456 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:790.536 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 056:790.920 Data: 01 -T98A8 056:791.052 - 0.600ms returns 1 (0x1) -T98A8 056:791.128 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:791.192 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 056:791.596 Data: 03 -T98A8 056:791.720 - 0.588ms returns 1 (0x1) -T98A8 056:791.788 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:791.852 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 056:792.212 Data: 01 -T98A8 056:792.364 - 0.574ms returns 1 (0x1) -T98A8 056:792.520 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:792.608 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 056:793.068 Data: 03 -T98A8 056:793.260 - 0.741ms returns 1 (0x1) -T98A8 056:793.376 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:793.512 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 056:794.368 Data: 03 -T98A8 056:794.536 - 1.159ms returns 1 (0x1) -T98A8 056:794.644 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:794.728 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 056:795.092 Data: 02 -T98A8 056:795.296 - 0.654ms returns 1 (0x1) -T98A8 056:795.412 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:795.528 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 056:796.640 Data: 01 -T98A8 056:796.788 - 1.371ms returns 1 (0x1) -T98A8 056:796.872 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:797.000 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 056:797.472 Data: 00 00 00 00 -T98A8 056:797.600 - 0.728ms returns 4 (0x4) -T98A8 056:797.760 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:797.824 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 056:798.836 Data: 00 -T98A8 056:799.028 - 1.268ms returns 1 (0x1) -T98A8 056:800.456 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 056:800.568 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 056:800.980 Data: 00 -T98A8 056:801.160 - 0.703ms returns 1 (0x1) -T98A8 056:801.388 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:801.504 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 056:801.896 Data: 10 CF 01 20 -T98A8 056:802.016 - 0.629ms returns 4 (0x4) -T98A8 056:802.136 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 056:802.240 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 056:802.624 Data: 49 CF 01 20 -T98A8 056:802.752 - 0.618ms returns 4 (0x4) -T358C 056:802.964 JLINK_IsHalted() -T358C 056:803.444 - 0.482ms returns FALSE -T358C 056:903.636 JLINK_HasError() -T358C 056:903.788 JLINK_IsHalted() -T358C 056:904.308 - 0.515ms returns FALSE -T358C 057:005.472 JLINK_HasError() -T358C 057:005.708 JLINK_IsHalted() -T358C 057:006.200 - 0.485ms returns FALSE -T358C 057:107.256 JLINK_HasError() -T358C 057:107.444 JLINK_IsHalted() -T358C 057:107.948 - 0.497ms returns FALSE -T358C 057:209.080 JLINK_HasError() -T358C 057:209.352 JLINK_IsHalted() -T358C 057:210.612 - 1.258ms returns FALSE -T358C 057:311.424 JLINK_HasError() -T358C 057:311.628 JLINK_HasError() -T358C 057:311.692 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 057:311.784 Data: F7 AE 0E 05 -T358C 057:311.880 Debug reg: DWT_CYCCNT -T358C 057:311.968 - 0.273ms returns 1 (0x1) -T98A8 057:312.364 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 057:312.512 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 057:313.560 Data: 0F 00 5C 27 00 EB 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 057:313.704 - 1.342ms returns 25 (0x19) -T98A8 057:316.032 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:316.128 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 057:316.536 Data: 40 C4 01 20 -T98A8 057:316.712 - 0.681ms returns 4 (0x4) -T98A8 057:316.856 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:316.940 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 057:317.336 Data: 01 00 00 00 -T98A8 057:317.452 - 0.594ms returns 4 (0x4) -T98A8 057:317.556 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:317.736 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 057:318.284 Data: 00 00 00 00 -T98A8 057:318.444 - 0.890ms returns 4 (0x4) -T98A8 057:318.880 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:318.968 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 057:319.320 Data: 00 00 00 00 -T98A8 057:319.444 - 0.563ms returns 4 (0x4) -T98A8 057:319.540 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:319.604 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 057:320.072 Data: 80 4B 86 BC -T98A8 057:320.212 - 0.676ms returns 4 (0x4) -T98A8 057:320.660 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:320.760 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 057:321.176 Data: 80 50 B3 3E -T98A8 057:321.272 - 0.619ms returns 4 (0x4) -T98A8 057:321.640 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:321.728 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 057:322.260 Data: 03 -T98A8 057:322.580 - 0.935ms returns 1 (0x1) -T98A8 057:322.976 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:323.296 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 057:324.128 Data: 01 -T98A8 057:324.264 - 1.294ms returns 1 (0x1) -T98A8 057:324.340 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:324.404 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 057:324.756 Data: 03 -T98A8 057:324.872 - 0.533ms returns 1 (0x1) -T98A8 057:324.940 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:325.004 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 057:325.376 Data: 01 -T98A8 057:325.472 - 0.531ms returns 1 (0x1) -T98A8 057:325.536 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:325.600 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 057:326.024 Data: 03 -T98A8 057:326.120 - 0.581ms returns 1 (0x1) -T98A8 057:326.184 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:326.248 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 057:326.668 Data: 03 -T98A8 057:326.764 - 0.581ms returns 1 (0x1) -T98A8 057:326.840 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:326.904 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 057:327.328 Data: 02 -T98A8 057:327.416 - 0.579ms returns 1 (0x1) -T98A8 057:327.496 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:327.560 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 057:327.916 Data: 01 -T98A8 057:328.008 - 0.512ms returns 1 (0x1) -T98A8 057:328.076 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:328.140 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 057:328.504 Data: 00 00 00 00 -T98A8 057:328.596 - 0.519ms returns 4 (0x4) -T98A8 057:329.000 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:329.076 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 057:329.492 Data: 00 -T98A8 057:329.588 - 0.586ms returns 1 (0x1) -T98A8 057:330.296 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:330.400 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 057:330.792 Data: 00 -T98A8 057:330.988 - 0.694ms returns 1 (0x1) -T98A8 057:331.148 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:331.240 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 057:331.752 Data: 10 CF 01 20 -T98A8 057:331.860 - 0.712ms returns 4 (0x4) -T98A8 057:331.956 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:332.024 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 057:332.500 Data: 49 CF 01 20 -T98A8 057:332.672 - 0.716ms returns 4 (0x4) -T358C 057:332.920 JLINK_IsHalted() -T358C 057:333.312 - 0.390ms returns FALSE -T358C 057:433.804 JLINK_HasError() -T358C 057:433.976 JLINK_IsHalted() -T358C 057:434.624 - 0.641ms returns FALSE -T358C 057:535.092 JLINK_HasError() -T358C 057:535.340 JLINK_IsHalted() -T358C 057:535.852 - 0.510ms returns FALSE -T358C 057:637.208 JLINK_HasError() -T358C 057:637.420 JLINK_IsHalted() -T358C 057:637.816 - 0.400ms returns FALSE -T358C 057:739.220 JLINK_HasError() -T358C 057:739.368 JLINK_IsHalted() -T358C 057:739.752 - 0.383ms returns FALSE -T358C 057:841.076 JLINK_HasError() -T358C 057:841.312 JLINK_HasError() -T358C 057:841.428 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 057:841.560 Data: F7 AE 0E 05 -T358C 057:841.728 Debug reg: DWT_CYCCNT -T358C 057:841.896 - 0.467ms returns 1 (0x1) -T98A8 057:842.348 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 057:842.488 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 057:843.080 Data: 0F 00 14 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 057:843.212 - 0.866ms returns 25 (0x19) -T98A8 057:843.316 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:843.384 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 057:843.732 Data: 40 C4 01 20 -T98A8 057:843.864 - 0.552ms returns 4 (0x4) -T98A8 057:844.008 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:844.084 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 057:844.424 Data: 01 00 00 00 -T98A8 057:844.588 - 0.582ms returns 4 (0x4) -T98A8 057:844.692 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:844.768 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 057:845.144 Data: 00 00 00 00 -T98A8 057:845.260 - 0.567ms returns 4 (0x4) -T98A8 057:845.996 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:846.092 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 057:846.580 Data: 00 00 00 00 -T98A8 057:846.708 - 0.714ms returns 4 (0x4) -T98A8 057:846.828 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:846.920 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 057:847.320 Data: 80 56 43 BC -T98A8 057:847.444 - 0.615ms returns 4 (0x4) -T98A8 057:849.260 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:849.352 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 057:849.780 Data: 00 00 00 00 -T98A8 057:849.928 - 0.669ms returns 4 (0x4) -T98A8 057:850.336 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:850.440 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 057:850.868 Data: 03 -T98A8 057:851.016 - 0.682ms returns 1 (0x1) -T98A8 057:851.096 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:851.168 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 057:851.592 Data: 01 -T98A8 057:851.736 - 0.639ms returns 1 (0x1) -T98A8 057:851.816 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:851.892 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 057:852.364 Data: 03 -T98A8 057:852.512 - 0.697ms returns 1 (0x1) -T98A8 057:852.596 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:852.664 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 057:853.160 Data: 01 -T98A8 057:853.364 - 0.768ms returns 1 (0x1) -T98A8 057:853.484 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:853.560 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 057:853.964 Data: 03 -T98A8 057:854.080 - 0.600ms returns 1 (0x1) -T98A8 057:854.152 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:854.216 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 057:854.560 Data: 03 -T98A8 057:854.708 - 0.560ms returns 1 (0x1) -T98A8 057:854.804 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:854.888 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 057:855.288 Data: 02 -T98A8 057:855.500 - 0.696ms returns 1 (0x1) -T98A8 057:855.572 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:855.636 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 057:856.052 Data: 01 -T98A8 057:856.200 - 0.626ms returns 1 (0x1) -T98A8 057:856.268 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:856.340 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 057:857.196 Data: 00 00 00 00 -T98A8 057:857.408 - 1.141ms returns 4 (0x4) -T98A8 057:857.632 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:857.704 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 057:858.664 Data: 00 -T98A8 057:858.836 - 1.205ms returns 1 (0x1) -T98A8 057:859.944 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 057:860.052 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 057:860.416 Data: 00 -T98A8 057:860.532 - 0.589ms returns 1 (0x1) -T98A8 057:860.684 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:860.756 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 057:861.120 Data: 10 CF 01 20 -T98A8 057:861.216 - 0.533ms returns 4 (0x4) -T98A8 057:861.312 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 057:861.376 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 057:861.736 Data: 49 CF 01 20 -T98A8 057:861.856 - 0.550ms returns 4 (0x4) -T358C 057:862.040 JLINK_IsHalted() -T358C 057:862.388 - 0.347ms returns FALSE -T358C 057:963.488 JLINK_HasError() -T358C 057:963.704 JLINK_IsHalted() -T358C 057:964.168 - 0.452ms returns FALSE -T358C 058:064.440 JLINK_HasError() -T358C 058:064.792 JLINK_IsHalted() -T358C 058:065.384 - 0.585ms returns FALSE -T358C 058:165.812 JLINK_HasError() -T358C 058:166.024 JLINK_IsHalted() -T358C 058:166.956 - 0.933ms returns FALSE -T358C 058:267.328 JLINK_HasError() -T358C 058:267.540 JLINK_IsHalted() -T358C 058:268.448 - 0.909ms returns FALSE -T358C 058:368.844 JLINK_HasError() -T358C 058:369.128 JLINK_HasError() -T358C 058:369.240 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 058:369.384 Data: F7 AE 0E 05 -T358C 058:369.548 Debug reg: DWT_CYCCNT -T358C 058:369.716 - 0.468ms returns 1 (0x1) -T98A8 058:370.220 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 058:370.464 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 058:371.284 Data: 0F 32 14 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 058:371.456 - 1.239ms returns 25 (0x19) -T98A8 058:373.736 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:373.844 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 058:374.324 Data: 40 C4 01 20 -T98A8 058:374.456 - 0.724ms returns 4 (0x4) -T98A8 058:374.592 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:374.664 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 058:375.200 Data: 01 00 00 00 -T98A8 058:375.508 - 0.912ms returns 4 (0x4) -T98A8 058:375.756 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:375.904 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 058:376.372 Data: B0 9B 98 3D -T98A8 058:376.500 - 0.747ms returns 4 (0x4) -T98A8 058:376.952 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:377.048 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 058:377.472 Data: 00 00 00 00 -T98A8 058:377.780 - 0.826ms returns 4 (0x4) -T98A8 058:377.964 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:378.112 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 058:378.580 Data: 80 56 43 BC -T98A8 058:378.708 - 0.740ms returns 4 (0x4) -T98A8 058:379.144 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:379.252 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 058:379.636 Data: 00 00 00 00 -T98A8 058:379.752 - 0.607ms returns 4 (0x4) -T98A8 058:380.096 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:380.184 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 058:380.564 Data: 03 -T98A8 058:380.680 - 0.584ms returns 1 (0x1) -T98A8 058:380.760 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:380.832 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 058:381.172 Data: 01 -T98A8 058:381.272 - 0.508ms returns 1 (0x1) -T98A8 058:381.336 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:381.408 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 058:381.748 Data: 03 -T98A8 058:381.848 - 0.510ms returns 1 (0x1) -T98A8 058:381.912 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:381.976 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 058:382.312 Data: 01 -T98A8 058:382.400 - 0.488ms returns 1 (0x1) -T98A8 058:382.476 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:382.540 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 058:382.880 Data: 03 -T98A8 058:382.988 - 0.509ms returns 1 (0x1) -T98A8 058:383.060 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:383.124 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 058:383.456 Data: 03 -T98A8 058:383.552 - 0.492ms returns 1 (0x1) -T98A8 058:383.616 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:383.688 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 058:384.052 Data: 02 -T98A8 058:384.212 - 0.593ms returns 1 (0x1) -T98A8 058:384.296 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:384.372 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 058:384.808 Data: 01 -T98A8 058:384.940 - 0.644ms returns 1 (0x1) -T98A8 058:385.012 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:385.076 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 058:385.472 Data: 00 00 00 00 -T98A8 058:385.640 - 0.625ms returns 4 (0x4) -T98A8 058:385.784 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:385.932 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 058:386.440 Data: 00 -T98A8 058:386.580 - 0.792ms returns 1 (0x1) -T98A8 058:387.284 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:387.384 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 058:387.764 Data: 00 -T98A8 058:387.892 - 0.611ms returns 1 (0x1) -T98A8 058:388.044 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:388.116 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 058:388.568 Data: 10 CF 01 20 -T98A8 058:388.724 - 0.677ms returns 4 (0x4) -T98A8 058:388.852 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:388.936 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 058:389.312 Data: 49 CF 01 20 -T98A8 058:389.416 - 0.563ms returns 4 (0x4) -T358C 058:389.592 JLINK_IsHalted() -T358C 058:390.036 - 0.441ms returns FALSE -T358C 058:490.400 JLINK_HasError() -T358C 058:490.592 JLINK_IsHalted() -T358C 058:491.392 - 0.797ms returns FALSE -T358C 058:592.120 JLINK_HasError() -T358C 058:592.308 JLINK_IsHalted() -T358C 058:592.724 - 0.412ms returns FALSE -T358C 058:693.480 JLINK_HasError() -T358C 058:693.632 JLINK_IsHalted() -T358C 058:694.072 - 0.438ms returns FALSE -T358C 058:794.376 JLINK_HasError() -T358C 058:794.540 JLINK_IsHalted() -T358C 058:794.956 - 0.414ms returns FALSE -T358C 058:895.124 JLINK_HasError() -T358C 058:895.252 JLINK_HasError() -T358C 058:895.360 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 058:895.444 Data: F7 AE 0E 05 -T358C 058:895.528 Debug reg: DWT_CYCCNT -T358C 058:895.608 - 0.248ms returns 1 (0x1) -T98A8 058:895.904 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 058:896.024 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 058:896.632 Data: 0F E9 3C 23 00 0D 05 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 058:896.780 - 0.876ms returns 25 (0x19) -T98A8 058:899.488 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:899.608 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 058:899.992 Data: 40 C4 01 20 -T98A8 058:900.148 - 0.661ms returns 4 (0x4) -T98A8 058:900.288 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:900.384 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 058:900.824 Data: 01 00 00 00 -T98A8 058:900.928 - 0.637ms returns 4 (0x4) -T98A8 058:901.012 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:901.080 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 058:901.440 Data: D4 C9 B1 3E -T98A8 058:901.588 - 0.575ms returns 4 (0x4) -T98A8 058:902.028 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:902.120 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 058:902.472 Data: 00 00 00 00 -T98A8 058:902.568 - 0.542ms returns 4 (0x4) -T98A8 058:902.656 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:902.720 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 058:903.052 Data: F0 36 10 BF -T98A8 058:903.176 - 0.518ms returns 4 (0x4) -T98A8 058:903.624 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:903.724 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 058:904.096 Data: B0 2F 1D 3E -T98A8 058:904.216 - 0.599ms returns 4 (0x4) -T98A8 058:904.664 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:904.768 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 058:905.192 Data: 03 -T98A8 058:905.336 - 0.672ms returns 1 (0x1) -T98A8 058:905.416 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:905.480 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 058:905.836 Data: 01 -T98A8 058:905.944 - 0.533ms returns 1 (0x1) -T98A8 058:906.016 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:906.124 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 058:906.472 Data: 03 -T98A8 058:906.584 - 0.572ms returns 1 (0x1) -T98A8 058:906.664 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:906.728 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 058:907.084 Data: 01 -T98A8 058:907.212 - 0.550ms returns 1 (0x1) -T98A8 058:907.284 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:907.360 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 058:907.712 Data: 03 -T98A8 058:907.820 - 0.536ms returns 1 (0x1) -T98A8 058:907.884 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:907.948 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 058:908.312 Data: 03 -T98A8 058:908.448 - 0.563ms returns 1 (0x1) -T98A8 058:908.532 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:908.616 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 058:908.972 Data: 02 -T98A8 058:909.068 - 0.534ms returns 1 (0x1) -T98A8 058:909.132 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:909.196 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 058:909.580 Data: 01 -T98A8 058:909.684 - 0.550ms returns 1 (0x1) -T98A8 058:909.752 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:909.812 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 058:910.164 Data: 00 00 00 00 -T98A8 058:910.252 - 0.503ms returns 4 (0x4) -T98A8 058:910.376 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:910.432 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 058:910.776 Data: 00 -T98A8 058:910.872 - 0.503ms returns 1 (0x1) -T98A8 058:911.628 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 058:911.724 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 058:912.072 Data: 00 -T98A8 058:912.172 - 0.547ms returns 1 (0x1) -T98A8 058:912.312 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:912.384 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 058:912.736 Data: 10 CF 01 20 -T98A8 058:912.832 - 0.517ms returns 4 (0x4) -T98A8 058:912.920 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 058:912.984 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 058:913.432 Data: 49 CF 01 20 -T98A8 058:913.656 - 0.735ms returns 4 (0x4) -T358C 058:913.992 JLINK_IsHalted() -T358C 058:914.420 - 0.426ms returns FALSE -T358C 059:015.464 JLINK_HasError() -T358C 059:015.660 JLINK_IsHalted() -T358C 059:016.056 - 0.394ms returns FALSE -T358C 059:116.832 JLINK_HasError() -T358C 059:116.980 JLINK_IsHalted() -T358C 059:117.356 - 0.376ms returns FALSE -T358C 059:218.004 JLINK_HasError() -T358C 059:218.136 JLINK_IsHalted() -T358C 059:218.632 - 0.489ms returns FALSE -T358C 059:319.264 JLINK_HasError() -T358C 059:319.416 JLINK_IsHalted() -T358C 059:319.852 - 0.437ms returns FALSE -T358C 059:420.788 JLINK_HasError() -T358C 059:420.952 JLINK_HasError() -T358C 059:421.024 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 059:421.112 Data: F7 AE 0E 05 -T358C 059:421.208 Debug reg: DWT_CYCCNT -T358C 059:421.304 - 0.280ms returns 1 (0x1) -T98A8 059:421.556 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 059:421.760 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 059:422.400 Data: 0F 9F 16 E0 05 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 059:422.552 - 0.999ms returns 25 (0x19) -T98A8 059:462.664 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:462.848 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 059:463.316 Data: 40 C4 01 20 -T98A8 059:463.540 - 0.877ms returns 4 (0x4) -T98A8 059:463.692 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:463.768 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 059:464.812 Data: 01 00 00 00 -T98A8 059:464.940 - 1.247ms returns 4 (0x4) -T98A8 059:465.032 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:465.100 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 059:465.440 Data: 00 00 80 3F -T98A8 059:465.588 - 0.552ms returns 4 (0x4) -T98A8 059:465.976 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:466.072 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 059:466.424 Data: 00 00 00 00 -T98A8 059:466.560 - 0.580ms returns 4 (0x4) -T98A8 059:466.656 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:466.732 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 059:467.112 Data: 80 56 43 BC -T98A8 059:467.256 - 0.598ms returns 4 (0x4) -T98A8 059:467.756 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:467.864 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 059:468.244 Data: 00 00 00 00 -T98A8 059:468.472 - 0.718ms returns 4 (0x4) -T98A8 059:469.736 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:469.836 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 059:470.188 Data: 03 -T98A8 059:470.312 - 0.576ms returns 1 (0x1) -T98A8 059:470.388 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:470.452 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 059:470.796 Data: 01 -T98A8 059:470.912 - 0.530ms returns 1 (0x1) -T98A8 059:470.984 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:471.048 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 059:471.988 Data: 03 -T98A8 059:472.204 - 1.219ms returns 1 (0x1) -T98A8 059:472.360 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:472.472 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 059:472.908 Data: 01 -T98A8 059:473.056 - 0.695ms returns 1 (0x1) -T98A8 059:473.144 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:473.240 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 059:473.672 Data: 03 -T98A8 059:473.792 - 0.648ms returns 1 (0x1) -T98A8 059:473.864 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:473.932 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 059:474.264 Data: 03 -T98A8 059:474.368 - 0.504ms returns 1 (0x1) -T98A8 059:474.440 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:474.504 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 059:474.856 Data: 02 -T98A8 059:475.028 - 0.588ms returns 1 (0x1) -T98A8 059:475.200 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:475.288 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 059:475.680 Data: 01 -T98A8 059:475.816 - 0.615ms returns 1 (0x1) -T98A8 059:475.884 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:475.956 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 059:476.296 Data: 00 00 00 00 -T98A8 059:476.396 - 0.506ms returns 4 (0x4) -T98A8 059:476.532 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:476.596 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 059:476.952 Data: 00 -T98A8 059:477.076 - 0.540ms returns 1 (0x1) -T98A8 059:477.864 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:477.960 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 059:478.316 Data: 00 -T98A8 059:478.452 - 0.587ms returns 1 (0x1) -T98A8 059:478.604 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:478.668 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 059:479.048 Data: 10 CF 01 20 -T98A8 059:479.148 - 0.548ms returns 4 (0x4) -T98A8 059:479.276 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:479.348 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 059:479.720 Data: 49 CF 01 20 -T98A8 059:479.884 - 0.603ms returns 4 (0x4) -T358C 059:480.736 JLINK_IsHalted() -T358C 059:481.216 - 0.483ms returns FALSE -T358C 059:582.016 JLINK_HasError() -T358C 059:582.184 JLINK_IsHalted() -T358C 059:583.020 - 0.834ms returns FALSE -T358C 059:683.296 JLINK_HasError() -T358C 059:683.528 JLINK_IsHalted() -T358C 059:683.968 - 0.438ms returns FALSE -T358C 059:784.488 JLINK_HasError() -T358C 059:784.696 JLINK_IsHalted() -T358C 059:785.280 - 0.583ms returns FALSE -T358C 059:886.184 JLINK_HasError() -T358C 059:886.400 JLINK_IsHalted() -T358C 059:886.860 - 0.458ms returns FALSE -T358C 059:987.200 JLINK_HasError() -T358C 059:987.464 JLINK_HasError() -T358C 059:987.576 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 059:987.712 Data: F7 AE 0E 05 -T358C 059:987.880 Debug reg: DWT_CYCCNT -T358C 059:987.988 - 0.410ms returns 1 (0x1) -T98A8 059:988.384 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 059:988.628 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 059:989.440 Data: 0F 9F 16 E0 1F F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 059:989.728 - 1.339ms returns 25 (0x19) -T98A8 059:992.820 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:992.948 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 059:993.376 Data: 40 C4 01 20 -T98A8 059:993.504 - 0.687ms returns 4 (0x4) -T98A8 059:993.644 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:993.716 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 059:994.112 Data: 01 00 00 00 -T98A8 059:994.240 - 0.594ms returns 4 (0x4) -T98A8 059:994.328 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:994.392 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 059:994.772 Data: 00 00 80 3F -T98A8 059:994.900 - 0.572ms returns 4 (0x4) -T98A8 059:995.308 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:995.412 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 059:995.820 Data: F0 CF 41 3E -T98A8 059:995.968 - 0.663ms returns 4 (0x4) -T98A8 059:996.416 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:996.504 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 059:996.864 Data: 80 56 43 BC -T98A8 059:997.004 - 0.594ms returns 4 (0x4) -T98A8 059:997.416 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 059:997.516 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 059:997.920 Data: 00 00 00 00 -T98A8 059:998.092 - 0.684ms returns 4 (0x4) -T98A8 059:998.624 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:998.740 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 059:999.092 Data: 03 -T98A8 059:999.192 - 0.570ms returns 1 (0x1) -T98A8 059:999.264 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:999.328 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 059:999.668 Data: 01 -T98A8 059:999.800 - 0.537ms returns 1 (0x1) -T98A8 059:999.880 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 059:999.956 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 060:000.328 Data: 03 -T98A8 060:000.472 - 0.599ms returns 1 (0x1) -T98A8 060:000.556 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:000.640 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 060:001.064 Data: 01 -T98A8 060:001.176 - 0.621ms returns 1 (0x1) -T98A8 060:001.248 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:001.312 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 060:001.672 Data: 03 -T98A8 060:001.816 - 0.568ms returns 1 (0x1) -T98A8 060:001.900 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:001.984 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 060:002.380 Data: 03 -T98A8 060:002.548 - 0.643ms returns 1 (0x1) -T98A8 060:002.648 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:002.732 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 060:003.124 Data: 02 -T98A8 060:003.276 - 0.629ms returns 1 (0x1) -T98A8 060:003.372 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:003.448 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 060:003.892 Data: 01 -T98A8 060:004.040 - 0.666ms returns 1 (0x1) -T98A8 060:004.116 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:004.192 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 060:004.684 Data: 00 00 00 00 -T98A8 060:004.824 - 0.708ms returns 4 (0x4) -T98A8 060:004.952 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:005.016 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 060:005.368 Data: 00 -T98A8 060:005.480 - 0.525ms returns 1 (0x1) -T98A8 060:007.340 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:007.508 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 060:007.936 Data: 00 -T98A8 060:008.072 - 0.730ms returns 1 (0x1) -T98A8 060:008.396 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:008.532 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 060:008.928 Data: 10 CF 01 20 -T98A8 060:009.044 - 0.649ms returns 4 (0x4) -T98A8 060:009.160 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:009.240 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 060:009.672 Data: 49 CF 01 20 -T98A8 060:009.832 - 0.672ms returns 4 (0x4) -T358C 060:010.060 JLINK_IsHalted() -T358C 060:010.432 - 0.375ms returns FALSE -T358C 060:110.856 JLINK_HasError() -T358C 060:111.020 JLINK_IsHalted() -T358C 060:111.436 - 0.410ms returns FALSE -T358C 060:211.776 JLINK_HasError() -T358C 060:211.928 JLINK_IsHalted() -T358C 060:212.332 - 0.399ms returns FALSE -T358C 060:313.440 JLINK_HasError() -T358C 060:313.640 JLINK_IsHalted() -T358C 060:314.092 - 0.452ms returns FALSE -T358C 060:414.484 JLINK_HasError() -T358C 060:414.700 JLINK_IsHalted() -T358C 060:415.232 - 0.531ms returns FALSE -T358C 060:515.668 JLINK_HasError() -T358C 060:515.924 JLINK_HasError() -T358C 060:515.992 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 060:516.084 Data: F7 AE 0E 05 -T358C 060:516.180 Debug reg: DWT_CYCCNT -T358C 060:516.276 - 0.282ms returns 1 (0x1) -T98A8 060:517.428 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 060:517.688 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 060:518.368 Data: 0F B1 FB 9F 4A F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 060:518.496 - 1.071ms returns 25 (0x19) -T98A8 060:521.440 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:521.548 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 060:521.976 Data: 40 C4 01 20 -T98A8 060:522.260 - 0.820ms returns 4 (0x4) -T98A8 060:522.496 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:522.636 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 060:523.124 Data: 01 00 00 00 -T98A8 060:523.284 - 0.790ms returns 4 (0x4) -T98A8 060:523.572 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:523.656 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 060:524.300 Data: E8 1E F1 BD -T98A8 060:524.460 - 0.887ms returns 4 (0x4) -T98A8 060:524.940 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:525.048 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 060:525.432 Data: D0 62 E3 3E -T98A8 060:525.580 - 0.641ms returns 4 (0x4) -T98A8 060:526.028 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:526.144 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 060:526.520 Data: 80 56 43 BC -T98A8 060:526.648 - 0.618ms returns 4 (0x4) -T98A8 060:526.732 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:526.808 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 060:527.156 Data: 00 00 00 00 -T98A8 060:527.284 - 0.550ms returns 4 (0x4) -T98A8 060:527.384 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:527.456 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 060:527.880 Data: 03 -T98A8 060:528.032 - 0.650ms returns 1 (0x1) -T98A8 060:528.120 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:528.216 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 060:528.600 Data: 01 -T98A8 060:528.716 - 0.598ms returns 1 (0x1) -T98A8 060:528.788 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:528.852 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 060:529.236 Data: 03 -T98A8 060:529.388 - 0.603ms returns 1 (0x1) -T98A8 060:529.484 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:529.592 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 060:530.056 Data: 01 -T98A8 060:530.196 - 0.704ms returns 1 (0x1) -T98A8 060:530.280 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:530.376 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 060:530.772 Data: 03 -T98A8 060:530.912 - 0.635ms returns 1 (0x1) -T98A8 060:530.996 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:531.072 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 060:531.416 Data: 03 -T98A8 060:531.592 - 0.597ms returns 1 (0x1) -T98A8 060:531.840 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:531.928 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 060:532.312 Data: 02 -T98A8 060:532.440 - 0.756ms returns 1 (0x1) -T98A8 060:532.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:532.584 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 060:532.920 Data: 01 -T98A8 060:533.024 - 0.507ms returns 1 (0x1) -T98A8 060:533.096 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:533.160 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 060:533.504 Data: 00 00 00 00 -T98A8 060:533.608 - 0.508ms returns 4 (0x4) -T98A8 060:533.716 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:533.780 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 060:534.120 Data: 00 -T98A8 060:534.216 - 0.497ms returns 1 (0x1) -T98A8 060:534.912 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 060:535.008 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 060:535.372 Data: 00 -T98A8 060:535.528 - 0.616ms returns 1 (0x1) -T98A8 060:535.712 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:535.796 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 060:536.180 Data: 10 CF 01 20 -T98A8 060:536.312 - 0.600ms returns 4 (0x4) -T98A8 060:536.416 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 060:536.480 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 060:536.844 Data: 49 CF 01 20 -T98A8 060:536.940 - 0.527ms returns 4 (0x4) -T358C 060:537.108 JLINK_IsHalted() -T358C 060:537.460 - 0.355ms returns FALSE -T358C 060:637.832 JLINK_HasError() -T358C 060:638.088 JLINK_IsHalted() -T358C 060:638.536 - 0.442ms returns FALSE -T358C 060:739.348 JLINK_HasError() -T358C 060:739.520 JLINK_IsHalted() -T358C 060:740.024 - 0.504ms returns FALSE -T358C 060:841.236 JLINK_HasError() -T358C 060:841.384 JLINK_IsHalted() -T358C 060:841.772 - 0.394ms returns FALSE -T358C 060:942.584 JLINK_HasError() -T358C 060:942.776 JLINK_IsHalted() -T358C 060:943.276 - 0.497ms returns FALSE -T358C 061:044.244 JLINK_HasError() -T358C 061:044.392 JLINK_HasError() -T358C 061:044.456 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 061:044.544 Data: F7 AE 0E 05 -T358C 061:044.692 Debug reg: DWT_CYCCNT -T358C 061:044.856 - 0.401ms returns 1 (0x1) -T98A8 061:045.304 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 061:045.464 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 061:046.136 Data: 0F 00 04 20 3B F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 061:046.272 - 0.969ms returns 25 (0x19) -T98A8 061:048.232 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:048.344 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 061:048.780 Data: 40 C4 01 20 -T98A8 061:048.908 - 0.681ms returns 4 (0x4) -T98A8 061:049.044 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:049.112 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 061:049.512 Data: 01 00 00 00 -T98A8 061:049.612 - 0.566ms returns 4 (0x4) -T98A8 061:049.696 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:049.768 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 061:050.200 Data: 00 00 00 00 -T98A8 061:050.296 - 0.601ms returns 4 (0x4) -T98A8 061:050.676 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:050.764 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 061:051.116 Data: D8 13 B4 3E -T98A8 061:051.284 - 0.610ms returns 4 (0x4) -T98A8 061:051.764 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:051.852 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 061:052.328 Data: 80 56 43 BC -T98A8 061:052.480 - 0.717ms returns 4 (0x4) -T98A8 061:052.568 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:052.648 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 061:053.140 Data: 00 00 00 00 -T98A8 061:053.272 - 0.704ms returns 4 (0x4) -T98A8 061:053.356 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:053.428 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 061:053.888 Data: 03 -T98A8 061:054.024 - 0.662ms returns 1 (0x1) -T98A8 061:054.092 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:054.156 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 061:054.584 Data: 01 -T98A8 061:054.732 - 0.638ms returns 1 (0x1) -T98A8 061:054.808 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:054.888 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 061:055.304 Data: 03 -T98A8 061:055.596 - 0.786ms returns 1 (0x1) -T98A8 061:055.784 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:055.928 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 061:058.216 Data: 01 -T98A8 061:058.616 - 2.834ms returns 1 (0x1) -T98A8 061:058.920 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:059.052 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 061:059.476 Data: 03 -T98A8 061:059.608 - 0.692ms returns 1 (0x1) -T98A8 061:059.688 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:059.756 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 061:060.088 Data: 03 -T98A8 061:060.192 - 0.505ms returns 1 (0x1) -T98A8 061:060.256 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:060.332 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 061:060.736 Data: 02 -T98A8 061:060.852 - 0.593ms returns 1 (0x1) -T98A8 061:060.928 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:061.004 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 061:061.376 Data: 01 -T98A8 061:061.524 - 0.593ms returns 1 (0x1) -T98A8 061:061.608 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:061.708 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 061:062.092 Data: 00 00 00 00 -T98A8 061:062.220 - 0.614ms returns 4 (0x4) -T98A8 061:062.380 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:062.456 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 061:062.892 Data: 00 -T98A8 061:063.000 - 0.623ms returns 1 (0x1) -T98A8 061:063.884 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:063.980 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 061:064.384 Data: 00 -T98A8 061:064.520 - 0.632ms returns 1 (0x1) -T98A8 061:064.672 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:064.748 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 061:065.088 Data: 10 CF 01 20 -T98A8 061:065.224 - 0.550ms returns 4 (0x4) -T98A8 061:065.344 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:065.420 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 061:067.016 Data: 49 CF 01 20 -T98A8 061:067.176 - 1.835ms returns 4 (0x4) -T358C 061:067.432 JLINK_IsHalted() -T358C 061:067.904 - 0.475ms returns FALSE -T358C 061:169.504 JLINK_HasError() -T358C 061:169.664 JLINK_IsHalted() -T358C 061:170.120 - 0.454ms returns FALSE -T358C 061:270.328 JLINK_HasError() -T358C 061:270.488 JLINK_IsHalted() -T358C 061:271.468 - 0.976ms returns FALSE -T358C 061:372.640 JLINK_HasError() -T358C 061:372.884 JLINK_IsHalted() -T358C 061:373.396 - 0.510ms returns FALSE -T358C 061:474.528 JLINK_HasError() -T358C 061:474.728 JLINK_IsHalted() -T358C 061:475.304 - 0.568ms returns FALSE -T358C 061:575.584 JLINK_HasError() -T358C 061:575.732 JLINK_HasError() -T358C 061:575.788 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 061:575.864 Data: F7 AE 0E 05 -T358C 061:575.956 Debug reg: DWT_CYCCNT -T358C 061:576.032 - 0.243ms returns 1 (0x1) -T98A8 061:576.300 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 061:576.564 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 061:577.256 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 061:577.384 - 1.086ms returns 25 (0x19) -T98A8 061:577.484 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:577.548 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 061:577.944 Data: 40 C4 01 20 -T98A8 061:578.040 - 0.558ms returns 4 (0x4) -T98A8 061:578.152 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:578.216 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 061:578.592 Data: 01 00 00 00 -T98A8 061:578.700 - 0.554ms returns 4 (0x4) -T98A8 061:578.784 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:578.856 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 061:579.576 Data: 00 00 00 00 -T98A8 061:579.692 - 0.906ms returns 4 (0x4) -T98A8 061:580.360 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:580.468 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 061:581.652 Data: 00 00 00 00 -T98A8 061:581.832 - 1.474ms returns 4 (0x4) -T98A8 061:582.296 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:582.392 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 061:582.784 Data: 80 56 43 BC -T98A8 061:582.936 - 0.640ms returns 4 (0x4) -T98A8 061:583.028 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:583.136 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 061:583.496 Data: 00 00 00 00 -T98A8 061:583.624 - 0.597ms returns 4 (0x4) -T98A8 061:583.736 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:583.828 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 061:584.280 Data: 03 -T98A8 061:584.428 - 0.689ms returns 1 (0x1) -T98A8 061:584.512 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:584.640 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 061:585.032 Data: 01 -T98A8 061:585.128 - 0.615ms returns 1 (0x1) -T98A8 061:585.196 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:585.260 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 061:585.592 Data: 03 -T98A8 061:585.696 - 0.500ms returns 1 (0x1) -T98A8 061:585.768 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:585.824 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 061:586.176 Data: 01 -T98A8 061:586.292 - 0.528ms returns 1 (0x1) -T98A8 061:586.368 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:586.440 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 061:586.792 Data: 03 -T98A8 061:586.944 - 0.574ms returns 1 (0x1) -T98A8 061:587.020 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:587.096 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 061:587.456 Data: 03 -T98A8 061:587.608 - 0.590ms returns 1 (0x1) -T98A8 061:587.692 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:587.776 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 061:588.136 Data: 02 -T98A8 061:588.288 - 0.592ms returns 1 (0x1) -T98A8 061:588.360 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:588.428 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 061:588.776 Data: 01 -T98A8 061:588.936 - 0.575ms returns 1 (0x1) -T98A8 061:589.024 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:589.120 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 061:589.524 Data: 00 00 00 00 -T98A8 061:589.676 - 0.652ms returns 4 (0x4) -T98A8 061:589.824 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:589.900 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 061:590.296 Data: 00 -T98A8 061:590.400 - 0.579ms returns 1 (0x1) -T98A8 061:591.168 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 061:591.284 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 061:591.656 Data: 00 -T98A8 061:591.776 - 0.611ms returns 1 (0x1) -T98A8 061:591.936 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:592.008 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 061:592.364 Data: 10 CF 01 20 -T98A8 061:592.492 - 0.560ms returns 4 (0x4) -T98A8 061:592.608 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 061:592.672 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 061:593.012 Data: 49 CF 01 20 -T98A8 061:593.132 - 0.529ms returns 4 (0x4) -T358C 061:593.320 JLINK_IsHalted() -T358C 061:593.664 - 0.343ms returns FALSE -T358C 061:693.940 JLINK_HasError() -T358C 061:694.060 JLINK_IsHalted() -T358C 061:694.936 - 0.873ms returns FALSE -T358C 061:796.108 JLINK_HasError() -T358C 061:796.364 JLINK_IsHalted() -T358C 061:796.908 - 0.540ms returns FALSE -T358C 061:897.780 JLINK_HasError() -T358C 061:897.928 JLINK_IsHalted() -T358C 061:898.344 - 0.411ms returns FALSE -T358C 061:998.868 JLINK_HasError() -T358C 061:999.016 JLINK_IsHalted() -T358C 061:999.436 - 0.415ms returns FALSE -T358C 062:100.696 JLINK_HasError() -T358C 062:100.852 JLINK_HasError() -T358C 062:100.916 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 062:101.012 Data: F7 AE 0E 05 -T358C 062:101.228 Debug reg: DWT_CYCCNT -T358C 062:101.416 - 0.495ms returns 1 (0x1) -T98A8 062:102.080 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 062:102.196 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 062:102.932 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 062:103.064 - 0.991ms returns 25 (0x19) -T98A8 062:103.160 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:103.232 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 062:103.584 Data: 40 C4 01 20 -T98A8 062:103.744 - 0.578ms returns 4 (0x4) -T98A8 062:103.884 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:103.976 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 062:104.340 Data: 01 00 00 00 -T98A8 062:104.436 - 0.550ms returns 4 (0x4) -T98A8 062:104.520 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:104.584 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 062:104.948 Data: 00 00 00 00 -T98A8 062:105.068 - 0.552ms returns 4 (0x4) -T98A8 062:105.144 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:105.208 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 062:105.568 Data: 00 00 00 00 -T98A8 062:105.672 - 0.521ms returns 4 (0x4) -T98A8 062:106.380 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:106.476 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 062:106.836 Data: 80 56 43 BC -T98A8 062:106.968 - 0.584ms returns 4 (0x4) -T98A8 062:107.048 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:107.112 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 062:107.468 Data: 00 00 00 00 -T98A8 062:107.592 - 0.547ms returns 4 (0x4) -T98A8 062:107.688 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:107.756 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 062:108.116 Data: 03 -T98A8 062:108.248 - 0.560ms returns 1 (0x1) -T98A8 062:108.320 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:108.392 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 062:108.808 Data: 01 -T98A8 062:108.936 - 0.611ms returns 1 (0x1) -T98A8 062:109.004 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:109.068 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 062:109.440 Data: 03 -T98A8 062:109.580 - 0.575ms returns 1 (0x1) -T98A8 062:109.664 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:109.740 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 062:110.336 Data: 01 -T98A8 062:110.520 - 0.855ms returns 1 (0x1) -T98A8 062:110.612 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:110.680 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 062:111.064 Data: 03 -T98A8 062:111.192 - 0.584ms returns 1 (0x1) -T98A8 062:111.264 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:111.336 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 062:111.872 Data: 03 -T98A8 062:112.076 - 0.812ms returns 1 (0x1) -T98A8 062:112.200 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:112.320 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 062:113.312 Data: 02 -T98A8 062:113.452 - 1.256ms returns 1 (0x1) -T98A8 062:113.544 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:113.620 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 062:114.228 Data: 01 -T98A8 062:114.400 - 0.857ms returns 1 (0x1) -T98A8 062:114.496 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:114.604 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 062:115.016 Data: 00 00 00 00 -T98A8 062:115.636 - 1.135ms returns 4 (0x4) -T98A8 062:116.212 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:116.532 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 062:117.280 Data: 00 -T98A8 062:117.464 - 1.256ms returns 1 (0x1) -T98A8 062:119.144 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:119.304 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 062:119.820 Data: 00 -T98A8 062:119.992 - 0.851ms returns 1 (0x1) -T98A8 062:120.340 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:120.448 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 062:120.864 Data: 10 CF 01 20 -T98A8 062:121.004 - 0.666ms returns 4 (0x4) -T98A8 062:121.120 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:121.192 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 062:121.588 Data: 49 CF 01 20 -T98A8 062:121.708 - 0.590ms returns 4 (0x4) -T358C 062:121.912 JLINK_IsHalted() -T358C 062:122.272 - 0.355ms returns FALSE -T358C 062:223.540 JLINK_HasError() -T358C 062:223.668 JLINK_IsHalted() -T358C 062:224.088 - 0.419ms returns FALSE -T358C 062:325.132 JLINK_HasError() -T358C 062:325.280 JLINK_IsHalted() -T358C 062:325.688 - 0.409ms returns FALSE -T358C 062:425.996 JLINK_HasError() -T358C 062:426.112 JLINK_IsHalted() -T358C 062:426.516 - 0.404ms returns FALSE -T358C 062:526.824 JLINK_HasError() -T358C 062:526.952 JLINK_IsHalted() -T358C 062:527.348 - 0.391ms returns FALSE -T358C 062:628.084 JLINK_HasError() -T358C 062:628.268 JLINK_HasError() -T358C 062:628.404 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 062:628.500 Data: F7 AE 0E 05 -T358C 062:628.600 Debug reg: DWT_CYCCNT -T358C 062:628.696 - 0.297ms returns 1 (0x1) -T98A8 062:629.728 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 062:629.848 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 062:630.380 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 062:630.504 - 0.776ms returns 25 (0x19) -T98A8 062:630.600 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:630.668 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 062:631.020 Data: 40 C4 01 20 -T98A8 062:631.124 - 0.527ms returns 4 (0x4) -T98A8 062:631.252 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:631.316 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 062:632.184 Data: 01 00 00 00 -T98A8 062:632.300 - 1.051ms returns 4 (0x4) -T98A8 062:632.404 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:632.468 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 062:632.852 Data: 00 00 00 00 -T98A8 062:633.012 - 0.612ms returns 4 (0x4) -T98A8 062:633.108 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:633.192 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 062:633.548 Data: 00 00 00 00 -T98A8 062:633.644 - 0.540ms returns 4 (0x4) -T98A8 062:633.772 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:633.844 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 062:634.184 Data: 80 56 43 BC -T98A8 062:634.280 - 0.511ms returns 4 (0x4) -T98A8 062:634.348 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:634.412 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 062:634.840 Data: 00 00 00 00 -T98A8 062:634.936 - 0.587ms returns 4 (0x4) -T98A8 062:635.016 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:635.084 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 062:635.956 Data: 03 -T98A8 062:636.104 - 1.084ms returns 1 (0x1) -T98A8 062:636.184 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:636.276 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 062:636.640 Data: 01 -T98A8 062:636.800 - 0.613ms returns 1 (0x1) -T98A8 062:636.884 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:636.960 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 062:637.324 Data: 03 -T98A8 062:637.452 - 0.568ms returns 1 (0x1) -T98A8 062:637.516 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:637.588 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 062:637.964 Data: 01 -T98A8 062:638.080 - 0.560ms returns 1 (0x1) -T98A8 062:638.152 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:638.216 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 062:638.676 Data: 03 -T98A8 062:638.872 - 0.725ms returns 1 (0x1) -T98A8 062:638.976 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:639.584 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 062:640.064 Data: 03 -T98A8 062:640.204 - 1.228ms returns 1 (0x1) -T98A8 062:640.288 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:640.392 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 062:640.840 Data: 02 -T98A8 062:640.952 - 0.667ms returns 1 (0x1) -T98A8 062:641.024 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:641.100 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 062:641.480 Data: 01 -T98A8 062:641.580 - 0.557ms returns 1 (0x1) -T98A8 062:641.652 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:641.716 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 062:642.048 Data: 00 00 00 00 -T98A8 062:642.144 - 0.490ms returns 4 (0x4) -T98A8 062:642.264 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:642.328 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 062:642.668 Data: 00 -T98A8 062:642.792 - 0.527ms returns 1 (0x1) -T98A8 062:643.916 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 062:644.040 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 062:644.928 Data: 00 -T98A8 062:645.064 - 1.144ms returns 1 (0x1) -T98A8 062:645.208 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:645.272 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 062:645.640 Data: 10 CF 01 20 -T98A8 062:645.800 - 0.588ms returns 4 (0x4) -T98A8 062:645.912 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 062:645.992 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 062:646.360 Data: 49 CF 01 20 -T98A8 062:646.476 - 0.562ms returns 4 (0x4) -T358C 062:646.656 JLINK_IsHalted() -T358C 062:646.984 - 0.329ms returns FALSE -T358C 062:747.912 JLINK_HasError() -T358C 062:748.044 JLINK_IsHalted() -T358C 062:748.448 - 0.399ms returns FALSE -T358C 062:849.516 JLINK_HasError() -T358C 062:849.800 JLINK_IsHalted() -T358C 062:850.312 - 0.513ms returns FALSE -T358C 062:950.752 JLINK_HasError() -T358C 062:950.912 JLINK_IsHalted() -T358C 062:951.352 - 0.440ms returns FALSE -T358C 063:051.880 JLINK_HasError() -T358C 063:052.040 JLINK_IsHalted() -T358C 063:052.440 - 0.399ms returns FALSE -T358C 063:152.888 JLINK_HasError() -T358C 063:153.076 JLINK_HasError() -T358C 063:153.132 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 063:153.216 Data: F7 AE 0E 05 -T358C 063:153.312 Debug reg: DWT_CYCCNT -T358C 063:153.400 - 0.264ms returns 1 (0x1) -T98A8 063:153.736 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 063:153.900 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 063:154.516 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 063:154.624 - 0.887ms returns 25 (0x19) -T98A8 063:154.792 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:154.872 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 063:155.252 Data: 40 C4 01 20 -T98A8 063:155.400 - 0.608ms returns 4 (0x4) -T98A8 063:155.544 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:155.628 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 063:156.032 Data: 01 00 00 00 -T98A8 063:156.212 - 0.664ms returns 4 (0x4) -T98A8 063:156.320 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:156.404 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 063:156.936 Data: 00 00 00 00 -T98A8 063:157.088 - 0.763ms returns 4 (0x4) -T98A8 063:157.184 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:157.268 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 063:157.780 Data: 00 00 00 00 -T98A8 063:157.952 - 0.771ms returns 4 (0x4) -T98A8 063:158.092 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:158.168 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 063:158.540 Data: 80 56 43 BC -T98A8 063:158.688 - 0.595ms returns 4 (0x4) -T98A8 063:158.784 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:158.888 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 063:159.272 Data: 00 00 00 00 -T98A8 063:159.392 - 0.612ms returns 4 (0x4) -T98A8 063:159.500 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:159.564 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 063:159.916 Data: 03 -T98A8 063:160.044 - 0.543ms returns 1 (0x1) -T98A8 063:160.148 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:160.216 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 063:160.568 Data: 01 -T98A8 063:160.672 - 0.524ms returns 1 (0x1) -T98A8 063:160.736 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:160.800 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 063:161.140 Data: 03 -T98A8 063:161.236 - 0.498ms returns 1 (0x1) -T98A8 063:161.300 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:161.364 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 063:161.708 Data: 01 -T98A8 063:161.804 - 0.502ms returns 1 (0x1) -T98A8 063:161.868 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:161.932 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 063:162.272 Data: 03 -T98A8 063:162.368 - 0.496ms returns 1 (0x1) -T98A8 063:162.452 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:162.536 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 063:163.016 Data: 03 -T98A8 063:163.144 - 0.691ms returns 1 (0x1) -T98A8 063:163.212 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:163.284 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 063:163.912 Data: 02 -T98A8 063:164.096 - 0.881ms returns 1 (0x1) -T98A8 063:164.184 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:164.256 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 063:164.640 Data: 01 -T98A8 063:164.748 - 0.566ms returns 1 (0x1) -T98A8 063:164.820 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:164.888 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 063:165.240 Data: 00 00 00 00 -T98A8 063:165.356 - 0.536ms returns 4 (0x4) -T98A8 063:165.544 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:165.632 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 063:166.008 Data: 00 -T98A8 063:166.164 - 0.622ms returns 1 (0x1) -T98A8 063:167.456 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:167.572 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 063:167.948 Data: 00 -T98A8 063:168.076 - 0.618ms returns 1 (0x1) -T98A8 063:168.280 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:168.384 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 063:168.780 Data: 10 CF 01 20 -T98A8 063:168.920 - 0.642ms returns 4 (0x4) -T98A8 063:169.056 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:169.144 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 063:169.524 Data: 49 CF 01 20 -T98A8 063:169.652 - 0.591ms returns 4 (0x4) -T358C 063:169.876 JLINK_IsHalted() -T358C 063:170.208 - 0.334ms returns FALSE -T358C 063:270.760 JLINK_HasError() -T358C 063:270.988 JLINK_IsHalted() -T358C 063:271.384 - 0.396ms returns FALSE -T358C 063:372.904 JLINK_HasError() -T358C 063:373.044 JLINK_IsHalted() -T358C 063:373.440 - 0.395ms returns FALSE -T358C 063:474.080 JLINK_HasError() -T358C 063:474.240 JLINK_IsHalted() -T358C 063:474.656 - 0.413ms returns FALSE -T358C 063:574.936 JLINK_HasError() -T358C 063:575.116 JLINK_IsHalted() -T358C 063:575.532 - 0.417ms returns FALSE -T358C 063:675.720 JLINK_HasError() -T358C 063:675.880 JLINK_HasError() -T358C 063:675.968 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 063:676.072 Data: F7 AE 0E 05 -T358C 063:676.180 Debug reg: DWT_CYCCNT -T358C 063:676.288 - 0.322ms returns 1 (0x1) -T98A8 063:676.664 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 063:676.808 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 063:677.408 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 063:677.568 - 0.903ms returns 25 (0x19) -T98A8 063:677.684 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:677.760 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 063:678.156 Data: 40 C4 01 20 -T98A8 063:678.304 - 0.621ms returns 4 (0x4) -T98A8 063:678.488 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:678.616 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 063:679.060 Data: 01 00 00 00 -T98A8 063:679.160 - 0.671ms returns 4 (0x4) -T98A8 063:679.252 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:679.316 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 063:679.660 Data: 00 00 00 00 -T98A8 063:679.756 - 0.508ms returns 4 (0x4) -T98A8 063:679.828 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:679.892 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 063:680.296 Data: 00 00 00 00 -T98A8 063:680.456 - 0.623ms returns 4 (0x4) -T98A8 063:680.556 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:680.632 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 063:681.056 Data: 80 56 43 BC -T98A8 063:681.176 - 0.623ms returns 4 (0x4) -T98A8 063:681.256 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:681.320 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 063:681.704 Data: 00 00 00 00 -T98A8 063:681.816 - 0.564ms returns 4 (0x4) -T98A8 063:681.900 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:681.964 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 063:682.304 Data: 03 -T98A8 063:682.400 - 0.499ms returns 1 (0x1) -T98A8 063:682.476 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:682.548 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 063:682.920 Data: 01 -T98A8 063:683.032 - 0.554ms returns 1 (0x1) -T98A8 063:683.104 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:683.176 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 063:683.572 Data: 03 -T98A8 063:683.720 - 0.613ms returns 1 (0x1) -T98A8 063:683.788 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:683.860 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 063:684.248 Data: 01 -T98A8 063:684.384 - 0.593ms returns 1 (0x1) -T98A8 063:684.456 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:684.520 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 063:684.948 Data: 03 -T98A8 063:685.088 - 0.634ms returns 1 (0x1) -T98A8 063:685.160 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:685.228 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 063:685.676 Data: 03 -T98A8 063:686.004 - 0.846ms returns 1 (0x1) -T98A8 063:686.104 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:686.272 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 063:686.740 Data: 02 -T98A8 063:686.904 - 0.795ms returns 1 (0x1) -T98A8 063:686.976 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:687.048 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 063:687.764 Data: 01 -T98A8 063:687.916 - 0.939ms returns 1 (0x1) -T98A8 063:688.008 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:688.084 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 063:688.468 Data: 00 00 00 00 -T98A8 063:688.600 - 0.599ms returns 4 (0x4) -T98A8 063:688.776 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:688.852 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 063:689.324 Data: 00 -T98A8 063:689.452 - 0.682ms returns 1 (0x1) -T98A8 063:690.484 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 063:690.584 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 063:690.968 Data: 00 -T98A8 063:691.104 - 0.618ms returns 1 (0x1) -T98A8 063:691.392 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:691.488 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 063:691.936 Data: 10 CF 01 20 -T98A8 063:692.076 - 0.685ms returns 4 (0x4) -T98A8 063:692.192 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 063:692.276 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 063:692.684 Data: 49 CF 01 20 -T98A8 063:692.832 - 0.643ms returns 4 (0x4) -T358C 063:693.036 JLINK_IsHalted() -T358C 063:693.516 - 0.474ms returns FALSE -T358C 063:794.772 JLINK_HasError() -T358C 063:794.924 JLINK_IsHalted() -T358C 063:795.320 - 0.396ms returns FALSE -T358C 063:895.764 JLINK_HasError() -T358C 063:895.884 JLINK_IsHalted() -T358C 063:896.276 - 0.392ms returns FALSE -T358C 063:997.216 JLINK_HasError() -T358C 063:997.452 JLINK_IsHalted() -T358C 063:998.644 - 1.189ms returns FALSE -T358C 064:099.860 JLINK_HasError() -T358C 064:100.120 JLINK_IsHalted() -T358C 064:100.600 - 0.479ms returns FALSE -T358C 064:201.300 JLINK_HasError() -T358C 064:201.556 JLINK_HasError() -T358C 064:201.620 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 064:201.716 Data: F7 AE 0E 05 -T358C 064:201.812 Debug reg: DWT_CYCCNT -T358C 064:201.900 - 0.279ms returns 1 (0x1) -T98A8 064:202.392 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 064:202.752 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 064:203.916 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 064:204.084 - 1.687ms returns 25 (0x19) -T98A8 064:204.200 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:204.280 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 064:204.664 Data: 40 C4 01 20 -T98A8 064:204.824 - 0.629ms returns 4 (0x4) -T98A8 064:204.980 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:205.076 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 064:205.464 Data: 01 00 00 00 -T98A8 064:205.580 - 0.606ms returns 4 (0x4) -T98A8 064:205.856 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:206.008 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 064:206.552 Data: 00 00 00 00 -T98A8 064:206.856 - 1.001ms returns 4 (0x4) -T98A8 064:206.936 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:207.008 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 064:207.392 Data: 00 00 00 00 -T98A8 064:207.520 - 0.582ms returns 4 (0x4) -T98A8 064:207.648 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:207.720 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 064:208.084 Data: 80 56 43 BC -T98A8 064:208.244 - 0.597ms returns 4 (0x4) -T98A8 064:208.332 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:208.416 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 064:208.788 Data: 00 00 00 00 -T98A8 064:208.896 - 0.562ms returns 4 (0x4) -T98A8 064:208.980 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:209.048 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 064:209.400 Data: 03 -T98A8 064:209.496 - 0.518ms returns 1 (0x1) -T98A8 064:209.568 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:209.640 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 064:209.976 Data: 01 -T98A8 064:210.104 - 0.534ms returns 1 (0x1) -T98A8 064:210.176 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:210.240 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 064:210.584 Data: 03 -T98A8 064:210.708 - 0.533ms returns 1 (0x1) -T98A8 064:210.792 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:210.868 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 064:211.232 Data: 01 -T98A8 064:211.348 - 0.556ms returns 1 (0x1) -T98A8 064:211.432 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:211.508 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 064:211.936 Data: 03 -T98A8 064:212.040 - 0.605ms returns 1 (0x1) -T98A8 064:212.104 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:212.168 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 064:212.520 Data: 03 -T98A8 064:212.616 - 0.511ms returns 1 (0x1) -T98A8 064:212.684 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:212.856 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 064:213.224 Data: 02 -T98A8 064:213.336 - 0.656ms returns 1 (0x1) -T98A8 064:213.416 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:213.480 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 064:213.932 Data: 01 -T98A8 064:214.068 - 0.657ms returns 1 (0x1) -T98A8 064:214.188 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:214.272 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 064:214.728 Data: 00 00 00 00 -T98A8 064:214.988 - 0.800ms returns 4 (0x4) -T98A8 064:215.192 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:215.316 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 064:215.672 Data: 00 -T98A8 064:215.784 - 0.589ms returns 1 (0x1) -T98A8 064:216.864 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:216.960 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 064:217.368 Data: 00 -T98A8 064:217.496 - 0.634ms returns 1 (0x1) -T98A8 064:217.664 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:217.772 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 064:218.260 Data: 10 CF 01 20 -T98A8 064:218.400 - 0.736ms returns 4 (0x4) -T98A8 064:218.520 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:218.612 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 064:219.092 Data: 49 CF 01 20 -T98A8 064:219.244 - 0.725ms returns 4 (0x4) -T358C 064:219.448 JLINK_IsHalted() -T358C 064:219.816 - 0.368ms returns FALSE -T358C 064:319.992 JLINK_HasError() -T358C 064:320.140 JLINK_IsHalted() -T358C 064:320.544 - 0.401ms returns FALSE -T358C 064:420.776 JLINK_HasError() -T358C 064:420.920 JLINK_IsHalted() -T358C 064:421.368 - 0.446ms returns FALSE -T358C 064:521.640 JLINK_HasError() -T358C 064:521.768 JLINK_IsHalted() -T358C 064:522.568 - 0.803ms returns FALSE -T358C 064:623.552 JLINK_HasError() -T358C 064:623.752 JLINK_IsHalted() -T358C 064:624.200 - 0.442ms returns FALSE -T358C 064:724.884 JLINK_HasError() -T358C 064:725.108 JLINK_HasError() -T358C 064:725.176 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 064:725.312 Data: F7 AE 0E 05 -T358C 064:725.460 Debug reg: DWT_CYCCNT -T358C 064:725.560 - 0.379ms returns 1 (0x1) -T98A8 064:726.036 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 064:726.296 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 064:727.032 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 064:727.180 - 1.146ms returns 25 (0x19) -T98A8 064:727.276 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:727.348 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 064:727.732 Data: 40 C4 01 20 -T98A8 064:727.840 - 0.559ms returns 4 (0x4) -T98A8 064:727.968 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:728.044 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 064:728.408 Data: 01 00 00 00 -T98A8 064:728.524 - 0.553ms returns 4 (0x4) -T98A8 064:728.616 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:728.684 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 064:729.076 Data: 00 00 00 00 -T98A8 064:729.268 - 0.653ms returns 4 (0x4) -T98A8 064:729.384 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:729.464 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 064:729.908 Data: 00 00 00 00 -T98A8 064:730.088 - 0.703ms returns 4 (0x4) -T98A8 064:730.184 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:730.252 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 064:730.612 Data: 80 56 43 BC -T98A8 064:730.740 - 0.559ms returns 4 (0x4) -T98A8 064:730.808 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:730.872 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 064:731.240 Data: 00 00 00 00 -T98A8 064:731.340 - 0.529ms returns 4 (0x4) -T98A8 064:731.424 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:731.488 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 064:731.840 Data: 03 -T98A8 064:731.936 - 0.511ms returns 1 (0x1) -T98A8 064:732.008 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:732.212 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 064:732.588 Data: 01 -T98A8 064:732.692 - 0.687ms returns 1 (0x1) -T98A8 064:732.768 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:732.840 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 064:733.196 Data: 03 -T98A8 064:733.300 - 0.531ms returns 1 (0x1) -T98A8 064:733.368 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:733.432 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 064:733.844 Data: 01 -T98A8 064:733.940 - 0.565ms returns 1 (0x1) -T98A8 064:734.004 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:734.068 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 064:734.444 Data: 03 -T98A8 064:734.548 - 0.541ms returns 1 (0x1) -T98A8 064:734.616 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:734.680 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 064:735.048 Data: 03 -T98A8 064:735.148 - 0.533ms returns 1 (0x1) -T98A8 064:735.212 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:735.284 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 064:735.656 Data: 02 -T98A8 064:735.752 - 0.538ms returns 1 (0x1) -T98A8 064:735.820 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:735.880 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 064:736.840 Data: 01 -T98A8 064:736.972 - 1.152ms returns 1 (0x1) -T98A8 064:737.120 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:737.192 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 064:737.536 Data: 00 00 00 00 -T98A8 064:737.656 - 0.535ms returns 4 (0x4) -T98A8 064:737.760 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:737.836 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 064:738.176 Data: 00 -T98A8 064:738.264 - 0.507ms returns 1 (0x1) -T98A8 064:739.304 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 064:739.412 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 064:739.764 Data: 00 -T98A8 064:739.872 - 0.566ms returns 1 (0x1) -T98A8 064:740.008 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:740.076 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 064:740.428 Data: 10 CF 01 20 -T98A8 064:740.524 - 0.519ms returns 4 (0x4) -T98A8 064:740.620 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 064:740.692 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 064:741.108 Data: 49 CF 01 20 -T98A8 064:741.208 - 0.586ms returns 4 (0x4) -T358C 064:741.376 JLINK_IsHalted() -T358C 064:741.752 - 0.378ms returns FALSE -T358C 064:842.824 JLINK_HasError() -T358C 064:843.064 JLINK_IsHalted() -T358C 064:843.604 - 0.537ms returns FALSE -T358C 064:944.780 JLINK_HasError() -T358C 064:945.032 JLINK_IsHalted() -T358C 064:945.484 - 0.450ms returns FALSE -T358C 065:046.484 JLINK_HasError() -T358C 065:046.632 JLINK_IsHalted() -T358C 065:047.040 - 0.403ms returns FALSE -T358C 065:147.272 JLINK_HasError() -T358C 065:152.640 JLINK_IsHalted() -T358C 065:153.048 - 0.410ms returns FALSE -T358C 065:253.460 JLINK_HasError() -T358C 065:253.644 JLINK_HasError() -T358C 065:253.736 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 065:253.832 Data: F7 AE 0E 05 -T358C 065:253.972 Debug reg: DWT_CYCCNT -T358C 065:254.104 - 0.366ms returns 1 (0x1) -T98A8 065:254.520 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 065:254.752 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 065:255.456 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 065:255.660 - 1.142ms returns 25 (0x19) -T98A8 065:255.776 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:255.864 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 065:256.236 Data: 40 C4 01 20 -T98A8 065:256.392 - 0.618ms returns 4 (0x4) -T98A8 065:256.564 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:256.660 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 065:257.080 Data: 01 00 00 00 -T98A8 065:257.240 - 0.682ms returns 4 (0x4) -T98A8 065:257.336 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:257.428 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 065:257.792 Data: 00 00 00 00 -T98A8 065:258.016 - 0.678ms returns 4 (0x4) -T98A8 065:258.152 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:258.252 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 065:258.616 Data: 00 00 00 00 -T98A8 065:258.720 - 0.569ms returns 4 (0x4) -T98A8 065:258.824 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:258.892 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 065:259.244 Data: 80 56 43 BC -T98A8 065:259.404 - 0.586ms returns 4 (0x4) -T98A8 065:259.496 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:259.576 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 065:260.024 Data: 00 00 00 00 -T98A8 065:260.152 - 0.664ms returns 4 (0x4) -T98A8 065:260.276 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:260.360 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 065:260.744 Data: 03 -T98A8 065:260.872 - 0.597ms returns 1 (0x1) -T98A8 065:260.952 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:261.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 065:261.388 Data: 01 -T98A8 065:261.492 - 0.535ms returns 1 (0x1) -T98A8 065:261.556 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:261.620 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 065:261.996 Data: 03 -T98A8 065:262.112 - 0.556ms returns 1 (0x1) -T98A8 065:262.184 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:262.252 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 065:262.616 Data: 01 -T98A8 065:262.712 - 0.532ms returns 1 (0x1) -T98A8 065:262.784 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:262.848 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 065:263.240 Data: 03 -T98A8 065:263.336 - 0.553ms returns 1 (0x1) -T98A8 065:263.404 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:263.468 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 065:263.800 Data: 03 -T98A8 065:263.960 - 0.557ms returns 1 (0x1) -T98A8 065:264.052 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:264.140 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 065:264.492 Data: 02 -T98A8 065:264.652 - 0.603ms returns 1 (0x1) -T98A8 065:264.744 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:264.832 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 065:265.196 Data: 01 -T98A8 065:265.332 - 0.588ms returns 1 (0x1) -T98A8 065:265.400 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:265.472 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 065:265.900 Data: 00 00 00 00 -T98A8 065:266.016 - 0.615ms returns 4 (0x4) -T98A8 065:266.136 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:266.220 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 065:266.568 Data: 00 -T98A8 065:266.668 - 0.537ms returns 1 (0x1) -T98A8 065:267.436 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:267.544 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 065:267.904 Data: 00 -T98A8 065:268.008 - 0.567ms returns 1 (0x1) -T98A8 065:268.148 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:268.256 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 065:268.640 Data: 10 CF 01 20 -T98A8 065:268.736 - 0.593ms returns 4 (0x4) -T98A8 065:268.832 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:268.896 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 065:269.236 Data: 49 CF 01 20 -T98A8 065:269.368 - 0.540ms returns 4 (0x4) -T358C 065:269.556 JLINK_IsHalted() -T358C 065:269.888 - 0.334ms returns FALSE -T358C 065:370.072 JLINK_HasError() -T358C 065:370.200 JLINK_IsHalted() -T358C 065:370.560 - 0.362ms returns FALSE -T358C 065:471.048 JLINK_HasError() -T358C 065:471.208 JLINK_IsHalted() -T358C 065:471.688 - 0.476ms returns FALSE -T358C 065:572.396 JLINK_HasError() -T358C 065:572.608 JLINK_IsHalted() -T358C 065:573.076 - 0.465ms returns FALSE -T358C 065:673.268 JLINK_HasError() -T358C 065:673.496 JLINK_IsHalted() -T358C 065:673.944 - 0.447ms returns FALSE -T358C 065:775.084 JLINK_HasError() -T358C 065:775.264 JLINK_HasError() -T358C 065:775.320 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 065:775.416 Data: F7 AE 0E 05 -T358C 065:775.500 Debug reg: DWT_CYCCNT -T358C 065:775.584 - 0.260ms returns 1 (0x1) -T98A8 065:775.864 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 065:776.012 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 065:776.620 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 065:776.780 - 0.916ms returns 25 (0x19) -T98A8 065:776.884 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:776.952 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 065:777.332 Data: 40 C4 01 20 -T98A8 065:777.484 - 0.599ms returns 4 (0x4) -T98A8 065:777.644 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:777.728 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 065:778.100 Data: 01 00 00 00 -T98A8 065:778.232 - 0.588ms returns 4 (0x4) -T98A8 065:778.344 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:778.420 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 065:778.796 Data: 00 00 00 00 -T98A8 065:778.912 - 0.573ms returns 4 (0x4) -T98A8 065:779.000 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:779.084 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 065:779.468 Data: 00 00 00 00 -T98A8 065:779.564 - 0.565ms returns 4 (0x4) -T98A8 065:779.640 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:779.704 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 065:780.052 Data: 80 56 43 BC -T98A8 065:780.148 - 0.506ms returns 4 (0x4) -T98A8 065:780.224 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:780.280 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 065:781.248 Data: 00 00 00 00 -T98A8 065:781.356 - 1.134ms returns 4 (0x4) -T98A8 065:781.440 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:781.504 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 065:781.964 Data: 03 -T98A8 065:782.252 - 0.809ms returns 1 (0x1) -T98A8 065:782.408 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:782.548 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 065:782.952 Data: 01 -T98A8 065:783.084 - 0.683ms returns 1 (0x1) -T98A8 065:783.168 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:783.240 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 065:783.584 Data: 03 -T98A8 065:783.744 - 0.572ms returns 1 (0x1) -T98A8 065:783.848 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:783.916 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 065:784.264 Data: 01 -T98A8 065:784.416 - 0.568ms returns 1 (0x1) -T98A8 065:784.512 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:784.588 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 065:785.044 Data: 03 -T98A8 065:785.144 - 0.637ms returns 1 (0x1) -T98A8 065:785.216 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:785.280 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 065:785.620 Data: 03 -T98A8 065:785.716 - 0.497ms returns 1 (0x1) -T98A8 065:785.784 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:785.844 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 065:786.196 Data: 02 -T98A8 065:786.348 - 0.563ms returns 1 (0x1) -T98A8 065:786.440 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:786.528 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 065:786.988 Data: 01 -T98A8 065:787.096 - 0.657ms returns 1 (0x1) -T98A8 065:787.220 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:787.284 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 065:787.608 Data: 00 00 00 00 -T98A8 065:787.736 - 0.519ms returns 4 (0x4) -T98A8 065:787.860 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:787.924 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 065:788.264 Data: 00 -T98A8 065:788.360 - 0.502ms returns 1 (0x1) -T98A8 065:790.188 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 065:790.344 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 065:790.728 Data: 00 -T98A8 065:790.872 - 0.689ms returns 1 (0x1) -T98A8 065:791.080 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:791.156 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 065:791.512 Data: 10 CF 01 20 -T98A8 065:791.628 - 0.552ms returns 4 (0x4) -T98A8 065:791.724 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 065:791.796 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 065:792.180 Data: 49 CF 01 20 -T98A8 065:792.276 - 0.548ms returns 4 (0x4) -T358C 065:792.488 JLINK_IsHalted() -T358C 065:792.852 - 0.364ms returns FALSE -T358C 065:893.472 JLINK_HasError() -T358C 065:893.592 JLINK_IsHalted() -T358C 065:893.928 - 0.331ms returns FALSE -T358C 065:994.304 JLINK_HasError() -T358C 065:994.484 JLINK_IsHalted() -T358C 065:994.888 - 0.403ms returns FALSE -T358C 066:095.272 JLINK_HasError() -T358C 066:095.512 JLINK_IsHalted() -T358C 066:095.948 - 0.435ms returns FALSE -T358C 066:196.200 JLINK_HasError() -T358C 066:196.456 JLINK_IsHalted() -T358C 066:196.928 - 0.469ms returns FALSE -T358C 066:298.392 JLINK_HasError() -T358C 066:298.568 JLINK_HasError() -T358C 066:298.644 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 066:298.740 Data: F7 AE 0E 05 -T358C 066:298.828 Debug reg: DWT_CYCCNT -T358C 066:298.912 - 0.268ms returns 1 (0x1) -T98A8 066:299.128 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 066:299.296 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 066:299.924 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 066:300.104 - 0.978ms returns 25 (0x19) -T98A8 066:300.224 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:300.308 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 066:300.692 Data: 40 C4 01 20 -T98A8 066:300.820 - 0.598ms returns 4 (0x4) -T98A8 066:301.016 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:301.080 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 066:301.432 Data: 01 00 00 00 -T98A8 066:301.544 - 0.525ms returns 4 (0x4) -T98A8 066:301.624 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:301.688 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 066:302.112 Data: 00 00 00 00 -T98A8 066:302.232 - 0.610ms returns 4 (0x4) -T98A8 066:302.312 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:302.388 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 066:302.836 Data: 00 00 00 00 -T98A8 066:302.956 - 0.644ms returns 4 (0x4) -T98A8 066:303.052 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:303.116 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 066:303.520 Data: 80 56 43 BC -T98A8 066:303.624 - 0.570ms returns 4 (0x4) -T98A8 066:303.692 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:303.764 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 066:304.108 Data: 00 00 00 00 -T98A8 066:304.216 - 0.523ms returns 4 (0x4) -T98A8 066:304.308 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:304.376 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 066:304.728 Data: 03 -T98A8 066:304.824 - 0.514ms returns 1 (0x1) -T98A8 066:304.896 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:304.960 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 066:305.320 Data: 01 -T98A8 066:305.472 - 0.580ms returns 1 (0x1) -T98A8 066:305.560 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:305.640 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 066:306.092 Data: 03 -T98A8 066:306.232 - 0.672ms returns 1 (0x1) -T98A8 066:306.304 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:306.368 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 066:306.732 Data: 01 -T98A8 066:306.856 - 0.551ms returns 1 (0x1) -T98A8 066:306.924 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:306.996 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 066:307.352 Data: 03 -T98A8 066:307.468 - 0.540ms returns 1 (0x1) -T98A8 066:307.540 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:307.608 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 066:308.072 Data: 03 -T98A8 066:308.172 - 0.634ms returns 1 (0x1) -T98A8 066:308.244 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:308.328 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 066:308.692 Data: 02 -T98A8 066:308.824 - 0.580ms returns 1 (0x1) -T98A8 066:308.904 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:308.972 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 066:309.344 Data: 01 -T98A8 066:309.516 - 0.615ms returns 1 (0x1) -T98A8 066:309.592 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:309.672 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 066:310.092 Data: 00 00 00 00 -T98A8 066:310.240 - 0.641ms returns 4 (0x4) -T98A8 066:310.376 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:310.472 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 066:310.836 Data: 00 -T98A8 066:310.936 - 0.564ms returns 1 (0x1) -T98A8 066:312.556 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:312.692 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 066:313.164 Data: 00 -T98A8 066:313.304 - 0.747ms returns 1 (0x1) -T98A8 066:313.512 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:313.608 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 066:313.976 Data: 10 CF 01 20 -T98A8 066:314.100 - 0.590ms returns 4 (0x4) -T98A8 066:314.208 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:314.272 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 066:314.636 Data: 49 CF 01 20 -T98A8 066:315.240 - 1.032ms returns 4 (0x4) -T358C 066:316.128 JLINK_IsHalted() -T358C 066:316.852 - 0.723ms returns FALSE -T358C 066:417.876 JLINK_HasError() -T358C 066:418.104 JLINK_IsHalted() -T358C 066:418.568 - 0.462ms returns FALSE -T358C 066:519.092 JLINK_HasError() -T358C 066:530.248 JLINK_IsHalted() -T358C 066:530.732 - 0.490ms returns FALSE -T358C 066:631.768 JLINK_HasError() -T358C 066:631.924 JLINK_IsHalted() -T358C 066:632.340 - 0.415ms returns FALSE -T358C 066:733.612 JLINK_HasError() -T358C 066:733.832 JLINK_IsHalted() -T358C 066:734.488 - 0.657ms returns FALSE -T358C 066:835.448 JLINK_HasError() -T358C 066:835.820 JLINK_HasError() -T358C 066:835.960 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 066:836.104 Data: F7 AE 0E 05 -T358C 066:836.268 Debug reg: DWT_CYCCNT -T358C 066:836.428 - 0.470ms returns 1 (0x1) -T98A8 066:836.664 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 066:836.800 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 066:837.408 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 066:837.568 - 0.904ms returns 25 (0x19) -T98A8 066:837.752 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:837.848 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 066:838.248 Data: 40 C4 01 20 -T98A8 066:838.356 - 0.599ms returns 4 (0x4) -T98A8 066:838.472 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:838.552 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 066:838.956 Data: 01 00 00 00 -T98A8 066:839.060 - 0.587ms returns 4 (0x4) -T98A8 066:839.144 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:839.208 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 066:839.636 Data: 00 00 00 00 -T98A8 066:839.796 - 0.649ms returns 4 (0x4) -T98A8 066:839.880 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:839.960 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 066:840.328 Data: 00 00 00 00 -T98A8 066:840.472 - 0.590ms returns 4 (0x4) -T98A8 066:840.584 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:840.672 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 066:841.112 Data: 80 56 43 BC -T98A8 066:841.224 - 0.643ms returns 4 (0x4) -T98A8 066:841.292 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:841.356 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 066:841.728 Data: 00 00 00 00 -T98A8 066:841.816 - 0.526ms returns 4 (0x4) -T98A8 066:841.900 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:841.964 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 066:842.328 Data: 03 -T98A8 066:842.452 - 0.547ms returns 1 (0x1) -T98A8 066:842.516 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:842.584 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 066:843.124 Data: 01 -T98A8 066:843.240 - 0.718ms returns 1 (0x1) -T98A8 066:843.304 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:843.368 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 066:843.800 Data: 03 -T98A8 066:843.892 - 0.589ms returns 1 (0x1) -T98A8 066:843.960 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:844.020 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 066:844.392 Data: 01 -T98A8 066:844.480 - 0.522ms returns 1 (0x1) -T98A8 066:844.544 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:844.608 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 066:844.972 Data: 03 -T98A8 066:845.128 - 0.580ms returns 1 (0x1) -T98A8 066:845.208 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:845.292 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 066:845.804 Data: 03 -T98A8 066:845.940 - 0.726ms returns 1 (0x1) -T98A8 066:846.008 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:846.088 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 066:846.484 Data: 02 -T98A8 066:846.616 - 0.608ms returns 1 (0x1) -T98A8 066:846.712 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:846.792 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 066:847.188 Data: 01 -T98A8 066:847.288 - 0.576ms returns 1 (0x1) -T98A8 066:847.352 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:847.432 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 066:847.796 Data: 00 00 00 00 -T98A8 066:847.904 - 0.547ms returns 4 (0x4) -T98A8 066:848.008 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:848.076 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 066:848.488 Data: 00 -T98A8 066:848.648 - 0.637ms returns 1 (0x1) -T98A8 066:849.512 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 066:849.624 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 066:849.984 Data: 00 -T98A8 066:850.112 - 0.600ms returns 1 (0x1) -T98A8 066:850.264 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:850.336 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 066:850.700 Data: 10 CF 01 20 -T98A8 066:850.804 - 0.535ms returns 4 (0x4) -T98A8 066:850.888 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 066:850.956 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 066:851.360 Data: 49 CF 01 20 -T98A8 066:851.512 - 0.625ms returns 4 (0x4) -T358C 066:851.704 JLINK_IsHalted() -T358C 066:852.108 - 0.403ms returns FALSE -T358C 066:952.652 JLINK_HasError() -T358C 066:952.960 JLINK_IsHalted() -T358C 066:953.368 - 0.413ms returns FALSE -T358C 067:054.252 JLINK_HasError() -T358C 067:054.456 JLINK_IsHalted() -T358C 067:054.976 - 0.517ms returns FALSE -T358C 067:155.952 JLINK_HasError() -T358C 067:156.224 JLINK_IsHalted() -T358C 067:156.784 - 0.554ms returns FALSE -T358C 067:257.312 JLINK_HasError() -T358C 067:257.456 JLINK_IsHalted() -T358C 067:257.872 - 0.411ms returns FALSE -T358C 067:358.600 JLINK_HasError() -T358C 067:358.784 JLINK_HasError() -T358C 067:358.864 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 067:358.944 Data: F7 AE 0E 05 -T358C 067:359.056 Debug reg: DWT_CYCCNT -T358C 067:359.136 - 0.277ms returns 1 (0x1) -T98A8 067:359.472 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 067:359.616 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 067:360.232 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 067:360.504 - 1.024ms returns 25 (0x19) -T98A8 067:360.656 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:360.752 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 067:361.224 Data: 40 C4 01 20 -T98A8 067:361.360 - 0.697ms returns 4 (0x4) -T98A8 067:361.560 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:361.648 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 067:362.008 Data: 01 00 00 00 -T98A8 067:362.160 - 0.598ms returns 4 (0x4) -T98A8 067:362.328 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:362.416 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 067:362.800 Data: 00 00 00 00 -T98A8 067:362.968 - 0.638ms returns 4 (0x4) -T98A8 067:363.072 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:363.160 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 067:363.592 Data: 00 00 00 00 -T98A8 067:363.712 - 0.643ms returns 4 (0x4) -T98A8 067:363.800 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:363.872 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 067:364.240 Data: 80 56 43 BC -T98A8 067:364.368 - 0.569ms returns 4 (0x4) -T98A8 067:364.448 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:364.656 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 067:365.184 Data: 00 00 00 00 -T98A8 067:365.376 - 0.924ms returns 4 (0x4) -T98A8 067:365.536 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:365.616 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 067:365.976 Data: 03 -T98A8 067:366.144 - 0.611ms returns 1 (0x1) -T98A8 067:366.224 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:366.328 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 067:366.688 Data: 01 -T98A8 067:366.816 - 0.593ms returns 1 (0x1) -T98A8 067:366.888 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:366.960 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 067:367.312 Data: 03 -T98A8 067:367.416 - 0.528ms returns 1 (0x1) -T98A8 067:367.480 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:367.568 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 067:367.960 Data: 01 -T98A8 067:368.096 - 0.611ms returns 1 (0x1) -T98A8 067:368.168 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:368.240 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 067:368.592 Data: 03 -T98A8 067:368.696 - 0.532ms returns 1 (0x1) -T98A8 067:368.816 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:368.888 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 067:369.296 Data: 03 -T98A8 067:369.504 - 0.695ms returns 1 (0x1) -T98A8 067:369.624 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:369.744 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 067:370.248 Data: 02 -T98A8 067:370.416 - 0.793ms returns 1 (0x1) -T98A8 067:370.512 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:370.584 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 067:370.992 Data: 01 -T98A8 067:371.152 - 0.640ms returns 1 (0x1) -T98A8 067:371.232 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:371.312 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 067:371.888 Data: 00 00 00 00 -T98A8 067:372.016 - 0.784ms returns 4 (0x4) -T98A8 067:372.168 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:372.232 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 067:372.592 Data: 00 -T98A8 067:372.736 - 0.573ms returns 1 (0x1) -T98A8 067:373.936 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:374.032 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 067:374.392 Data: 00 -T98A8 067:374.520 - 0.591ms returns 1 (0x1) -T98A8 067:374.704 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:374.800 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 067:375.216 Data: 10 CF 01 20 -T98A8 067:375.312 - 0.611ms returns 4 (0x4) -T98A8 067:375.408 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:375.504 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 067:375.936 Data: 49 CF 01 20 -T98A8 067:376.160 - 0.747ms returns 4 (0x4) -T358C 067:376.432 JLINK_IsHalted() -T358C 067:376.832 - 0.401ms returns FALSE -T98A8 067:397.744 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:398.000 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 067:398.600 Data: 02 -T98A8 067:398.808 - 1.074ms returns 1 (0x1) -T98A8 067:399.064 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:399.200 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 067:399.648 Data: 02 -T98A8 067:399.792 - 0.733ms returns 1 (0x1) -T98A8 067:417.000 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:417.176 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 067:417.632 Data: 02 -T98A8 067:417.768 - 0.772ms returns 1 (0x1) -T358C 067:477.624 JLINK_HasError() -T358C 067:477.864 JLINK_IsHalted() -T358C 067:478.288 - 0.420ms returns FALSE -T358C 067:579.376 JLINK_HasError() -T358C 067:579.632 JLINK_IsHalted() -T358C 067:580.168 - 0.524ms returns FALSE -T358C 067:680.656 JLINK_HasError() -T358C 067:680.880 JLINK_IsHalted() -T358C 067:681.400 - 0.513ms returns FALSE -T358C 067:782.448 JLINK_HasError() -T358C 067:782.624 JLINK_IsHalted() -T358C 067:783.016 - 0.388ms returns FALSE -T358C 067:883.632 JLINK_HasError() -T358C 067:883.872 JLINK_HasError() -T358C 067:884.000 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 067:884.112 Data: F7 AE 0E 05 -T358C 067:884.200 Debug reg: DWT_CYCCNT -T358C 067:884.280 - 0.280ms returns 1 (0x1) -T98A8 067:884.608 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 067:884.752 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 067:886.016 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 067:886.192 - 1.586ms returns 25 (0x19) -T98A8 067:886.336 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:886.416 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 067:886.832 Data: 02 -T98A8 067:886.976 - 0.638ms returns 1 (0x1) -T98A8 067:887.144 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:887.248 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 067:888.328 Data: 40 C4 01 20 -T98A8 067:888.480 - 1.337ms returns 4 (0x4) -T98A8 067:888.664 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:888.776 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 067:889.200 Data: 01 00 00 00 -T98A8 067:889.392 - 0.721ms returns 4 (0x4) -T98A8 067:889.520 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:889.608 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 067:889.968 Data: 00 00 00 00 -T98A8 067:890.104 - 0.588ms returns 4 (0x4) -T98A8 067:890.192 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:890.256 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 067:890.608 Data: 00 00 00 00 -T98A8 067:890.720 - 0.528ms returns 4 (0x4) -T98A8 067:890.800 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:890.872 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 067:891.208 Data: 80 56 43 BC -T98A8 067:891.304 - 0.497ms returns 4 (0x4) -T98A8 067:891.376 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:891.440 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 067:891.760 Data: 00 00 00 00 -T98A8 067:891.856 - 0.479ms returns 4 (0x4) -T98A8 067:891.928 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:891.992 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 067:892.312 Data: 03 -T98A8 067:892.408 - 0.481ms returns 1 (0x1) -T98A8 067:892.488 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:892.560 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 067:892.904 Data: 01 -T98A8 067:893.008 - 0.528ms returns 1 (0x1) -T98A8 067:893.088 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:893.168 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 067:893.576 Data: 03 -T98A8 067:893.720 - 0.633ms returns 1 (0x1) -T98A8 067:893.808 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:893.888 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 067:894.248 Data: 01 -T98A8 067:894.360 - 0.553ms returns 1 (0x1) -T98A8 067:894.440 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:894.512 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 067:894.896 Data: 03 -T98A8 067:894.992 - 0.545ms returns 1 (0x1) -T98A8 067:895.056 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:895.120 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 067:895.480 Data: 03 -T98A8 067:895.632 - 0.582ms returns 1 (0x1) -T98A8 067:895.728 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:895.800 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 067:896.320 Data: 02 -T98A8 067:896.456 - 0.730ms returns 1 (0x1) -T98A8 067:896.528 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:896.592 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 067:896.960 Data: 01 -T98A8 067:897.064 - 0.537ms returns 1 (0x1) -T98A8 067:897.128 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:897.192 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 067:897.584 Data: 00 00 00 00 -T98A8 067:897.688 - 0.564ms returns 4 (0x4) -T98A8 067:897.800 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:897.872 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 067:898.760 Data: 00 -T98A8 067:899.040 - 1.245ms returns 1 (0x1) -T98A8 067:899.592 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 067:899.696 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 067:900.176 Data: 00 -T98A8 067:900.416 - 0.826ms returns 1 (0x1) -T98A8 067:900.912 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:901.008 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 067:901.408 Data: 10 CF 01 20 -T98A8 067:901.512 - 0.601ms returns 4 (0x4) -T98A8 067:901.608 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 067:901.672 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 067:902.040 Data: 49 CF 01 20 -T98A8 067:902.160 - 0.551ms returns 4 (0x4) -T358C 067:902.552 JLINK_IsHalted() -T358C 067:902.992 - 0.440ms returns FALSE -T358C 068:003.240 JLINK_HasError() -T358C 068:003.416 JLINK_IsHalted() -T358C 068:003.912 - 0.496ms returns FALSE -T358C 068:104.088 JLINK_HasError() -T358C 068:104.288 JLINK_IsHalted() -T358C 068:104.768 - 0.472ms returns FALSE -T358C 068:205.352 JLINK_HasError() -T358C 068:205.608 JLINK_IsHalted() -T358C 068:206.024 - 0.409ms returns FALSE -T358C 068:306.400 JLINK_HasError() -T358C 068:306.768 JLINK_IsHalted() -T358C 068:307.248 - 0.480ms returns FALSE -T358C 068:407.984 JLINK_HasError() -T358C 068:408.272 JLINK_HasError() -T358C 068:408.376 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 068:408.504 Data: F7 AE 0E 05 -T358C 068:408.616 Debug reg: DWT_CYCCNT -T358C 068:408.720 - 0.344ms returns 1 (0x1) -T98A8 068:409.040 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 068:409.208 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 068:409.944 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 068:410.072 - 1.035ms returns 25 (0x19) -T98A8 068:410.192 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:410.272 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 068:410.736 Data: 02 -T98A8 068:410.904 - 0.711ms returns 1 (0x1) -T98A8 068:411.128 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:411.248 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 068:412.592 Data: 40 C4 01 20 -T98A8 068:412.848 - 1.720ms returns 4 (0x4) -T98A8 068:413.080 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:413.176 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 068:413.600 Data: 01 00 00 00 -T98A8 068:413.736 - 0.655ms returns 4 (0x4) -T98A8 068:413.848 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:413.968 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 068:414.392 Data: 00 00 00 00 -T98A8 068:414.552 - 0.704ms returns 4 (0x4) -T98A8 068:414.648 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:414.736 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 068:415.120 Data: 00 00 00 00 -T98A8 068:415.272 - 0.617ms returns 4 (0x4) -T98A8 068:415.376 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:415.472 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 068:415.848 Data: 80 56 43 BC -T98A8 068:416.144 - 0.765ms returns 4 (0x4) -T98A8 068:416.240 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:416.400 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 068:416.880 Data: 00 00 00 00 -T98A8 068:417.024 - 0.777ms returns 4 (0x4) -T98A8 068:417.152 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:417.248 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 068:417.672 Data: 03 -T98A8 068:417.848 - 0.702ms returns 1 (0x1) -T98A8 068:417.936 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:418.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 068:418.456 Data: 01 -T98A8 068:418.632 - 0.687ms returns 1 (0x1) -T98A8 068:418.736 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:418.856 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 068:419.272 Data: 03 -T98A8 068:419.424 - 0.684ms returns 1 (0x1) -T98A8 068:419.536 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:419.736 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 068:420.232 Data: 01 -T98A8 068:420.408 - 0.880ms returns 1 (0x1) -T98A8 068:420.512 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:420.624 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 068:420.976 Data: 03 -T98A8 068:421.072 - 0.563ms returns 1 (0x1) -T98A8 068:421.144 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:421.208 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 068:421.552 Data: 03 -T98A8 068:421.656 - 0.511ms returns 1 (0x1) -T98A8 068:421.720 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:421.792 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 068:422.296 Data: 02 -T98A8 068:422.480 - 0.755ms returns 1 (0x1) -T98A8 068:422.576 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:422.672 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 068:423.056 Data: 01 -T98A8 068:423.192 - 0.619ms returns 1 (0x1) -T98A8 068:423.288 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:423.376 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 068:423.848 Data: 00 00 00 00 -T98A8 068:424.016 - 0.728ms returns 4 (0x4) -T98A8 068:424.208 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:424.304 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 068:424.872 Data: 00 -T98A8 068:425.016 - 0.804ms returns 1 (0x1) -T98A8 068:425.480 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:425.576 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 068:426.000 Data: 00 -T98A8 068:426.192 - 0.711ms returns 1 (0x1) -T98A8 068:426.640 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:426.744 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 068:427.120 Data: 10 CF 01 20 -T98A8 068:427.216 - 0.575ms returns 4 (0x4) -T98A8 068:427.312 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:427.376 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 068:427.736 Data: 49 CF 01 20 -T98A8 068:427.840 - 0.528ms returns 4 (0x4) -T358C 068:428.112 JLINK_IsHalted() -T358C 068:428.512 - 0.400ms returns FALSE -T358C 068:528.856 JLINK_HasError() -T358C 068:529.064 JLINK_IsHalted() -T358C 068:529.568 - 0.500ms returns FALSE -T358C 068:630.280 JLINK_HasError() -T358C 068:630.728 JLINK_IsHalted() -T358C 068:631.280 - 0.557ms returns FALSE -T358C 068:731.976 JLINK_HasError() -T358C 068:732.200 JLINK_IsHalted() -T358C 068:732.672 - 0.468ms returns FALSE -T358C 068:833.688 JLINK_HasError() -T358C 068:833.872 JLINK_IsHalted() -T358C 068:834.288 - 0.420ms returns FALSE -T358C 068:934.696 JLINK_HasError() -T358C 068:934.968 JLINK_HasError() -T358C 068:935.088 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 068:935.224 Data: F7 AE 0E 05 -T358C 068:935.384 Debug reg: DWT_CYCCNT -T358C 068:935.472 - 0.389ms returns 1 (0x1) -T98A8 068:935.792 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 068:936.040 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 068:936.768 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 068:936.928 - 1.139ms returns 25 (0x19) -T98A8 068:937.032 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:937.104 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 068:937.536 Data: 02 -T98A8 068:937.712 - 0.679ms returns 1 (0x1) -T98A8 068:937.912 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:938.048 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 068:938.472 Data: 40 C4 01 20 -T98A8 068:938.632 - 0.715ms returns 4 (0x4) -T98A8 068:938.752 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:938.832 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 068:939.256 Data: 01 00 00 00 -T98A8 068:939.376 - 0.629ms returns 4 (0x4) -T98A8 068:939.480 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:939.544 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 068:939.920 Data: 00 00 00 00 -T98A8 068:940.040 - 0.562ms returns 4 (0x4) -T98A8 068:940.112 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:940.176 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 068:940.528 Data: 00 00 00 00 -T98A8 068:940.624 - 0.508ms returns 4 (0x4) -T98A8 068:940.704 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:940.768 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 068:941.104 Data: 80 56 43 BC -T98A8 068:941.200 - 0.493ms returns 4 (0x4) -T98A8 068:941.264 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:941.328 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 068:941.744 Data: 00 00 00 00 -T98A8 068:941.896 - 0.627ms returns 4 (0x4) -T98A8 068:942.000 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:942.064 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 068:943.088 Data: 03 -T98A8 068:943.240 - 1.244ms returns 1 (0x1) -T98A8 068:943.320 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:943.408 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 068:943.776 Data: 01 -T98A8 068:943.888 - 0.565ms returns 1 (0x1) -T98A8 068:943.960 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:944.024 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 068:944.384 Data: 03 -T98A8 068:944.480 - 0.519ms returns 1 (0x1) -T98A8 068:944.544 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:944.608 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 068:944.952 Data: 01 -T98A8 068:945.056 - 0.510ms returns 1 (0x1) -T98A8 068:945.120 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:945.176 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 068:945.512 Data: 03 -T98A8 068:945.616 - 0.491ms returns 1 (0x1) -T98A8 068:945.680 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:945.744 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 068:946.064 Data: 03 -T98A8 068:946.160 - 0.485ms returns 1 (0x1) -T98A8 068:946.224 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:946.288 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 068:946.608 Data: 02 -T98A8 068:946.704 - 0.479ms returns 1 (0x1) -T98A8 068:946.768 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:946.832 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 068:947.160 Data: 01 -T98A8 068:947.312 - 0.546ms returns 1 (0x1) -T98A8 068:947.408 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:947.520 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 068:948.136 Data: 00 00 00 00 -T98A8 068:948.264 - 0.851ms returns 4 (0x4) -T98A8 068:948.384 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:948.464 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 068:948.880 Data: 00 -T98A8 068:948.992 - 0.610ms returns 1 (0x1) -T98A8 068:949.784 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 068:949.912 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 068:950.312 Data: 00 -T98A8 068:950.456 - 0.672ms returns 1 (0x1) -T98A8 068:950.640 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:950.744 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 068:951.152 Data: 10 CF 01 20 -T98A8 068:951.296 - 0.661ms returns 4 (0x4) -T98A8 068:951.408 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 068:951.488 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 068:951.864 Data: 49 CF 01 20 -T98A8 068:951.984 - 0.569ms returns 4 (0x4) -T358C 068:952.240 JLINK_IsHalted() -T358C 068:952.592 - 0.361ms returns FALSE -T358C 069:053.360 JLINK_HasError() -T358C 069:053.568 JLINK_IsHalted() -T358C 069:054.000 - 0.424ms returns FALSE -T358C 069:154.656 JLINK_HasError() -T358C 069:154.848 JLINK_IsHalted() -T358C 069:155.304 - 0.449ms returns FALSE -T358C 069:256.424 JLINK_HasError() -T358C 069:256.584 JLINK_IsHalted() -T358C 069:257.008 - 0.418ms returns FALSE -T358C 069:358.288 JLINK_HasError() -T358C 069:358.576 JLINK_IsHalted() -T358C 069:359.016 - 0.435ms returns FALSE -T358C 069:459.712 JLINK_HasError() -T358C 069:459.928 JLINK_HasError() -T358C 069:460.016 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 069:460.128 Data: F7 AE 0E 05 -T358C 069:460.272 Debug reg: DWT_CYCCNT -T358C 069:460.376 - 0.361ms returns 1 (0x1) -T98A8 069:460.688 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 069:460.872 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 069:461.616 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 069:461.792 - 1.109ms returns 25 (0x19) -T98A8 069:461.920 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:462.024 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 069:462.520 Data: 02 -T98A8 069:462.728 - 0.802ms returns 1 (0x1) -T98A8 069:462.976 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:463.080 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 069:463.584 Data: 40 C4 01 20 -T98A8 069:463.784 - 0.811ms returns 4 (0x4) -T98A8 069:464.016 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:464.144 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 069:464.616 Data: 01 00 00 00 -T98A8 069:464.824 - 0.806ms returns 4 (0x4) -T98A8 069:464.976 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:465.096 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 069:465.544 Data: 00 00 00 00 -T98A8 069:465.704 - 0.721ms returns 4 (0x4) -T98A8 069:465.832 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:465.936 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 069:466.352 Data: 00 00 00 00 -T98A8 069:466.496 - 0.670ms returns 4 (0x4) -T98A8 069:466.608 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:466.704 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 069:467.120 Data: 80 56 43 BC -T98A8 069:467.312 - 0.695ms returns 4 (0x4) -T98A8 069:467.408 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:467.504 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 069:467.952 Data: 00 00 00 00 -T98A8 069:468.128 - 0.714ms returns 4 (0x4) -T98A8 069:468.248 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:468.336 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 069:468.752 Data: 03 -T98A8 069:468.912 - 0.667ms returns 1 (0x1) -T98A8 069:469.016 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:469.104 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 069:469.536 Data: 01 -T98A8 069:469.736 - 0.713ms returns 1 (0x1) -T98A8 069:469.936 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:470.056 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 069:470.512 Data: 03 -T98A8 069:470.680 - 0.749ms returns 1 (0x1) -T98A8 069:470.776 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:470.888 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 069:471.312 Data: 01 -T98A8 069:471.472 - 0.688ms returns 1 (0x1) -T98A8 069:471.560 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:471.656 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 069:472.112 Data: 03 -T98A8 069:472.496 - 0.931ms returns 1 (0x1) -T98A8 069:472.624 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:472.848 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 069:473.312 Data: 03 -T98A8 069:473.480 - 0.853ms returns 1 (0x1) -T98A8 069:473.672 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:473.800 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 069:474.304 Data: 02 -T98A8 069:474.504 - 0.827ms returns 1 (0x1) -T98A8 069:474.608 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:474.736 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 069:475.208 Data: 01 -T98A8 069:475.376 - 0.759ms returns 1 (0x1) -T98A8 069:475.472 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:475.584 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 069:476.016 Data: 00 00 00 00 -T98A8 069:476.176 - 0.702ms returns 4 (0x4) -T98A8 069:476.392 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:476.496 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 069:477.000 Data: 00 -T98A8 069:477.160 - 0.771ms returns 1 (0x1) -T98A8 069:477.664 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:477.776 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 069:478.216 Data: 00 -T98A8 069:478.376 - 0.712ms returns 1 (0x1) -T98A8 069:478.696 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:478.856 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 069:479.320 Data: 10 CF 01 20 -T98A8 069:479.488 - 0.799ms returns 4 (0x4) -T98A8 069:479.640 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:479.784 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 069:480.304 Data: 49 CF 01 20 -T98A8 069:480.504 - 0.859ms returns 4 (0x4) -T358C 069:481.040 JLINK_IsHalted() -T358C 069:481.480 - 0.435ms returns FALSE -T358C 069:582.192 JLINK_HasError() -T358C 069:582.432 JLINK_IsHalted() -T358C 069:582.896 - 0.466ms returns FALSE -T358C 069:683.648 JLINK_HasError() -T358C 069:683.920 JLINK_IsHalted() -T358C 069:684.464 - 0.548ms returns FALSE -T358C 069:785.200 JLINK_HasError() -T358C 069:785.400 JLINK_IsHalted() -T358C 069:785.832 - 0.429ms returns FALSE -T98A8 069:811.448 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:811.640 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 069:812.360 Data: 00 00 00 00 -T98A8 069:812.496 - 1.047ms returns 4 (0x4) -T98A8 069:812.592 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:812.656 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 069:813.128 Data: 00 00 00 00 -T98A8 069:813.232 - 0.643ms returns 4 (0x4) -T98A8 069:813.296 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:813.360 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 069:813.864 Data: 80 56 43 BC -T98A8 069:814.000 - 0.695ms returns 4 (0x4) -T98A8 069:814.080 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:814.192 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 069:814.712 Data: 00 00 00 00 -T98A8 069:815.216 - 1.131ms returns 4 (0x4) -T98A8 069:815.544 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:815.840 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 069:816.536 Data: 02 -T98A8 069:816.672 - 1.132ms returns 1 (0x1) -T98A8 069:816.752 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:816.816 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 069:817.176 Data: 01 -T98A8 069:817.288 - 0.540ms returns 1 (0x1) -T98A8 069:817.360 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:817.416 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 069:817.744 Data: 02 -T98A8 069:817.832 - 0.477ms returns 1 (0x1) -T98A8 069:817.888 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:817.952 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 069:818.304 Data: 01 -T98A8 069:818.400 - 0.510ms returns 1 (0x1) -T98A8 069:818.472 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:818.536 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 069:818.872 Data: 02 -T98A8 069:818.960 - 0.495ms returns 1 (0x1) -T98A8 069:819.024 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:819.088 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 069:819.472 Data: 02 -T98A8 069:819.608 - 0.586ms returns 1 (0x1) -T98A8 069:819.680 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:819.776 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 069:820.216 Data: 03 -T98A8 069:820.376 - 0.696ms returns 1 (0x1) -T98A8 069:820.456 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:820.528 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 069:820.912 Data: 01 -T98A8 069:821.040 - 0.583ms returns 1 (0x1) -T98A8 069:821.128 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 069:821.200 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 069:821.632 Data: 00 00 -T98A8 069:821.800 - 0.673ms returns 2 (0x2) -T98A8 069:821.880 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 069:821.952 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 069:822.704 Data: 00 00 -T98A8 069:822.856 - 0.974ms returns 2 (0x2) -T98A8 069:823.040 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:823.128 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 069:824.008 Data: 00 00 00 00 -T98A8 069:824.120 - 1.082ms returns 4 (0x4) -T98A8 069:824.192 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:824.272 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 069:824.752 Data: 00 00 00 00 -T98A8 069:824.880 - 0.684ms returns 4 (0x4) -T98A8 069:824.944 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:825.000 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 069:825.456 Data: 80 56 43 BC -T98A8 069:825.552 - 0.608ms returns 4 (0x4) -T98A8 069:825.616 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:825.672 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 069:826.120 Data: 00 00 00 00 -T98A8 069:826.200 - 0.589ms returns 4 (0x4) -T98A8 069:826.256 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:826.352 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 069:826.832 Data: 02 -T98A8 069:826.944 - 0.684ms returns 1 (0x1) -T98A8 069:827.008 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:827.088 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 069:827.464 Data: 01 -T98A8 069:827.568 - 0.559ms returns 1 (0x1) -T98A8 069:827.632 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:827.696 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 069:828.032 Data: 02 -T98A8 069:828.120 - 0.490ms returns 1 (0x1) -T98A8 069:828.184 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:828.240 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 069:828.560 Data: 01 -T98A8 069:828.656 - 0.472ms returns 1 (0x1) -T98A8 069:828.720 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:828.768 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 069:829.104 Data: 02 -T98A8 069:829.192 - 0.476ms returns 1 (0x1) -T98A8 069:829.248 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:829.304 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 069:829.648 Data: 02 -T98A8 069:829.736 - 0.483ms returns 1 (0x1) -T98A8 069:829.792 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:829.848 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 069:830.208 Data: 03 -T98A8 069:830.320 - 0.531ms returns 1 (0x1) -T98A8 069:830.384 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:830.448 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 069:830.864 Data: 01 -T98A8 069:830.952 - 0.564ms returns 1 (0x1) -T98A8 069:831.024 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 069:831.088 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 069:831.512 Data: 00 00 -T98A8 069:831.632 - 0.605ms returns 2 (0x2) -T98A8 069:831.696 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 069:831.760 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 069:832.136 Data: 00 00 -T98A8 069:832.216 - 0.515ms returns 2 (0x2) -T98A8 069:852.200 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:852.368 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 069:853.048 Data: 00 00 00 00 -T98A8 069:853.176 - 0.984ms returns 4 (0x4) -T98A8 069:853.256 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:853.312 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 069:853.904 Data: 00 00 00 00 -T98A8 069:854.056 - 0.800ms returns 4 (0x4) -T98A8 069:854.136 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:854.192 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 069:854.712 Data: 80 56 43 BC -T98A8 069:854.840 - 0.706ms returns 4 (0x4) -T98A8 069:854.912 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:854.968 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 069:855.464 Data: 00 00 00 00 -T98A8 069:855.584 - 0.674ms returns 4 (0x4) -T98A8 069:855.696 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:855.768 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 069:856.176 Data: 02 -T98A8 069:856.288 - 0.599ms returns 1 (0x1) -T98A8 069:856.480 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:856.544 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 069:856.896 Data: 01 -T98A8 069:856.992 - 0.507ms returns 1 (0x1) -T98A8 069:857.048 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:857.112 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 069:857.512 Data: 02 -T98A8 069:857.624 - 0.575ms returns 1 (0x1) -T98A8 069:857.776 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:857.840 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 069:858.352 Data: 01 -T98A8 069:858.488 - 0.706ms returns 1 (0x1) -T98A8 069:858.552 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:858.664 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 069:859.064 Data: 02 -T98A8 069:859.184 - 0.634ms returns 1 (0x1) -T98A8 069:859.256 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:859.320 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 069:859.656 Data: 02 -T98A8 069:859.744 - 0.487ms returns 1 (0x1) -T98A8 069:859.808 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:859.864 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 069:860.208 Data: 03 -T98A8 069:860.320 - 0.513ms returns 1 (0x1) -T98A8 069:860.392 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:860.448 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 069:861.016 Data: 01 -T98A8 069:861.160 - 0.771ms returns 1 (0x1) -T98A8 069:861.232 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 069:861.304 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 069:861.704 Data: 00 00 -T98A8 069:861.808 - 0.572ms returns 2 (0x2) -T98A8 069:861.880 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 069:861.944 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 069:862.328 Data: 00 00 -T98A8 069:862.416 - 0.536ms returns 2 (0x2) -T358C 069:886.544 JLINK_HasError() -T358C 069:886.704 JLINK_IsHalted() -T358C 069:887.120 - 0.405ms returns FALSE -T358C 069:987.824 JLINK_HasError() -T358C 069:987.992 JLINK_HasError() -T358C 069:988.064 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 069:988.152 Data: F7 AE 0E 05 -T358C 069:988.248 Debug reg: DWT_CYCCNT -T358C 069:988.368 - 0.309ms returns 1 (0x1) -T98A8 069:988.720 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 069:988.880 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 069:989.560 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 069:989.936 - 1.214ms returns 25 (0x19) -T98A8 069:990.208 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:990.384 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 069:990.880 Data: 02 -T98A8 069:991.072 - 0.864ms returns 1 (0x1) -T98A8 069:991.232 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:991.320 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 069:991.864 Data: 00 00 00 00 -T98A8 069:992.048 - 0.842ms returns 4 (0x4) -T98A8 069:992.136 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:992.200 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 069:992.696 Data: 00 00 00 00 -T98A8 069:992.848 - 0.714ms returns 4 (0x4) -T98A8 069:992.920 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:992.984 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 069:993.480 Data: 80 56 43 BC -T98A8 069:993.616 - 0.690ms returns 4 (0x4) -T98A8 069:993.696 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 069:993.760 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 069:994.232 Data: 00 00 00 00 -T98A8 069:994.368 - 0.672ms returns 4 (0x4) -T98A8 069:994.448 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:994.528 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 069:994.872 Data: 02 -T98A8 069:994.984 - 0.533ms returns 1 (0x1) -T98A8 069:995.056 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:995.120 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 069:995.448 Data: 01 -T98A8 069:995.552 - 0.497ms returns 1 (0x1) -T98A8 069:995.624 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:995.696 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 069:996.040 Data: 02 -T98A8 069:996.152 - 0.533ms returns 1 (0x1) -T98A8 069:996.224 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:996.288 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 069:996.632 Data: 01 -T98A8 069:996.736 - 0.511ms returns 1 (0x1) -T98A8 069:996.800 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:996.864 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 069:997.232 Data: 02 -T98A8 069:997.360 - 0.563ms returns 1 (0x1) -T98A8 069:997.448 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:997.512 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 069:997.848 Data: 02 -T98A8 069:997.968 - 0.521ms returns 1 (0x1) -T98A8 069:998.048 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:998.160 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 069:998.800 Data: 03 -T98A8 069:998.928 - 0.880ms returns 1 (0x1) -T98A8 069:999.008 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 069:999.088 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 069:999.528 Data: 01 -T98A8 069:999.808 - 0.799ms returns 1 (0x1) -T98A8 069:999.960 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 070:000.088 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 070:000.600 Data: 00 00 -T98A8 070:000.752 - 0.787ms returns 2 (0x2) -T98A8 070:000.824 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 070:000.912 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 070:001.328 Data: 00 00 -T98A8 070:001.456 - 0.629ms returns 2 (0x2) -T98A8 070:001.664 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:001.752 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 070:002.152 Data: 40 C4 01 20 -T98A8 070:002.288 - 0.627ms returns 4 (0x4) -T98A8 070:002.416 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:002.520 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 070:002.904 Data: 01 00 00 00 -T98A8 070:003.032 - 0.609ms returns 4 (0x4) -T98A8 070:003.136 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:003.216 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 070:003.632 Data: 00 00 00 00 -T98A8 070:003.728 - 0.589ms returns 4 (0x4) -T98A8 070:003.792 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:003.856 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 070:004.328 Data: 00 00 00 00 -T98A8 070:004.480 - 0.683ms returns 4 (0x4) -T98A8 070:004.592 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:004.688 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 070:005.080 Data: 80 56 43 BC -T98A8 070:005.272 - 0.684ms returns 4 (0x4) -T98A8 070:005.816 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:005.936 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 070:006.328 Data: 00 00 00 00 -T98A8 070:006.448 - 0.634ms returns 4 (0x4) -T98A8 070:006.544 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:006.608 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 070:006.960 Data: 03 -T98A8 070:007.088 - 0.544ms returns 1 (0x1) -T98A8 070:007.168 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:007.240 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 070:007.616 Data: 01 -T98A8 070:007.712 - 0.543ms returns 1 (0x1) -T98A8 070:007.784 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:007.840 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 070:008.176 Data: 03 -T98A8 070:008.280 - 0.501ms returns 1 (0x1) -T98A8 070:008.344 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:008.408 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 070:008.744 Data: 01 -T98A8 070:008.840 - 0.489ms returns 1 (0x1) -T98A8 070:008.904 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:008.968 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 070:009.320 Data: 03 -T98A8 070:009.416 - 0.511ms returns 1 (0x1) -T98A8 070:009.488 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:009.560 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 070:009.936 Data: 03 -T98A8 070:010.056 - 0.564ms returns 1 (0x1) -T98A8 070:010.128 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:010.200 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 070:010.576 Data: 02 -T98A8 070:010.720 - 0.587ms returns 1 (0x1) -T98A8 070:010.800 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:010.864 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 070:011.216 Data: 01 -T98A8 070:011.312 - 0.518ms returns 1 (0x1) -T98A8 070:011.392 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:011.456 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 070:011.784 Data: 00 00 00 00 -T98A8 070:011.888 - 0.501ms returns 4 (0x4) -T98A8 070:012.016 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:012.112 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 070:012.496 Data: 00 -T98A8 070:012.600 - 0.588ms returns 1 (0x1) -T98A8 070:012.944 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:013.016 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 070:013.360 Data: 00 -T98A8 070:013.456 - 0.508ms returns 1 (0x1) -T98A8 070:013.584 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:013.656 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 070:014.000 Data: 10 CF 01 20 -T98A8 070:014.144 - 0.556ms returns 4 (0x4) -T98A8 070:014.256 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:014.376 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 070:014.752 Data: 49 CF 01 20 -T98A8 070:014.888 - 0.633ms returns 4 (0x4) -T358C 070:015.120 JLINK_IsHalted() -T358C 070:015.464 - 0.343ms returns FALSE -T358C 070:116.912 JLINK_HasError() -T358C 070:117.072 JLINK_IsHalted() -T358C 070:117.504 - 0.429ms returns FALSE -T358C 070:218.192 JLINK_HasError() -T358C 070:218.376 JLINK_IsHalted() -T358C 070:219.472 - 1.092ms returns FALSE -T358C 070:320.992 JLINK_HasError() -T358C 070:321.152 JLINK_IsHalted() -T358C 070:321.568 - 0.415ms returns FALSE -T358C 070:422.552 JLINK_HasError() -T358C 070:422.696 JLINK_IsHalted() -T358C 070:423.040 - 0.345ms returns FALSE -T358C 070:523.824 JLINK_HasError() -T358C 070:524.048 JLINK_HasError() -T358C 070:524.168 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 070:524.312 Data: F7 AE 0E 05 -T358C 070:524.496 Debug reg: DWT_CYCCNT -T358C 070:524.672 - 0.505ms returns 1 (0x1) -T98A8 070:524.976 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 070:525.088 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 070:525.656 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 070:525.808 - 0.838ms returns 25 (0x19) -T98A8 070:525.912 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:526.000 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 070:526.384 Data: 02 -T98A8 070:526.536 - 0.622ms returns 1 (0x1) -T98A8 070:526.672 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:526.760 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 070:527.224 Data: 00 00 00 00 -T98A8 070:527.376 - 0.705ms returns 4 (0x4) -T98A8 070:527.472 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:527.544 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 070:528.080 Data: 00 00 00 00 -T98A8 070:528.240 - 0.766ms returns 4 (0x4) -T98A8 070:528.392 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:528.480 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 070:528.976 Data: 80 56 43 BC -T98A8 070:529.136 - 0.747ms returns 4 (0x4) -T98A8 070:529.224 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:529.296 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 070:529.840 Data: 00 00 00 00 -T98A8 070:529.984 - 0.760ms returns 4 (0x4) -T98A8 070:530.064 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:530.144 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 070:530.544 Data: 02 -T98A8 070:530.704 - 0.639ms returns 1 (0x1) -T98A8 070:530.792 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:530.864 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 070:531.440 Data: 01 -T98A8 070:531.632 - 0.838ms returns 1 (0x1) -T98A8 070:531.784 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:531.952 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 070:532.456 Data: 02 -T98A8 070:532.632 - 0.855ms returns 1 (0x1) -T98A8 070:532.720 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:532.800 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 070:533.160 Data: 01 -T98A8 070:533.296 - 0.575ms returns 1 (0x1) -T98A8 070:533.360 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:533.424 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 070:533.776 Data: 02 -T98A8 070:533.888 - 0.525ms returns 1 (0x1) -T98A8 070:533.960 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:534.032 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 070:534.392 Data: 02 -T98A8 070:534.592 - 0.633ms returns 1 (0x1) -T98A8 070:534.680 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:534.768 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 070:535.144 Data: 03 -T98A8 070:535.264 - 0.578ms returns 1 (0x1) -T98A8 070:535.328 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:535.392 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 070:535.720 Data: 01 -T98A8 070:535.816 - 0.485ms returns 1 (0x1) -T98A8 070:535.888 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 070:535.952 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 070:536.352 Data: 00 00 -T98A8 070:536.504 - 0.619ms returns 2 (0x2) -T98A8 070:536.624 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 070:536.704 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 070:537.104 Data: 00 00 -T98A8 070:537.200 - 0.572ms returns 2 (0x2) -T98A8 070:537.352 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:537.424 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 070:537.784 Data: 40 C4 01 20 -T98A8 070:537.904 - 0.556ms returns 4 (0x4) -T98A8 070:538.000 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:538.064 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 070:538.416 Data: 01 00 00 00 -T98A8 070:538.528 - 0.528ms returns 4 (0x4) -T98A8 070:538.608 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:538.672 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 070:539.000 Data: 00 00 00 00 -T98A8 070:539.112 - 0.501ms returns 4 (0x4) -T98A8 070:539.184 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:539.264 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 070:539.640 Data: 00 00 00 00 -T98A8 070:539.760 - 0.573ms returns 4 (0x4) -T98A8 070:539.848 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:539.920 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 070:540.352 Data: 80 56 43 BC -T98A8 070:540.472 - 0.627ms returns 4 (0x4) -T98A8 070:540.544 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:540.616 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 070:540.944 Data: 00 00 00 00 -T98A8 070:541.040 - 0.494ms returns 4 (0x4) -T98A8 070:541.112 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:541.168 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 070:541.552 Data: 03 -T98A8 070:541.656 - 0.546ms returns 1 (0x1) -T98A8 070:541.736 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:541.808 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 070:542.184 Data: 01 -T98A8 070:542.288 - 0.556ms returns 1 (0x1) -T98A8 070:542.360 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:542.432 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 070:542.768 Data: 03 -T98A8 070:542.872 - 0.508ms returns 1 (0x1) -T98A8 070:542.944 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:543.016 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 070:543.504 Data: 01 -T98A8 070:543.608 - 0.666ms returns 1 (0x1) -T98A8 070:543.680 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:543.752 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 070:544.184 Data: 03 -T98A8 070:544.456 - 0.770ms returns 1 (0x1) -T98A8 070:544.632 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:544.784 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 070:545.176 Data: 03 -T98A8 070:545.456 - 0.822ms returns 1 (0x1) -T98A8 070:545.624 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:545.768 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 070:546.224 Data: 02 -T98A8 070:546.368 - 0.744ms returns 1 (0x1) -T98A8 070:546.448 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:546.528 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 070:546.920 Data: 01 -T98A8 070:547.032 - 0.581ms returns 1 (0x1) -T98A8 070:547.112 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:547.184 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 070:547.600 Data: 00 00 00 00 -T98A8 070:547.696 - 0.586ms returns 4 (0x4) -T98A8 070:547.792 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:547.856 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 070:548.336 Data: 00 -T98A8 070:548.432 - 0.633ms returns 1 (0x1) -T98A8 070:548.720 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 070:548.808 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 070:549.168 Data: 00 -T98A8 070:549.272 - 0.551ms returns 1 (0x1) -T98A8 070:549.408 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:549.488 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 070:549.936 Data: 10 CF 01 20 -T98A8 070:550.032 - 0.624ms returns 4 (0x4) -T98A8 070:550.120 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 070:550.184 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 070:550.592 Data: 49 CF 01 20 -T98A8 070:550.688 - 0.571ms returns 4 (0x4) -T358C 070:550.952 JLINK_IsHalted() -T358C 070:551.480 - 0.528ms returns FALSE -T358C 070:653.040 JLINK_HasError() -T358C 070:653.320 JLINK_IsHalted() -T358C 070:654.416 - 1.090ms returns FALSE -T358C 070:754.752 JLINK_HasError() -T358C 070:754.920 JLINK_IsHalted() -T358C 070:755.472 - 0.550ms returns FALSE -T358C 070:855.872 JLINK_HasError() -T358C 070:856.040 JLINK_IsHalted() -T358C 070:856.560 - 0.515ms returns FALSE -T358C 070:957.448 JLINK_HasError() -T358C 070:957.648 JLINK_IsHalted() -T358C 070:958.064 - 0.411ms returns FALSE -T358C 071:058.544 JLINK_HasError() -T358C 071:058.736 JLINK_HasError() -T358C 071:058.816 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 071:058.896 Data: F7 AE 0E 05 -T358C 071:058.976 Debug reg: DWT_CYCCNT -T358C 071:059.056 - 0.244ms returns 1 (0x1) -T98A8 071:059.304 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 071:059.456 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 071:060.160 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 071:060.464 - 1.166ms returns 25 (0x19) -T98A8 071:060.656 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:060.800 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 071:061.352 Data: 02 -T98A8 071:061.536 - 0.886ms returns 1 (0x1) -T98A8 071:061.680 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:061.752 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 071:062.272 Data: 00 00 00 00 -T98A8 071:062.368 - 0.692ms returns 4 (0x4) -T98A8 071:062.440 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:062.512 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 071:063.064 Data: 00 00 00 00 -T98A8 071:063.160 - 0.723ms returns 4 (0x4) -T98A8 071:063.232 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:063.304 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 071:063.792 Data: 80 56 43 BC -T98A8 071:063.920 - 0.688ms returns 4 (0x4) -T98A8 071:064.000 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:064.072 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 071:064.632 Data: 00 00 00 00 -T98A8 071:064.728 - 0.726ms returns 4 (0x4) -T98A8 071:064.792 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:064.856 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 071:065.320 Data: 02 -T98A8 071:065.600 - 0.806ms returns 1 (0x1) -T98A8 071:065.752 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:065.912 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 071:066.384 Data: 01 -T98A8 071:066.496 - 0.743ms returns 1 (0x1) -T98A8 071:066.568 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:066.632 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 071:066.992 Data: 02 -T98A8 071:067.088 - 0.521ms returns 1 (0x1) -T98A8 071:067.160 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:067.224 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 071:067.656 Data: 01 -T98A8 071:067.744 - 0.581ms returns 1 (0x1) -T98A8 071:067.816 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:067.880 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 071:068.264 Data: 02 -T98A8 071:068.352 - 0.540ms returns 1 (0x1) -T98A8 071:068.424 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:068.488 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 071:068.864 Data: 02 -T98A8 071:068.952 - 0.530ms returns 1 (0x1) -T98A8 071:069.024 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:069.088 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 071:069.440 Data: 03 -T98A8 071:069.600 - 0.572ms returns 1 (0x1) -T98A8 071:069.840 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:069.968 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 071:070.400 Data: 01 -T98A8 071:070.600 - 0.761ms returns 1 (0x1) -T98A8 071:070.680 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 071:070.760 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 071:071.680 Data: 00 00 -T98A8 071:071.832 - 1.151ms returns 2 (0x2) -T98A8 071:071.920 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 071:071.992 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 071:073.112 Data: 00 00 -T98A8 071:073.272 - 1.355ms returns 2 (0x2) -T98A8 071:073.472 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:073.584 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 071:074.720 Data: 40 C4 01 20 -T98A8 071:074.840 - 1.370ms returns 4 (0x4) -T98A8 071:074.952 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:075.016 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 071:075.416 Data: 01 00 00 00 -T98A8 071:075.520 - 0.569ms returns 4 (0x4) -T98A8 071:075.600 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:075.664 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 071:076.040 Data: 00 00 00 00 -T98A8 071:076.136 - 0.534ms returns 4 (0x4) -T98A8 071:076.208 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:076.272 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 071:076.704 Data: 00 00 00 00 -T98A8 071:076.992 - 0.781ms returns 4 (0x4) -T98A8 071:077.264 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:077.408 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 071:077.888 Data: 80 56 43 BC -T98A8 071:078.040 - 0.783ms returns 4 (0x4) -T98A8 071:078.128 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:078.216 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 071:078.576 Data: 00 00 00 00 -T98A8 071:078.696 - 0.560ms returns 4 (0x4) -T98A8 071:078.792 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:078.864 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 071:079.216 Data: 03 -T98A8 071:079.312 - 0.515ms returns 1 (0x1) -T98A8 071:079.376 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:079.440 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 071:079.776 Data: 01 -T98A8 071:079.920 - 0.548ms returns 1 (0x1) -T98A8 071:080.008 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:080.088 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 071:080.432 Data: 03 -T98A8 071:080.544 - 0.536ms returns 1 (0x1) -T98A8 071:080.616 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:080.688 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 071:081.040 Data: 01 -T98A8 071:081.144 - 0.525ms returns 1 (0x1) -T98A8 071:081.216 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:081.288 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 071:081.664 Data: 03 -T98A8 071:081.776 - 0.558ms returns 1 (0x1) -T98A8 071:081.848 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:081.928 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 071:082.536 Data: 03 -T98A8 071:082.680 - 0.831ms returns 1 (0x1) -T98A8 071:082.784 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:082.864 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 071:083.248 Data: 02 -T98A8 071:083.536 - 0.749ms returns 1 (0x1) -T98A8 071:083.664 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:083.728 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 071:084.104 Data: 01 -T98A8 071:084.232 - 0.566ms returns 1 (0x1) -T98A8 071:084.312 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:084.384 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 071:084.776 Data: 00 00 00 00 -T98A8 071:085.088 - 0.777ms returns 4 (0x4) -T98A8 071:085.288 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:085.368 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 071:085.744 Data: 00 -T98A8 071:085.872 - 0.578ms returns 1 (0x1) -T98A8 071:086.288 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:086.416 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 071:086.792 Data: 00 -T98A8 071:086.928 - 0.636ms returns 1 (0x1) -T98A8 071:087.096 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:087.192 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 071:087.536 Data: 10 CF 01 20 -T98A8 071:087.632 - 0.535ms returns 4 (0x4) -T98A8 071:087.728 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:087.792 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 071:088.160 Data: 49 CF 01 20 -T98A8 071:088.256 - 0.525ms returns 4 (0x4) -T358C 071:088.424 JLINK_IsHalted() -T358C 071:088.816 - 0.385ms returns FALSE -T358C 071:189.328 JLINK_HasError() -T358C 071:189.456 JLINK_IsHalted() -T358C 071:189.848 - 0.393ms returns FALSE -T358C 071:290.896 JLINK_HasError() -T358C 071:291.056 JLINK_IsHalted() -T358C 071:292.792 - 1.736ms returns FALSE -T358C 071:393.072 JLINK_HasError() -T358C 071:393.224 JLINK_IsHalted() -T358C 071:393.744 - 0.518ms returns FALSE -T358C 071:494.608 JLINK_HasError() -T358C 071:494.792 JLINK_IsHalted() -T358C 071:495.288 - 0.497ms returns FALSE -T358C 071:596.088 JLINK_HasError() -T358C 071:596.304 JLINK_HasError() -T358C 071:596.432 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 071:596.584 Data: F7 AE 0E 05 -T358C 071:596.888 Debug reg: DWT_CYCCNT -T358C 071:597.056 - 0.632ms returns 1 (0x1) -T98A8 071:597.536 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 071:597.712 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 071:598.352 Data: 0F 00 04 20 00 F1 07 C0 4F 7F FA D3 61 F9 74 58 ... -T98A8 071:598.496 - 0.962ms returns 25 (0x19) -T98A8 071:598.600 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:598.672 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 071:599.056 Data: 02 -T98A8 071:599.200 - 0.601ms returns 1 (0x1) -T98A8 071:599.432 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:599.520 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 071:600.008 Data: 00 00 00 00 -T98A8 071:600.136 - 0.700ms returns 4 (0x4) -T98A8 071:600.208 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:600.272 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 071:600.768 Data: 00 00 00 00 -T98A8 071:600.896 - 0.688ms returns 4 (0x4) -T98A8 071:600.976 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:601.040 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 071:601.504 Data: 80 56 43 BC -T98A8 071:601.600 - 0.622ms returns 4 (0x4) -T98A8 071:601.672 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:601.736 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 071:602.224 Data: 00 00 00 00 -T98A8 071:602.320 - 0.651ms returns 4 (0x4) -T98A8 071:602.384 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:602.448 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 071:602.808 Data: 02 -T98A8 071:602.904 - 0.522ms returns 1 (0x1) -T98A8 071:602.984 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:603.048 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 071:603.432 Data: 01 -T98A8 071:603.528 - 0.546ms returns 1 (0x1) -T98A8 071:603.592 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:603.664 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 071:604.064 Data: 02 -T98A8 071:604.224 - 0.627ms returns 1 (0x1) -T98A8 071:604.304 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:604.408 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 071:604.800 Data: 01 -T98A8 071:604.952 - 0.646ms returns 1 (0x1) -T98A8 071:605.040 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:605.112 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 071:605.968 Data: 02 -T98A8 071:606.144 - 1.107ms returns 1 (0x1) -T98A8 071:606.232 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:606.312 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 071:606.680 Data: 02 -T98A8 071:606.800 - 0.571ms returns 1 (0x1) -T98A8 071:606.872 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:606.936 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 071:607.312 Data: 03 -T98A8 071:607.408 - 0.536ms returns 1 (0x1) -T98A8 071:607.472 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:607.536 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 071:607.912 Data: 01 -T98A8 071:608.000 - 0.525ms returns 1 (0x1) -T98A8 071:608.072 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 071:608.144 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 071:608.608 Data: 00 00 -T98A8 071:608.720 - 0.647ms returns 2 (0x2) -T98A8 071:608.808 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 071:608.880 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 071:609.288 Data: 00 00 -T98A8 071:609.384 - 0.576ms returns 2 (0x2) -T98A8 071:609.536 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:609.608 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 071:609.944 Data: 40 C4 01 20 -T98A8 071:610.032 - 0.500ms returns 4 (0x4) -T98A8 071:610.128 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:610.192 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 071:610.560 Data: 01 00 00 00 -T98A8 071:610.664 - 0.536ms returns 4 (0x4) -T98A8 071:610.736 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:610.800 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 071:611.192 Data: 00 00 00 00 -T98A8 071:611.328 - 0.589ms returns 4 (0x4) -T98A8 071:611.408 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:611.472 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 071:612.056 Data: 00 00 00 00 -T98A8 071:612.208 - 0.806ms returns 4 (0x4) -T98A8 071:612.800 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:612.888 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 071:613.232 Data: 80 56 43 BC -T98A8 071:613.360 - 0.559ms returns 4 (0x4) -T98A8 071:613.432 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:613.496 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 071:613.840 Data: 00 00 00 00 -T98A8 071:613.936 - 0.504ms returns 4 (0x4) -T98A8 071:614.016 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:614.096 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 071:614.448 Data: 03 -T98A8 071:614.552 - 0.536ms returns 1 (0x1) -T98A8 071:614.632 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:614.704 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 071:615.048 Data: 01 -T98A8 071:615.152 - 0.523ms returns 1 (0x1) -T98A8 071:615.224 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:615.296 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 071:615.648 Data: 03 -T98A8 071:615.752 - 0.522ms returns 1 (0x1) -T98A8 071:615.824 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:615.896 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 071:616.256 Data: 01 -T98A8 071:616.392 - 0.559ms returns 1 (0x1) -T98A8 071:616.464 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:616.552 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 071:616.896 Data: 03 -T98A8 071:617.016 - 0.552ms returns 1 (0x1) -T98A8 071:617.104 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:617.176 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 071:617.584 Data: 03 -T98A8 071:617.680 - 0.585ms returns 1 (0x1) -T98A8 071:617.832 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:617.896 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 071:618.288 Data: 02 -T98A8 071:618.448 - 0.622ms returns 1 (0x1) -T98A8 071:618.560 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:618.640 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 071:619.024 Data: 01 -T98A8 071:619.168 - 0.604ms returns 1 (0x1) -T98A8 071:619.264 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:619.344 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 071:619.696 Data: 00 00 00 00 -T98A8 071:619.816 - 0.555ms returns 4 (0x4) -T98A8 071:619.928 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:620.008 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 071:620.432 Data: 00 -T98A8 071:620.560 - 0.634ms returns 1 (0x1) -T98A8 071:620.888 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 071:620.976 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 071:621.856 Data: 00 -T98A8 071:622.000 - 1.104ms returns 1 (0x1) -T98A8 071:622.168 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:622.256 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 071:622.608 Data: 10 CF 01 20 -T98A8 071:622.736 - 0.570ms returns 4 (0x4) -T98A8 071:622.864 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 071:622.936 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 071:623.464 Data: 49 CF 01 20 -T98A8 071:623.624 - 0.760ms returns 4 (0x4) -T358C 071:623.824 JLINK_IsHalted() -T358C 071:624.176 - 0.343ms returns FALSE -T358C 071:725.496 JLINK_HasError() -T358C 071:725.672 JLINK_IsHalted() -T358C 071:726.072 - 0.402ms returns FALSE -T358C 071:826.896 JLINK_HasError() -T358C 071:827.264 JLINK_IsHalted() -T358C 071:827.888 - 0.630ms returns FALSE -T358C 071:928.224 JLINK_HasError() -T358C 071:928.352 JLINK_IsHalted() -T358C 071:928.840 - 0.482ms returns FALSE -T358C 072:029.888 JLINK_HasError() -T358C 072:030.072 JLINK_IsHalted() -T358C 072:030.544 - 0.461ms returns FALSE -T358C 072:131.712 JLINK_HasError() -T358C 072:131.864 JLINK_HasError() -T358C 072:131.936 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 072:132.032 Data: F7 AE 0E 05 -T358C 072:132.136 Debug reg: DWT_CYCCNT -T358C 072:132.232 - 0.296ms returns 1 (0x1) -T98A8 072:132.624 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 072:132.920 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 072:133.624 Data: 0F 00 04 20 00 F1 07 C0 B0 7C FA D3 61 F9 74 58 ... -T98A8 072:133.776 - 1.147ms returns 25 (0x19) -T98A8 072:133.888 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:133.968 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 072:134.360 Data: 02 -T98A8 072:134.504 - 0.610ms returns 1 (0x1) -T98A8 072:134.624 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:134.696 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 072:135.208 Data: 00 00 00 00 -T98A8 072:135.336 - 0.712ms returns 4 (0x4) -T98A8 072:135.424 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:135.496 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 072:136.000 Data: 00 00 00 00 -T98A8 072:136.144 - 0.726ms returns 4 (0x4) -T98A8 072:136.232 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:136.296 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 072:136.872 Data: 80 56 43 BC -T98A8 072:137.016 - 0.788ms returns 4 (0x4) -T98A8 072:137.104 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:137.168 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 072:137.640 Data: 00 00 00 00 -T98A8 072:137.744 - 0.633ms returns 4 (0x4) -T98A8 072:137.808 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:137.880 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 072:138.256 Data: 01 -T98A8 072:138.384 - 0.576ms returns 1 (0x1) -T98A8 072:139.208 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:139.328 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 072:139.728 Data: 01 -T98A8 072:140.008 - 0.799ms returns 1 (0x1) -T98A8 072:140.160 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:140.328 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 072:140.816 Data: 02 -T98A8 072:140.968 - 0.809ms returns 1 (0x1) -T98A8 072:141.056 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:141.136 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 072:141.576 Data: 01 -T98A8 072:141.744 - 0.685ms returns 1 (0x1) -T98A8 072:141.824 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:141.904 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 072:142.280 Data: 02 -T98A8 072:142.400 - 0.577ms returns 1 (0x1) -T98A8 072:142.480 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:142.552 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 072:142.960 Data: 02 -T98A8 072:143.064 - 0.588ms returns 1 (0x1) -T98A8 072:143.144 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:143.216 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 072:143.616 Data: 03 -T98A8 072:143.728 - 0.584ms returns 1 (0x1) -T98A8 072:143.824 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:143.888 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 072:144.288 Data: 01 -T98A8 072:144.416 - 0.591ms returns 1 (0x1) -T98A8 072:144.496 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 072:144.568 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 072:145.000 Data: 00 00 -T98A8 072:145.232 - 0.735ms returns 2 (0x2) -T98A8 072:145.464 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 072:145.608 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 072:146.040 Data: 00 00 -T98A8 072:146.168 - 0.704ms returns 2 (0x2) -T98A8 072:146.392 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:146.464 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 072:146.824 Data: 40 C4 01 20 -T98A8 072:146.952 - 0.554ms returns 4 (0x4) -T98A8 072:147.064 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:147.144 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 072:147.504 Data: 01 00 00 00 -T98A8 072:147.632 - 0.571ms returns 4 (0x4) -T98A8 072:147.728 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:147.808 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 072:148.312 Data: 00 00 00 00 -T98A8 072:148.512 - 0.780ms returns 4 (0x4) -T98A8 072:148.624 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:148.736 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 072:149.160 Data: 00 00 00 00 -T98A8 072:149.328 - 0.695ms returns 4 (0x4) -T98A8 072:149.424 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:149.488 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 072:150.064 Data: 80 56 43 BC -T98A8 072:150.280 - 0.851ms returns 4 (0x4) -T98A8 072:150.392 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:150.496 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 072:150.880 Data: 00 00 00 00 -T98A8 072:151.008 - 0.613ms returns 4 (0x4) -T98A8 072:151.104 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:151.168 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 072:151.512 Data: 01 -T98A8 072:151.608 - 0.508ms returns 1 (0x1) -T98A8 072:151.728 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:151.808 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 072:152.184 Data: 01 -T98A8 072:152.304 - 0.574ms returns 1 (0x1) -T98A8 072:152.376 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:152.448 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 072:152.920 Data: 03 -T98A8 072:153.096 - 0.717ms returns 1 (0x1) -T98A8 072:153.176 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:153.264 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 072:153.632 Data: 01 -T98A8 072:153.736 - 0.556ms returns 1 (0x1) -T98A8 072:153.808 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:153.872 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 072:154.208 Data: 03 -T98A8 072:154.320 - 0.508ms returns 1 (0x1) -T98A8 072:154.384 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:154.448 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 072:154.792 Data: 03 -T98A8 072:154.896 - 0.509ms returns 1 (0x1) -T98A8 072:154.960 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:155.024 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 072:155.360 Data: 02 -T98A8 072:155.456 - 0.496ms returns 1 (0x1) -T98A8 072:155.528 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:155.592 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 072:156.648 Data: 01 -T98A8 072:156.816 - 1.286ms returns 1 (0x1) -T98A8 072:156.904 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:156.984 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 072:157.464 Data: 00 00 00 00 -T98A8 072:157.584 - 0.685ms returns 4 (0x4) -T98A8 072:157.792 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:157.856 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 072:158.224 Data: 00 -T98A8 072:158.360 - 0.565ms returns 1 (0x1) -T98A8 072:158.744 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:158.824 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 072:159.184 Data: 00 -T98A8 072:159.280 - 0.542ms returns 1 (0x1) -T98A8 072:159.432 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:159.504 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 072:159.896 Data: 10 CF 01 20 -T98A8 072:160.064 - 0.631ms returns 4 (0x4) -T98A8 072:160.192 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:160.304 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 072:160.736 Data: 49 CF 01 20 -T98A8 072:160.896 - 0.705ms returns 4 (0x4) -T358C 072:161.200 JLINK_IsHalted() -T358C 072:161.600 - 0.399ms returns FALSE -T358C 072:261.840 JLINK_HasError() -T358C 072:262.096 JLINK_IsHalted() -T358C 072:263.144 - 1.048ms returns FALSE -T358C 072:363.616 JLINK_HasError() -T358C 072:363.840 JLINK_IsHalted() -T358C 072:364.528 - 0.688ms returns FALSE -T358C 072:465.504 JLINK_HasError() -T358C 072:465.776 JLINK_IsHalted() -T358C 072:466.272 - 0.496ms returns FALSE -T358C 072:567.248 JLINK_HasError() -T358C 072:567.440 JLINK_IsHalted() -T358C 072:567.952 - 0.503ms returns FALSE -T358C 072:668.816 JLINK_HasError() -T358C 072:668.968 JLINK_HasError() -T358C 072:669.040 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 072:669.136 Data: F7 AE 0E 05 -T358C 072:669.232 Debug reg: DWT_CYCCNT -T358C 072:669.328 - 0.294ms returns 1 (0x1) -T98A8 072:669.672 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 072:669.832 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 072:670.512 Data: 0F 00 04 20 00 F1 07 C0 B0 7C FA D3 61 F9 74 58 ... -T98A8 072:670.616 - 0.946ms returns 25 (0x19) -T98A8 072:670.704 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:670.776 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 072:671.152 Data: 02 -T98A8 072:671.312 - 0.602ms returns 1 (0x1) -T98A8 072:671.504 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:671.576 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 072:672.048 Data: 00 00 00 00 -T98A8 072:672.144 - 0.639ms returns 4 (0x4) -T98A8 072:672.232 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:672.312 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 072:672.752 Data: 00 00 00 00 -T98A8 072:672.848 - 0.620ms returns 4 (0x4) -T98A8 072:672.920 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:672.984 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 072:673.496 Data: 80 56 43 BC -T98A8 072:673.592 - 0.674ms returns 4 (0x4) -T98A8 072:673.664 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:673.744 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 072:674.192 Data: 00 00 00 00 -T98A8 072:674.288 - 0.623ms returns 4 (0x4) -T98A8 072:674.368 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:674.440 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 072:674.792 Data: 01 -T98A8 072:674.880 - 0.516ms returns 1 (0x1) -T98A8 072:675.728 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:675.848 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 072:676.240 Data: 01 -T98A8 072:676.336 - 0.611ms returns 1 (0x1) -T98A8 072:676.408 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:676.472 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 072:676.832 Data: 02 -T98A8 072:676.992 - 0.584ms returns 1 (0x1) -T98A8 072:677.080 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:677.176 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 072:677.632 Data: 01 -T98A8 072:677.736 - 0.652ms returns 1 (0x1) -T98A8 072:677.808 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:677.872 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 072:678.216 Data: 02 -T98A8 072:678.344 - 0.541ms returns 1 (0x1) -T98A8 072:678.416 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:678.480 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 072:678.824 Data: 02 -T98A8 072:678.928 - 0.505ms returns 1 (0x1) -T98A8 072:678.992 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:679.056 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 072:679.504 Data: 03 -T98A8 072:679.600 - 0.614ms returns 1 (0x1) -T98A8 072:679.728 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:679.856 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 072:680.312 Data: 01 -T98A8 072:680.472 - 0.739ms returns 1 (0x1) -T98A8 072:680.560 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 072:680.632 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 072:681.072 Data: 00 00 -T98A8 072:681.200 - 0.648ms returns 2 (0x2) -T98A8 072:681.288 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 072:681.360 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 072:681.968 Data: 00 00 -T98A8 072:682.664 - 1.373ms returns 2 (0x2) -T98A8 072:683.208 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:683.288 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 072:683.648 Data: 40 C4 01 20 -T98A8 072:683.768 - 0.562ms returns 4 (0x4) -T98A8 072:683.872 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:683.936 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 072:684.304 Data: 01 00 00 00 -T98A8 072:684.408 - 0.539ms returns 4 (0x4) -T98A8 072:684.488 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:684.552 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 072:684.920 Data: 00 00 00 00 -T98A8 072:685.024 - 0.538ms returns 4 (0x4) -T98A8 072:685.104 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:685.168 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 072:685.640 Data: 00 00 00 00 -T98A8 072:685.752 - 0.658ms returns 4 (0x4) -T98A8 072:685.848 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:685.928 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 072:686.384 Data: 80 56 43 BC -T98A8 072:686.504 - 0.651ms returns 4 (0x4) -T98A8 072:686.584 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:686.664 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 072:687.048 Data: 00 00 00 00 -T98A8 072:687.144 - 0.558ms returns 4 (0x4) -T98A8 072:687.216 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:687.280 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 072:687.640 Data: 01 -T98A8 072:687.728 - 0.514ms returns 1 (0x1) -T98A8 072:687.824 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:687.888 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 072:688.272 Data: 01 -T98A8 072:688.368 - 0.539ms returns 1 (0x1) -T98A8 072:688.432 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:688.496 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 072:688.848 Data: 03 -T98A8 072:689.008 - 0.577ms returns 1 (0x1) -T98A8 072:689.096 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:689.184 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 072:689.544 Data: 01 -T98A8 072:689.680 - 0.577ms returns 1 (0x1) -T98A8 072:689.752 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:689.840 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 072:690.224 Data: 03 -T98A8 072:690.336 - 0.581ms returns 1 (0x1) -T98A8 072:690.416 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:690.504 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 072:690.896 Data: 03 -T98A8 072:690.992 - 0.580ms returns 1 (0x1) -T98A8 072:691.064 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:691.128 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 072:691.592 Data: 02 -T98A8 072:691.696 - 0.629ms returns 1 (0x1) -T98A8 072:691.760 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:691.824 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 072:692.200 Data: 01 -T98A8 072:692.296 - 0.532ms returns 1 (0x1) -T98A8 072:692.360 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:692.424 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 072:692.752 Data: 00 00 00 00 -T98A8 072:692.848 - 0.493ms returns 4 (0x4) -T98A8 072:692.976 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:693.032 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 072:693.376 Data: 00 -T98A8 072:693.472 - 0.500ms returns 1 (0x1) -T98A8 072:693.824 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 072:693.896 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 072:694.232 Data: 00 -T98A8 072:694.328 - 0.504ms returns 1 (0x1) -T98A8 072:694.472 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:694.544 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 072:694.888 Data: 10 CF 01 20 -T98A8 072:694.984 - 0.509ms returns 4 (0x4) -T98A8 072:695.064 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 072:695.136 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 072:695.544 Data: 49 CF 01 20 -T98A8 072:695.744 - 0.675ms returns 4 (0x4) -T358C 072:697.240 JLINK_IsHalted() -T358C 072:697.672 - 0.431ms returns FALSE -T358C 072:797.992 JLINK_HasError() -T358C 072:798.160 JLINK_IsHalted() -T358C 072:799.072 - 0.914ms returns FALSE -T358C 072:899.536 JLINK_HasError() -T358C 072:899.768 JLINK_IsHalted() -T358C 072:900.272 - 0.505ms returns FALSE -T358C 073:001.904 JLINK_HasError() -T358C 073:002.128 JLINK_IsHalted() -T358C 073:002.608 - 0.485ms returns FALSE -T358C 073:103.408 JLINK_HasError() -T358C 073:103.576 JLINK_IsHalted() -T358C 073:104.056 - 0.476ms returns FALSE -T358C 073:204.352 JLINK_HasError() -T358C 073:204.616 JLINK_HasError() -T358C 073:204.712 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 073:204.832 Data: F7 AE 0E 05 -T358C 073:204.936 Debug reg: DWT_CYCCNT -T358C 073:205.040 - 0.324ms returns 1 (0x1) -T98A8 073:206.440 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 073:206.600 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 073:207.184 Data: 0F 00 04 20 00 F1 07 C0 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 073:207.304 - 0.871ms returns 25 (0x19) -T98A8 073:207.416 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:207.496 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 073:207.872 Data: 02 -T98A8 073:207.968 - 0.555ms returns 1 (0x1) -T98A8 073:208.080 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:208.144 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 073:208.688 Data: 00 00 00 00 -T98A8 073:208.800 - 0.717ms returns 4 (0x4) -T98A8 073:208.872 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:208.944 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 073:209.416 Data: 00 00 00 00 -T98A8 073:209.552 - 0.680ms returns 4 (0x4) -T98A8 073:209.624 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:209.696 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 073:210.160 Data: 80 56 43 BC -T98A8 073:210.264 - 0.640ms returns 4 (0x4) -T98A8 073:210.352 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:210.416 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 073:210.896 Data: 00 00 00 00 -T98A8 073:211.000 - 0.656ms returns 4 (0x4) -T98A8 073:211.080 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:211.144 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 073:211.536 Data: 01 -T98A8 073:211.632 - 0.555ms returns 1 (0x1) -T98A8 073:211.696 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:211.760 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 073:212.120 Data: 01 -T98A8 073:212.216 - 0.522ms returns 1 (0x1) -T98A8 073:212.288 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:212.352 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 073:212.696 Data: 02 -T98A8 073:212.784 - 0.502ms returns 1 (0x1) -T98A8 073:212.848 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:212.912 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 073:213.256 Data: 01 -T98A8 073:213.344 - 0.491ms returns 1 (0x1) -T98A8 073:213.416 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:213.480 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 073:213.808 Data: 01 -T98A8 073:213.904 - 0.491ms returns 1 (0x1) -T98A8 073:214.760 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:214.856 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 073:215.232 Data: 02 -T98A8 073:215.392 - 0.635ms returns 1 (0x1) -T98A8 073:215.472 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:215.560 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 073:215.992 Data: 03 -T98A8 073:216.128 - 0.649ms returns 1 (0x1) -T98A8 073:216.200 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:216.272 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 073:217.256 Data: 01 -T98A8 073:217.408 - 1.207ms returns 1 (0x1) -T98A8 073:217.488 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 073:217.568 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 073:217.976 Data: 00 00 -T98A8 073:218.088 - 0.600ms returns 2 (0x2) -T98A8 073:218.160 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 073:218.240 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 073:218.640 Data: 00 00 -T98A8 073:218.736 - 0.575ms returns 2 (0x2) -T98A8 073:218.896 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:218.968 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 073:219.352 Data: 40 C4 01 20 -T98A8 073:219.504 - 0.613ms returns 4 (0x4) -T98A8 073:219.624 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:219.976 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 073:220.400 Data: 01 00 00 00 -T98A8 073:220.576 - 0.950ms returns 4 (0x4) -T98A8 073:220.680 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:220.768 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 073:221.152 Data: 00 00 00 00 -T98A8 073:221.272 - 0.595ms returns 4 (0x4) -T98A8 073:221.352 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:221.416 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 073:221.768 Data: 00 00 00 00 -T98A8 073:221.872 - 0.519ms returns 4 (0x4) -T98A8 073:221.944 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:222.008 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 073:222.352 Data: 80 56 43 BC -T98A8 073:222.448 - 0.497ms returns 4 (0x4) -T98A8 073:222.512 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:222.576 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 073:222.904 Data: 00 00 00 00 -T98A8 073:223.008 - 0.495ms returns 4 (0x4) -T98A8 073:223.088 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:223.160 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 073:223.536 Data: 01 -T98A8 073:223.632 - 0.547ms returns 1 (0x1) -T98A8 073:223.704 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:223.760 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 073:224.088 Data: 01 -T98A8 073:224.176 - 0.479ms returns 1 (0x1) -T98A8 073:224.248 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:224.312 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 073:224.648 Data: 03 -T98A8 073:224.816 - 0.568ms returns 1 (0x1) -T98A8 073:224.904 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:224.976 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 073:225.352 Data: 01 -T98A8 073:225.464 - 0.568ms returns 1 (0x1) -T98A8 073:225.552 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:225.624 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 073:226.032 Data: 01 -T98A8 073:226.160 - 0.613ms returns 1 (0x1) -T98A8 073:226.288 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:226.368 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 073:226.752 Data: 03 -T98A8 073:226.864 - 0.575ms returns 1 (0x1) -T98A8 073:226.944 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:227.024 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 073:227.464 Data: 02 -T98A8 073:227.576 - 0.631ms returns 1 (0x1) -T98A8 073:227.648 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:227.728 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 073:228.168 Data: 01 -T98A8 073:228.272 - 0.624ms returns 1 (0x1) -T98A8 073:228.360 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:228.432 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 073:228.944 Data: 00 00 00 00 -T98A8 073:229.056 - 0.693ms returns 4 (0x4) -T98A8 073:229.168 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:229.248 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 073:229.664 Data: 00 -T98A8 073:229.760 - 0.592ms returns 1 (0x1) -T98A8 073:230.080 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:230.152 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 073:230.584 Data: 00 -T98A8 073:230.672 - 0.595ms returns 1 (0x1) -T98A8 073:230.808 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:230.872 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 073:231.256 Data: 10 CF 01 20 -T98A8 073:231.344 - 0.541ms returns 4 (0x4) -T98A8 073:231.440 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:231.504 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 073:231.976 Data: 49 CF 01 20 -T98A8 073:232.064 - 0.629ms returns 4 (0x4) -T358C 073:232.272 JLINK_IsHalted() -T358C 073:232.744 - 0.475ms returns FALSE -T358C 073:333.288 JLINK_HasError() -T358C 073:333.472 JLINK_IsHalted() -T358C 073:333.888 - 0.415ms returns FALSE -T358C 073:434.608 JLINK_HasError() -T358C 073:434.760 JLINK_IsHalted() -T358C 073:435.168 - 0.410ms returns FALSE -T358C 073:535.352 JLINK_HasError() -T358C 073:535.600 JLINK_IsHalted() -T358C 073:536.208 - 0.604ms returns FALSE -T358C 073:637.080 JLINK_HasError() -T358C 073:637.232 JLINK_IsHalted() -T358C 073:637.720 - 0.483ms returns FALSE -T358C 073:738.144 JLINK_HasError() -T358C 073:738.384 JLINK_HasError() -T358C 073:738.512 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 073:738.664 Data: F7 AE 0E 05 -T358C 073:738.840 Debug reg: DWT_CYCCNT -T358C 073:739.024 - 0.505ms returns 1 (0x1) -T98A8 073:739.464 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 073:739.600 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 073:740.432 Data: 0F 00 04 20 00 F1 07 C0 B0 7C 1A 80 61 F9 74 58 ... -T98A8 073:740.608 - 1.148ms returns 25 (0x19) -T98A8 073:740.728 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:740.816 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 073:741.296 Data: 02 -T98A8 073:741.456 - 0.721ms returns 1 (0x1) -T98A8 073:741.592 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:741.696 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 073:742.512 Data: 00 00 00 00 -T98A8 073:742.672 - 1.073ms returns 4 (0x4) -T98A8 073:742.760 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:742.832 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 073:743.448 Data: 00 00 00 00 -T98A8 073:743.616 - 0.858ms returns 4 (0x4) -T98A8 073:743.712 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:743.792 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 073:744.312 Data: 80 56 43 BC -T98A8 073:744.440 - 0.733ms returns 4 (0x4) -T98A8 073:744.528 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:744.608 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 073:745.136 Data: 00 00 00 00 -T98A8 073:745.264 - 0.735ms returns 4 (0x4) -T98A8 073:745.336 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:745.400 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 073:745.816 Data: 01 -T98A8 073:745.960 - 0.620ms returns 1 (0x1) -T98A8 073:746.032 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:746.112 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 073:746.608 Data: 01 -T98A8 073:746.752 - 0.720ms returns 1 (0x1) -T98A8 073:746.824 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:746.888 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 073:747.288 Data: 02 -T98A8 073:747.464 - 0.642ms returns 1 (0x1) -T98A8 073:747.544 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:747.632 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 073:748.080 Data: 01 -T98A8 073:748.256 - 0.708ms returns 1 (0x1) -T98A8 073:748.344 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:748.456 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 073:748.832 Data: 03 -T98A8 073:748.944 - 0.596ms returns 1 (0x1) -T98A8 073:749.752 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:749.864 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 073:750.256 Data: 02 -T98A8 073:750.544 - 0.794ms returns 1 (0x1) -T98A8 073:750.704 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:750.840 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 073:751.408 Data: 03 -T98A8 073:751.592 - 0.894ms returns 1 (0x1) -T98A8 073:751.664 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:751.728 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 073:752.128 Data: 01 -T98A8 073:752.264 - 0.598ms returns 1 (0x1) -T98A8 073:752.336 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 073:752.408 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 073:752.952 Data: 00 00 -T98A8 073:753.088 - 0.755ms returns 2 (0x2) -T98A8 073:753.160 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 073:753.224 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 073:753.832 Data: 00 00 -T98A8 073:754.024 - 0.865ms returns 2 (0x2) -T98A8 073:754.320 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:754.416 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 073:754.816 Data: 40 C4 01 20 -T98A8 073:755.000 - 0.683ms returns 4 (0x4) -T98A8 073:755.112 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:755.192 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 073:755.624 Data: 01 00 00 00 -T98A8 073:755.792 - 0.681ms returns 4 (0x4) -T98A8 073:755.912 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:756.000 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 073:757.120 Data: 00 00 00 00 -T98A8 073:757.680 - 1.771ms returns 4 (0x4) -T98A8 073:757.784 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:757.856 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 073:758.272 Data: 00 00 00 00 -T98A8 073:758.440 - 0.655ms returns 4 (0x4) -T98A8 073:758.560 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:758.640 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 073:759.032 Data: 80 56 43 BC -T98A8 073:759.184 - 0.629ms returns 4 (0x4) -T98A8 073:759.280 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:759.360 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 073:759.816 Data: 00 00 00 00 -T98A8 073:759.960 - 0.679ms returns 4 (0x4) -T98A8 073:760.096 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:760.176 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 073:760.568 Data: 01 -T98A8 073:760.696 - 0.604ms returns 1 (0x1) -T98A8 073:760.776 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:760.840 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 073:761.208 Data: 01 -T98A8 073:761.304 - 0.533ms returns 1 (0x1) -T98A8 073:761.376 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:761.568 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 073:761.960 Data: 03 -T98A8 073:762.056 - 0.681ms returns 1 (0x1) -T98A8 073:762.128 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:762.184 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 073:762.592 Data: 01 -T98A8 073:762.688 - 0.566ms returns 1 (0x1) -T98A8 073:762.752 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:762.816 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 073:763.240 Data: 02 -T98A8 073:763.328 - 0.578ms returns 1 (0x1) -T98A8 073:763.432 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:763.512 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 073:763.952 Data: 03 -T98A8 073:764.048 - 0.618ms returns 1 (0x1) -T98A8 073:764.112 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:764.176 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 073:764.656 Data: 02 -T98A8 073:764.848 - 0.730ms returns 1 (0x1) -T98A8 073:764.928 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:765.008 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 073:765.368 Data: 01 -T98A8 073:765.488 - 0.560ms returns 1 (0x1) -T98A8 073:765.560 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:765.632 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 073:766.024 Data: 00 00 00 00 -T98A8 073:766.128 - 0.561ms returns 4 (0x4) -T98A8 073:766.224 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:766.304 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 073:766.704 Data: 00 -T98A8 073:766.800 - 0.576ms returns 1 (0x1) -T98A8 073:767.120 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 073:767.192 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 073:767.584 Data: 00 -T98A8 073:767.720 - 0.597ms returns 1 (0x1) -T98A8 073:767.888 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:767.968 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 073:768.352 Data: 10 CF 01 20 -T98A8 073:768.480 - 0.588ms returns 4 (0x4) -T98A8 073:768.576 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 073:768.648 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 073:769.552 Data: 49 CF 01 20 -T98A8 073:769.768 - 1.188ms returns 4 (0x4) -T358C 073:770.072 JLINK_IsHalted() -T358C 073:770.584 - 0.513ms returns FALSE -T358C 073:870.824 JLINK_HasError() -T358C 073:871.072 JLINK_IsHalted() -T358C 073:871.632 - 0.561ms returns FALSE -T358C 073:972.392 JLINK_HasError() -T358C 073:972.624 JLINK_IsHalted() -T358C 073:973.048 - 0.422ms returns FALSE -T358C 074:073.504 JLINK_HasError() -T358C 074:073.720 JLINK_IsHalted() -T358C 074:074.168 - 0.444ms returns FALSE -T358C 074:174.760 JLINK_HasError() -T358C 074:174.920 JLINK_IsHalted() -T358C 074:175.288 - 0.366ms returns FALSE -T358C 074:275.608 JLINK_HasError() -T358C 074:275.856 JLINK_HasError() -T358C 074:275.968 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 074:276.096 Data: F7 AE 0E 05 -T358C 074:276.264 Debug reg: DWT_CYCCNT -T358C 074:276.424 - 0.454ms returns 1 (0x1) -T98A8 074:276.800 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 074:277.016 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 074:277.736 Data: 0F 00 04 20 00 F1 07 C0 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 074:277.864 - 1.064ms returns 25 (0x19) -T98A8 074:277.952 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:278.016 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 074:278.488 Data: 02 -T98A8 074:278.624 - 0.675ms returns 1 (0x1) -T98A8 074:278.728 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:278.792 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 074:279.416 Data: 00 00 00 00 -T98A8 074:279.576 - 0.851ms returns 4 (0x4) -T98A8 074:279.664 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:279.792 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 074:280.384 Data: 00 00 00 00 -T98A8 074:280.560 - 0.907ms returns 4 (0x4) -T98A8 074:280.648 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:280.720 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 074:281.384 Data: 80 56 43 BC -T98A8 074:281.528 - 0.882ms returns 4 (0x4) -T98A8 074:281.608 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:281.680 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 074:282.200 Data: 00 00 00 00 -T98A8 074:282.336 - 0.729ms returns 4 (0x4) -T98A8 074:282.408 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:282.472 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 074:282.864 Data: 01 -T98A8 074:283.000 - 0.595ms returns 1 (0x1) -T98A8 074:283.088 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:283.168 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 074:283.608 Data: 01 -T98A8 074:283.744 - 0.655ms returns 1 (0x1) -T98A8 074:283.816 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:283.880 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 074:284.304 Data: 02 -T98A8 074:284.400 - 0.585ms returns 1 (0x1) -T98A8 074:284.464 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:284.528 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 074:284.896 Data: 01 -T98A8 074:284.992 - 0.521ms returns 1 (0x1) -T98A8 074:285.048 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:285.112 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 074:285.536 Data: 01 -T98A8 074:285.816 - 0.764ms returns 1 (0x1) -T98A8 074:286.904 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:286.992 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 074:287.440 Data: 02 -T98A8 074:287.600 - 0.692ms returns 1 (0x1) -T98A8 074:287.688 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:287.760 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 074:288.160 Data: 03 -T98A8 074:288.256 - 0.572ms returns 1 (0x1) -T98A8 074:288.328 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:288.392 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 074:288.768 Data: 01 -T98A8 074:288.872 - 0.542ms returns 1 (0x1) -T98A8 074:288.944 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 074:289.008 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 074:289.488 Data: 00 00 -T98A8 074:289.608 - 0.660ms returns 2 (0x2) -T98A8 074:289.688 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 074:289.760 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 074:290.360 Data: 00 00 -T98A8 074:290.904 - 1.216ms returns 2 (0x2) -T98A8 074:291.600 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:291.728 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 074:292.208 Data: 40 C4 01 20 -T98A8 074:292.352 - 0.757ms returns 4 (0x4) -T98A8 074:292.464 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:292.536 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 074:292.952 Data: 01 00 00 00 -T98A8 074:293.112 - 0.650ms returns 4 (0x4) -T98A8 074:293.224 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:293.296 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 074:293.768 Data: 00 00 00 00 -T98A8 074:293.904 - 0.681ms returns 4 (0x4) -T98A8 074:293.968 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:294.040 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 074:294.464 Data: 00 00 00 00 -T98A8 074:294.592 - 0.619ms returns 4 (0x4) -T98A8 074:294.680 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:294.744 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 074:295.152 Data: 80 56 43 BC -T98A8 074:295.432 - 0.749ms returns 4 (0x4) -T98A8 074:295.624 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:295.776 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 074:296.304 Data: 00 00 00 00 -T98A8 074:296.448 - 0.825ms returns 4 (0x4) -T98A8 074:296.560 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:296.632 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 074:297.056 Data: 01 -T98A8 074:297.208 - 0.654ms returns 1 (0x1) -T98A8 074:297.296 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:297.376 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 074:297.776 Data: 01 -T98A8 074:298.016 - 0.720ms returns 1 (0x1) -T98A8 074:298.088 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:298.160 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 074:298.592 Data: 03 -T98A8 074:298.696 - 0.607ms returns 1 (0x1) -T98A8 074:298.768 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:298.832 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 074:299.224 Data: 01 -T98A8 074:299.512 - 0.748ms returns 1 (0x1) -T98A8 074:299.680 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:299.824 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 074:300.304 Data: 01 -T98A8 074:300.464 - 0.783ms returns 1 (0x1) -T98A8 074:300.592 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:300.680 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 074:301.592 Data: 03 -T98A8 074:301.888 - 1.290ms returns 1 (0x1) -T98A8 074:302.040 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:302.200 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 074:302.656 Data: 02 -T98A8 074:302.808 - 0.769ms returns 1 (0x1) -T98A8 074:302.896 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:302.976 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 074:303.336 Data: 01 -T98A8 074:303.448 - 0.554ms returns 1 (0x1) -T98A8 074:303.536 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:303.608 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 074:303.984 Data: 00 00 00 00 -T98A8 074:304.096 - 0.566ms returns 4 (0x4) -T98A8 074:304.248 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:304.328 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 074:304.728 Data: 00 -T98A8 074:304.840 - 0.592ms returns 1 (0x1) -T98A8 074:305.160 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:305.232 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 074:305.648 Data: 00 -T98A8 074:305.744 - 0.590ms returns 1 (0x1) -T98A8 074:305.880 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:305.968 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 074:306.760 Data: 10 CF 01 20 -T98A8 074:307.056 - 1.172ms returns 4 (0x4) -T98A8 074:307.248 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:307.400 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 074:307.912 Data: 49 CF 01 20 -T98A8 074:308.064 - 0.813ms returns 4 (0x4) -T358C 074:308.440 JLINK_IsHalted() -T358C 074:308.912 - 0.470ms returns FALSE -T358C 074:409.960 JLINK_HasError() -T358C 074:410.104 JLINK_IsHalted() -T358C 074:410.640 - 0.535ms returns FALSE -T358C 074:511.000 JLINK_HasError() -T358C 074:511.200 JLINK_IsHalted() -T358C 074:511.720 - 0.511ms returns FALSE -T358C 074:612.448 JLINK_HasError() -T358C 074:612.616 JLINK_IsHalted() -T358C 074:613.032 - 0.415ms returns FALSE -T358C 074:713.952 JLINK_HasError() -T358C 074:714.088 JLINK_IsHalted() -T358C 074:714.456 - 0.371ms returns FALSE -T358C 074:815.088 JLINK_HasError() -T358C 074:815.376 JLINK_HasError() -T358C 074:815.472 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 074:815.576 Data: F7 AE 0E 05 -T358C 074:815.680 Debug reg: DWT_CYCCNT -T358C 074:815.784 - 0.303ms returns 1 (0x1) -T98A8 074:816.272 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 074:816.440 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 074:817.048 Data: 0F 00 04 20 00 F1 07 C0 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 074:817.200 - 0.933ms returns 25 (0x19) -T98A8 074:817.296 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:817.384 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 074:817.776 Data: 02 -T98A8 074:817.904 - 0.611ms returns 1 (0x1) -T98A8 074:818.080 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:818.152 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 074:818.640 Data: 00 00 00 00 -T98A8 074:818.768 - 0.687ms returns 4 (0x4) -T98A8 074:818.848 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:818.920 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 074:819.408 Data: 00 00 00 00 -T98A8 074:819.568 - 0.714ms returns 4 (0x4) -T98A8 074:819.632 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:819.824 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 074:820.304 Data: 80 56 43 BC -T98A8 074:820.432 - 0.798ms returns 4 (0x4) -T98A8 074:820.520 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:820.584 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 074:821.048 Data: 00 00 00 00 -T98A8 074:821.144 - 0.631ms returns 4 (0x4) -T98A8 074:821.216 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:821.280 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 074:821.656 Data: 01 -T98A8 074:821.808 - 0.588ms returns 1 (0x1) -T98A8 074:821.888 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:822.024 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 074:822.416 Data: 01 -T98A8 074:822.544 - 0.650ms returns 1 (0x1) -T98A8 074:822.624 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:822.704 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 074:823.064 Data: 02 -T98A8 074:823.184 - 0.556ms returns 1 (0x1) -T98A8 074:823.248 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:823.312 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 074:823.696 Data: 01 -T98A8 074:823.808 - 0.561ms returns 1 (0x1) -T98A8 074:823.880 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:823.952 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 074:824.296 Data: 01 -T98A8 074:824.400 - 0.520ms returns 1 (0x1) -T98A8 074:825.144 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:825.240 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 074:825.648 Data: 02 -T98A8 074:825.784 - 0.638ms returns 1 (0x1) -T98A8 074:825.856 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:825.928 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 074:826.600 Data: 03 -T98A8 074:826.736 - 0.873ms returns 1 (0x1) -T98A8 074:826.816 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:826.896 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 074:827.272 Data: 01 -T98A8 074:827.400 - 0.584ms returns 1 (0x1) -T98A8 074:827.488 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 074:827.568 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 074:828.016 Data: 00 00 -T98A8 074:828.144 - 0.657ms returns 2 (0x2) -T98A8 074:828.208 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 074:828.272 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 074:828.680 Data: 00 00 -T98A8 074:828.792 - 0.584ms returns 2 (0x2) -T98A8 074:829.032 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:829.104 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 074:829.456 Data: 40 C4 01 20 -T98A8 074:829.584 - 0.556ms returns 4 (0x4) -T98A8 074:829.680 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:829.752 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 074:830.112 Data: 01 00 00 00 -T98A8 074:830.240 - 0.555ms returns 4 (0x4) -T98A8 074:830.408 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:830.528 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 074:830.992 Data: 00 00 00 00 -T98A8 074:831.192 - 0.793ms returns 4 (0x4) -T98A8 074:831.336 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:831.488 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 074:832.352 Data: 00 00 00 00 -T98A8 074:833.408 - 2.069ms returns 4 (0x4) -T98A8 074:833.648 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:833.792 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 074:834.296 Data: 80 56 43 BC -T98A8 074:834.424 - 0.784ms returns 4 (0x4) -T98A8 074:834.536 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:834.632 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 074:834.976 Data: 00 00 00 00 -T98A8 074:835.112 - 0.576ms returns 4 (0x4) -T98A8 074:835.216 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:835.304 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 074:835.648 Data: 01 -T98A8 074:835.792 - 0.577ms returns 1 (0x1) -T98A8 074:835.880 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:836.064 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 074:836.432 Data: 01 -T98A8 074:836.528 - 0.651ms returns 1 (0x1) -T98A8 074:836.600 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:836.656 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 074:837.096 Data: 03 -T98A8 074:837.232 - 0.626ms returns 1 (0x1) -T98A8 074:837.304 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:837.368 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 074:837.712 Data: 01 -T98A8 074:837.872 - 0.561ms returns 1 (0x1) -T98A8 074:837.968 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:838.056 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 074:838.416 Data: 01 -T98A8 074:838.560 - 0.594ms returns 1 (0x1) -T98A8 074:838.672 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:838.744 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 074:839.120 Data: 03 -T98A8 074:839.272 - 0.602ms returns 1 (0x1) -T98A8 074:839.352 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:839.432 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 074:839.808 Data: 02 -T98A8 074:839.928 - 0.573ms returns 1 (0x1) -T98A8 074:840.000 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:840.080 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 074:840.464 Data: 01 -T98A8 074:840.592 - 0.598ms returns 1 (0x1) -T98A8 074:840.672 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:840.736 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 074:841.104 Data: 00 00 00 00 -T98A8 074:841.224 - 0.554ms returns 4 (0x4) -T98A8 074:841.424 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:841.504 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 074:841.872 Data: 00 -T98A8 074:842.000 - 0.571ms returns 1 (0x1) -T98A8 074:842.272 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 074:842.344 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 074:842.704 Data: 00 -T98A8 074:842.856 - 0.587ms returns 1 (0x1) -T98A8 074:843.032 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:843.128 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 074:843.528 Data: 10 CF 01 20 -T98A8 074:843.656 - 0.625ms returns 4 (0x4) -T98A8 074:843.768 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 074:843.848 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 074:844.208 Data: 49 CF 01 20 -T98A8 074:844.360 - 0.589ms returns 4 (0x4) -T358C 074:844.552 JLINK_IsHalted() -T358C 074:844.912 - 0.369ms returns FALSE -T358C 074:945.296 JLINK_HasError() -T358C 074:945.448 JLINK_IsHalted() -T358C 074:945.888 - 0.437ms returns FALSE -T358C 075:046.792 JLINK_HasError() -T358C 075:046.896 JLINK_IsHalted() -T358C 075:047.296 - 0.394ms returns FALSE -T358C 075:148.048 JLINK_HasError() -T358C 075:148.288 JLINK_IsHalted() -T358C 075:149.408 - 1.114ms returns FALSE -T358C 075:250.560 JLINK_HasError() -T358C 075:250.704 JLINK_IsHalted() -T358C 075:251.208 - 0.504ms returns FALSE -T358C 075:352.144 JLINK_HasError() -T358C 075:352.296 JLINK_HasError() -T358C 075:352.368 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 075:352.456 Data: F7 AE 0E 05 -T358C 075:352.560 Debug reg: DWT_CYCCNT -T358C 075:352.656 - 0.286ms returns 1 (0x1) -T98A8 075:353.032 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 075:353.176 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 075:354.032 Data: 0F 00 04 20 00 F1 07 C0 B0 84 25 2C 61 F9 74 58 ... -T98A8 075:354.176 - 1.144ms returns 25 (0x19) -T98A8 075:354.264 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:354.336 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 075:354.864 Data: 02 -T98A8 075:355.024 - 0.765ms returns 1 (0x1) -T98A8 075:355.200 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:355.280 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 075:355.848 Data: 00 00 00 00 -T98A8 075:356.072 - 0.865ms returns 4 (0x4) -T98A8 075:356.160 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:356.240 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 075:356.784 Data: 00 00 00 00 -T98A8 075:357.120 - 0.957ms returns 4 (0x4) -T98A8 075:357.192 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:357.264 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 075:357.744 Data: 80 56 43 BC -T98A8 075:357.912 - 0.720ms returns 4 (0x4) -T98A8 075:358.000 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:358.080 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 075:358.928 Data: 00 00 00 00 -T98A8 075:359.632 - 1.620ms returns 4 (0x4) -T98A8 075:359.992 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:360.152 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 075:360.696 Data: 01 -T98A8 075:360.832 - 0.843ms returns 1 (0x1) -T98A8 075:360.912 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:360.976 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 075:361.392 Data: 01 -T98A8 075:361.520 - 0.619ms returns 1 (0x1) -T98A8 075:361.600 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:361.680 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 075:362.128 Data: 02 -T98A8 075:362.288 - 0.685ms returns 1 (0x1) -T98A8 075:362.368 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:362.448 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 075:362.864 Data: 01 -T98A8 075:363.024 - 0.649ms returns 1 (0x1) -T98A8 075:363.120 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:363.216 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 075:363.704 Data: 01 -T98A8 075:363.840 - 0.722ms returns 1 (0x1) -T98A8 075:363.912 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:363.976 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 075:364.392 Data: 01 -T98A8 075:364.616 - 0.706ms returns 1 (0x1) -T98A8 075:365.744 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:365.840 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 075:366.240 Data: 03 -T98A8 075:366.384 - 0.650ms returns 1 (0x1) -T98A8 075:366.456 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:366.544 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 075:366.944 Data: 01 -T98A8 075:367.080 - 0.619ms returns 1 (0x1) -T98A8 075:367.160 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 075:367.224 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 075:367.696 Data: 00 00 -T98A8 075:367.824 - 0.663ms returns 2 (0x2) -T98A8 075:367.896 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 075:367.976 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 075:368.400 Data: 00 00 -T98A8 075:368.496 - 0.597ms returns 2 (0x2) -T98A8 075:368.696 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:368.768 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 075:369.144 Data: 40 C4 01 20 -T98A8 075:369.240 - 0.540ms returns 4 (0x4) -T98A8 075:369.328 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:369.392 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 075:369.808 Data: 01 00 00 00 -T98A8 075:369.904 - 0.578ms returns 4 (0x4) -T98A8 075:369.984 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:370.048 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 075:370.440 Data: 00 00 00 00 -T98A8 075:370.536 - 0.548ms returns 4 (0x4) -T98A8 075:370.608 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:370.672 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 075:371.184 Data: 00 00 00 00 -T98A8 075:371.528 - 0.915ms returns 4 (0x4) -T98A8 075:371.760 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:371.904 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 075:372.416 Data: 80 56 43 BC -T98A8 075:372.552 - 0.796ms returns 4 (0x4) -T98A8 075:372.648 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:372.720 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 075:373.192 Data: 00 00 00 00 -T98A8 075:373.480 - 0.834ms returns 4 (0x4) -T98A8 075:373.672 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:373.824 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 075:374.288 Data: 01 -T98A8 075:374.416 - 0.750ms returns 1 (0x1) -T98A8 075:374.504 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:374.576 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 075:375.000 Data: 01 -T98A8 075:375.128 - 0.626ms returns 1 (0x1) -T98A8 075:375.200 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:375.280 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 075:375.688 Data: 03 -T98A8 075:375.800 - 0.601ms returns 1 (0x1) -T98A8 075:375.888 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:375.968 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 075:376.360 Data: 01 -T98A8 075:376.472 - 0.577ms returns 1 (0x1) -T98A8 075:376.552 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:376.616 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 075:376.992 Data: 01 -T98A8 075:377.088 - 0.536ms returns 1 (0x1) -T98A8 075:377.152 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:377.216 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 075:377.664 Data: 01 -T98A8 075:377.760 - 0.609ms returns 1 (0x1) -T98A8 075:377.872 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:377.936 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 075:378.384 Data: 02 -T98A8 075:378.480 - 0.613ms returns 1 (0x1) -T98A8 075:378.544 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:378.616 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 075:379.064 Data: 01 -T98A8 075:379.184 - 0.638ms returns 1 (0x1) -T98A8 075:379.256 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:379.328 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 075:380.400 Data: 00 00 00 00 -T98A8 075:380.688 - 1.426ms returns 4 (0x4) -T98A8 075:380.912 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:381.048 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 075:381.568 Data: 00 -T98A8 075:381.728 - 0.826ms returns 1 (0x1) -T98A8 075:382.152 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:382.232 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 075:382.712 Data: 00 -T98A8 075:382.816 - 0.667ms returns 1 (0x1) -T98A8 075:383.016 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:383.088 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 075:383.520 Data: 10 CF 01 20 -T98A8 075:383.744 - 0.724ms returns 4 (0x4) -T98A8 075:383.856 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:383.944 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 075:384.336 Data: 49 CF 01 20 -T98A8 075:384.480 - 0.624ms returns 4 (0x4) -T358C 075:384.696 JLINK_IsHalted() -T358C 075:385.040 - 0.342ms returns FALSE -T358C 075:485.872 JLINK_HasError() -T358C 075:486.032 JLINK_IsHalted() -T358C 075:487.064 - 1.039ms returns FALSE -T358C 075:588.048 JLINK_HasError() -T358C 075:588.304 JLINK_IsHalted() -T358C 075:588.912 - 0.603ms returns FALSE -T358C 075:689.464 JLINK_HasError() -T358C 075:689.584 JLINK_IsHalted() -T358C 075:689.984 - 0.401ms returns FALSE -T358C 075:790.168 JLINK_HasError() -T358C 075:790.272 JLINK_IsHalted() -T358C 075:790.712 - 0.438ms returns FALSE -T358C 075:891.648 JLINK_HasError() -T358C 075:891.824 JLINK_HasError() -T358C 075:891.904 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 075:891.984 Data: F7 AE 0E 05 -T358C 075:892.088 Debug reg: DWT_CYCCNT -T358C 075:892.184 - 0.277ms returns 1 (0x1) -T98A8 075:892.560 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 075:892.688 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 075:893.256 Data: 0F 00 04 20 00 F1 07 C0 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 075:893.392 - 0.834ms returns 25 (0x19) -T98A8 075:893.480 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:893.552 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 075:893.976 Data: 02 -T98A8 075:894.136 - 0.656ms returns 1 (0x1) -T98A8 075:894.256 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:894.336 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 075:894.856 Data: 00 00 00 00 -T98A8 075:894.992 - 0.736ms returns 4 (0x4) -T98A8 075:895.072 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:895.152 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 075:895.728 Data: 00 00 00 00 -T98A8 075:895.872 - 0.800ms returns 4 (0x4) -T98A8 075:895.952 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:896.024 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 075:896.496 Data: 80 56 43 BC -T98A8 075:896.624 - 0.667ms returns 4 (0x4) -T98A8 075:896.688 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:896.760 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 075:897.248 Data: 00 00 00 00 -T98A8 075:897.392 - 0.699ms returns 4 (0x4) -T98A8 075:897.472 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:897.552 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 075:898.576 Data: 01 -T98A8 075:898.720 - 1.245ms returns 1 (0x1) -T98A8 075:898.792 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:898.856 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 075:899.208 Data: 01 -T98A8 075:899.320 - 0.535ms returns 1 (0x1) -T98A8 075:899.392 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:899.464 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 075:899.880 Data: 02 -T98A8 075:900.024 - 0.632ms returns 1 (0x1) -T98A8 075:900.112 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:900.192 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 075:900.560 Data: 01 -T98A8 075:900.672 - 0.558ms returns 1 (0x1) -T98A8 075:900.744 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:900.808 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 075:901.200 Data: 01 -T98A8 075:901.400 - 0.662ms returns 1 (0x1) -T98A8 075:901.520 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:901.664 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 075:902.120 Data: 02 -T98A8 075:902.312 - 0.790ms returns 1 (0x1) -T98A8 075:902.920 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:903.016 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 075:903.360 Data: 03 -T98A8 075:903.480 - 0.558ms returns 1 (0x1) -T98A8 075:903.544 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:903.616 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 075:903.952 Data: 01 -T98A8 075:904.112 - 0.559ms returns 1 (0x1) -T98A8 075:904.192 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 075:904.272 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 075:904.712 Data: 00 00 -T98A8 075:904.816 - 0.627ms returns 2 (0x2) -T98A8 075:904.880 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 075:904.944 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 075:905.320 Data: 00 00 -T98A8 075:905.416 - 0.528ms returns 2 (0x2) -T98A8 075:905.552 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:905.632 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 075:906.008 Data: 40 C4 01 20 -T98A8 075:906.104 - 0.553ms returns 4 (0x4) -T98A8 075:906.192 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:906.256 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 075:906.696 Data: 01 00 00 00 -T98A8 075:906.784 - 0.591ms returns 4 (0x4) -T98A8 075:906.864 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:906.928 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 075:907.312 Data: 00 00 00 00 -T98A8 075:907.432 - 0.567ms returns 4 (0x4) -T98A8 075:907.520 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:907.600 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 075:907.984 Data: 00 00 00 00 -T98A8 075:908.104 - 0.581ms returns 4 (0x4) -T98A8 075:908.176 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:908.240 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 075:908.704 Data: 80 56 43 BC -T98A8 075:908.800 - 0.618ms returns 4 (0x4) -T98A8 075:908.864 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:908.928 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 075:909.352 Data: 00 00 00 00 -T98A8 075:909.440 - 0.576ms returns 4 (0x4) -T98A8 075:909.520 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:909.584 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 075:909.944 Data: 01 -T98A8 075:910.032 - 0.520ms returns 1 (0x1) -T98A8 075:910.104 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:910.160 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 075:910.528 Data: 01 -T98A8 075:910.624 - 0.518ms returns 1 (0x1) -T98A8 075:910.688 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:910.744 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 075:911.112 Data: 03 -T98A8 075:911.216 - 0.534ms returns 1 (0x1) -T98A8 075:911.280 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:911.360 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 075:911.704 Data: 01 -T98A8 075:911.800 - 0.516ms returns 1 (0x1) -T98A8 075:911.864 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:911.928 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 075:912.312 Data: 01 -T98A8 075:912.400 - 0.539ms returns 1 (0x1) -T98A8 075:912.464 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:912.528 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 075:913.032 Data: 03 -T98A8 075:913.352 - 0.880ms returns 1 (0x1) -T98A8 075:913.920 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:914.128 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 075:914.544 Data: 02 -T98A8 075:914.704 - 0.783ms returns 1 (0x1) -T98A8 075:914.784 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:914.864 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 075:915.248 Data: 01 -T98A8 075:915.384 - 0.602ms returns 1 (0x1) -T98A8 075:915.456 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:915.536 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 075:915.904 Data: 00 00 00 00 -T98A8 075:916.000 - 0.546ms returns 4 (0x4) -T98A8 075:916.112 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:916.176 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 075:916.528 Data: 00 -T98A8 075:916.624 - 0.510ms returns 1 (0x1) -T98A8 075:916.872 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 075:916.944 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 075:917.296 Data: 00 -T98A8 075:917.424 - 0.545ms returns 1 (0x1) -T98A8 075:917.568 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:917.640 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 075:917.976 Data: 10 CF 01 20 -T98A8 075:918.096 - 0.526ms returns 4 (0x4) -T98A8 075:918.192 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 075:918.272 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 075:918.728 Data: 49 CF 01 20 -T98A8 075:918.832 - 0.640ms returns 4 (0x4) -T358C 075:919.000 JLINK_IsHalted() -T358C 075:919.376 - 0.373ms returns FALSE -T358C 076:019.608 JLINK_HasError() -T358C 076:019.792 JLINK_IsHalted() -T358C 076:020.176 - 0.378ms returns FALSE -T358C 076:120.592 JLINK_HasError() -T358C 076:120.744 JLINK_IsHalted() -T358C 076:121.200 - 0.450ms returns FALSE -T358C 076:221.384 JLINK_HasError() -T358C 076:221.536 JLINK_IsHalted() -T358C 076:221.960 - 0.422ms returns FALSE -T358C 076:322.520 JLINK_HasError() -T358C 076:322.800 JLINK_IsHalted() -T358C 076:323.248 - 0.454ms returns FALSE -T358C 076:424.120 JLINK_HasError() -T358C 076:424.296 JLINK_HasError() -T358C 076:424.368 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 076:424.456 Data: F7 AE 0E 05 -T358C 076:424.560 Debug reg: DWT_CYCCNT -T358C 076:424.656 - 0.300ms returns 1 (0x1) -T98A8 076:425.032 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 076:425.176 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 076:425.808 Data: 0F 00 04 20 00 F1 07 C0 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 076:425.936 - 0.911ms returns 25 (0x19) -T98A8 076:426.032 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:426.120 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 076:426.464 Data: 02 -T98A8 076:426.592 - 0.556ms returns 1 (0x1) -T98A8 076:426.720 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:426.784 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 076:427.248 Data: 00 00 00 00 -T98A8 076:427.360 - 0.645ms returns 4 (0x4) -T98A8 076:427.440 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:427.504 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 076:428.016 Data: 00 00 00 00 -T98A8 076:428.176 - 0.742ms returns 4 (0x4) -T98A8 076:428.280 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:428.360 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 076:428.848 Data: 80 56 43 BC -T98A8 076:428.960 - 0.680ms returns 4 (0x4) -T98A8 076:429.040 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:429.104 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 076:429.568 Data: 00 00 00 00 -T98A8 076:429.664 - 0.627ms returns 4 (0x4) -T98A8 076:429.728 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:429.792 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 076:430.168 Data: 01 -T98A8 076:430.264 - 0.537ms returns 1 (0x1) -T98A8 076:430.328 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:430.392 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 076:430.768 Data: 01 -T98A8 076:430.864 - 0.526ms returns 1 (0x1) -T98A8 076:430.928 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:430.984 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 076:431.376 Data: 02 -T98A8 076:431.528 - 0.602ms returns 1 (0x1) -T98A8 076:431.608 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:431.696 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 076:432.056 Data: 01 -T98A8 076:432.176 - 0.569ms returns 1 (0x1) -T98A8 076:432.248 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:432.312 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 076:432.736 Data: 01 -T98A8 076:432.840 - 0.587ms returns 1 (0x1) -T98A8 076:432.904 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:432.968 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 076:433.304 Data: 02 -T98A8 076:433.400 - 0.497ms returns 1 (0x1) -T98A8 076:434.200 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:434.288 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 076:434.736 Data: 03 -T98A8 076:434.856 - 0.653ms returns 1 (0x1) -T98A8 076:434.944 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:435.056 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 076:435.496 Data: 01 -T98A8 076:435.648 - 0.700ms returns 1 (0x1) -T98A8 076:435.736 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 076:435.840 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 076:436.328 Data: 00 00 -T98A8 076:436.488 - 0.746ms returns 2 (0x2) -T98A8 076:436.584 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 076:436.680 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 076:437.120 Data: 00 00 -T98A8 076:437.240 - 0.657ms returns 2 (0x2) -T98A8 076:437.456 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:437.528 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 076:437.904 Data: 40 C4 01 20 -T98A8 076:438.024 - 0.574ms returns 4 (0x4) -T98A8 076:438.128 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:438.208 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 076:438.576 Data: 01 00 00 00 -T98A8 076:438.704 - 0.575ms returns 4 (0x4) -T98A8 076:438.848 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:438.920 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 076:439.256 Data: 00 00 00 00 -T98A8 076:439.344 - 0.500ms returns 4 (0x4) -T98A8 076:439.424 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:439.496 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 076:440.224 Data: 00 00 00 00 -T98A8 076:440.384 - 0.961ms returns 4 (0x4) -T98A8 076:440.488 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:440.560 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 076:440.944 Data: 80 56 43 BC -T98A8 076:441.096 - 0.611ms returns 4 (0x4) -T98A8 076:441.184 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:441.264 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 076:441.688 Data: 00 00 00 00 -T98A8 076:441.808 - 0.628ms returns 4 (0x4) -T98A8 076:441.912 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:442.000 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 076:442.368 Data: 01 -T98A8 076:442.456 - 0.544ms returns 1 (0x1) -T98A8 076:442.528 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:442.584 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 076:442.960 Data: 01 -T98A8 076:443.048 - 0.521ms returns 1 (0x1) -T98A8 076:443.112 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:443.176 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 076:443.520 Data: 03 -T98A8 076:443.664 - 0.558ms returns 1 (0x1) -T98A8 076:443.752 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:443.832 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 076:444.744 Data: 01 -T98A8 076:444.928 - 1.175ms returns 1 (0x1) -T98A8 076:445.008 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:445.096 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 076:445.464 Data: 01 -T98A8 076:445.632 - 0.617ms returns 1 (0x1) -T98A8 076:445.712 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:445.800 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 076:446.168 Data: 03 -T98A8 076:446.288 - 0.574ms returns 1 (0x1) -T98A8 076:446.400 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:446.480 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 076:446.888 Data: 02 -T98A8 076:447.056 - 0.649ms returns 1 (0x1) -T98A8 076:447.136 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:447.216 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 076:447.616 Data: 01 -T98A8 076:447.736 - 0.603ms returns 1 (0x1) -T98A8 076:447.824 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:447.896 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 076:448.272 Data: 00 00 00 00 -T98A8 076:448.368 - 0.552ms returns 4 (0x4) -T98A8 076:448.464 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:448.536 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 076:448.880 Data: 00 -T98A8 076:449.040 - 0.564ms returns 1 (0x1) -T98A8 076:449.400 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:449.480 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 076:449.880 Data: 00 -T98A8 076:450.000 - 0.595ms returns 1 (0x1) -T98A8 076:450.160 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:450.224 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 076:451.344 Data: 10 CF 01 20 -T98A8 076:451.504 - 1.345ms returns 4 (0x4) -T98A8 076:451.608 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:451.672 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 076:452.464 Data: 49 CF 01 20 -T98A8 076:452.624 - 1.014ms returns 4 (0x4) -T358C 076:452.840 JLINK_IsHalted() -T358C 076:453.256 - 0.410ms returns FALSE -T358C 076:553.968 JLINK_HasError() -T358C 076:554.152 JLINK_IsHalted() -T358C 076:554.952 - 0.799ms returns FALSE -T358C 076:655.144 JLINK_HasError() -T358C 076:655.272 JLINK_IsHalted() -T358C 076:656.312 - 1.037ms returns FALSE -T358C 076:757.288 JLINK_HasError() -T358C 076:757.480 JLINK_IsHalted() -T358C 076:757.904 - 0.417ms returns FALSE -T358C 076:858.376 JLINK_HasError() -T358C 076:858.544 JLINK_IsHalted() -T358C 076:858.976 - 0.436ms returns FALSE -T358C 076:959.224 JLINK_HasError() -T358C 076:959.392 JLINK_HasError() -T358C 076:959.456 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 076:959.536 Data: F7 AE 0E 05 -T358C 076:959.616 Debug reg: DWT_CYCCNT -T358C 076:959.720 - 0.264ms returns 1 (0x1) -T98A8 076:960.272 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 076:960.392 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 076:960.976 Data: 0F 00 04 20 00 F1 F7 E9 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 076:961.264 - 0.988ms returns 25 (0x19) -T98A8 076:961.480 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:961.624 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 076:962.144 Data: 02 -T98A8 076:962.344 - 0.862ms returns 1 (0x1) -T98A8 076:962.504 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:962.592 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 076:963.088 Data: 00 00 00 00 -T98A8 076:963.256 - 0.758ms returns 4 (0x4) -T98A8 076:963.480 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:963.568 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 076:964.056 Data: 00 00 00 00 -T98A8 076:964.176 - 0.701ms returns 4 (0x4) -T98A8 076:964.248 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:964.344 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 076:965.136 Data: 80 56 43 BC -T98A8 076:965.288 - 1.033ms returns 4 (0x4) -T98A8 076:965.384 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:965.472 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 076:965.968 Data: 00 00 00 00 -T98A8 076:966.128 - 0.742ms returns 4 (0x4) -T98A8 076:966.224 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:966.320 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 076:966.784 Data: 01 -T98A8 076:966.896 - 0.671ms returns 1 (0x1) -T98A8 076:966.968 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:967.032 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 076:967.376 Data: 01 -T98A8 076:967.496 - 0.523ms returns 1 (0x1) -T98A8 076:967.560 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:967.624 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 076:968.496 Data: 02 -T98A8 076:968.640 - 1.077ms returns 1 (0x1) -T98A8 076:968.712 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:968.808 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 076:969.200 Data: 01 -T98A8 076:969.328 - 0.622ms returns 1 (0x1) -T98A8 076:969.400 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:969.464 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 076:970.344 Data: 01 -T98A8 076:970.448 - 1.052ms returns 1 (0x1) -T98A8 076:970.520 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:970.592 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 076:970.928 Data: 02 -T98A8 076:971.032 - 0.512ms returns 1 (0x1) -T98A8 076:971.104 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:971.168 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 076:971.552 Data: 02 -T98A8 076:971.656 - 0.552ms returns 1 (0x1) -T98A8 076:972.544 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:972.640 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 076:973.176 Data: 01 -T98A8 076:973.328 - 0.789ms returns 1 (0x1) -T98A8 076:973.400 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 076:973.464 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 076:973.936 Data: 00 00 -T98A8 076:974.512 - 1.110ms returns 2 (0x2) -T98A8 076:975.224 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 076:975.312 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 076:975.984 Data: 00 00 -T98A8 076:976.144 - 0.927ms returns 2 (0x2) -T98A8 076:976.752 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:977.104 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 076:977.800 Data: 40 C4 01 20 -T98A8 076:977.968 - 1.209ms returns 4 (0x4) -T98A8 076:978.128 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:978.224 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 076:978.688 Data: 01 00 00 00 -T98A8 076:978.904 - 0.777ms returns 4 (0x4) -T98A8 076:979.056 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:979.168 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 076:979.608 Data: 00 00 00 00 -T98A8 076:979.776 - 0.722ms returns 4 (0x4) -T98A8 076:979.888 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:979.984 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 076:980.432 Data: 00 00 00 00 -T98A8 076:980.704 - 0.821ms returns 4 (0x4) -T98A8 076:980.824 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:980.912 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 076:981.528 Data: 80 56 43 BC -T98A8 076:981.736 - 0.912ms returns 4 (0x4) -T98A8 076:981.864 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:981.976 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 076:982.696 Data: 00 00 00 00 -T98A8 076:982.928 - 1.066ms returns 4 (0x4) -T98A8 076:983.096 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:983.408 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 076:984.264 Data: 01 -T98A8 076:984.432 - 1.330ms returns 1 (0x1) -T98A8 076:984.528 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:984.624 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 076:985.072 Data: 01 -T98A8 076:985.264 - 0.734ms returns 1 (0x1) -T98A8 076:985.384 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:985.496 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 076:985.960 Data: 03 -T98A8 076:986.128 - 0.750ms returns 1 (0x1) -T98A8 076:986.232 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:986.328 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 076:987.496 Data: 01 -T98A8 076:987.696 - 1.462ms returns 1 (0x1) -T98A8 076:987.784 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:987.864 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 076:988.240 Data: 01 -T98A8 076:988.336 - 0.556ms returns 1 (0x1) -T98A8 076:988.408 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:988.472 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 076:988.816 Data: 03 -T98A8 076:988.976 - 0.568ms returns 1 (0x1) -T98A8 076:989.064 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:989.144 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 076:989.568 Data: 03 -T98A8 076:989.680 - 0.615ms returns 1 (0x1) -T98A8 076:989.808 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:989.872 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 076:990.224 Data: 01 -T98A8 076:990.320 - 0.520ms returns 1 (0x1) -T98A8 076:990.392 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:990.456 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 076:991.184 Data: 00 00 00 00 -T98A8 076:991.384 - 0.994ms returns 4 (0x4) -T98A8 076:991.664 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:991.792 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 076:992.184 Data: 00 -T98A8 076:992.296 - 0.628ms returns 1 (0x1) -T98A8 076:992.640 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 076:992.736 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 076:993.520 Data: 00 -T98A8 076:993.648 - 1.015ms returns 1 (0x1) -T98A8 076:993.856 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:993.928 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 076:994.280 Data: 10 CF 01 20 -T98A8 076:994.416 - 0.558ms returns 4 (0x4) -T98A8 076:994.512 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 076:994.576 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 076:994.944 Data: 49 CF 01 20 -T98A8 076:995.048 - 0.538ms returns 4 (0x4) -T358C 076:995.232 JLINK_IsHalted() -T358C 076:995.680 - 0.448ms returns FALSE -T358C 077:096.040 JLINK_HasError() -T358C 077:096.216 JLINK_IsHalted() -T358C 077:096.624 - 0.400ms returns FALSE -T358C 077:196.992 JLINK_HasError() -T358C 077:197.168 JLINK_IsHalted() -T358C 077:197.632 - 0.459ms returns FALSE -T358C 077:298.864 JLINK_HasError() -T358C 077:299.024 JLINK_IsHalted() -T358C 077:299.432 - 0.400ms returns FALSE -T358C 077:400.080 JLINK_HasError() -T358C 077:400.272 JLINK_IsHalted() -T358C 077:400.816 - 0.537ms returns FALSE -T358C 077:501.176 JLINK_HasError() -T358C 077:501.384 JLINK_HasError() -T358C 077:501.480 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 077:501.608 Data: F7 AE 0E 05 -T358C 077:501.696 Debug reg: DWT_CYCCNT -T358C 077:501.776 - 0.298ms returns 1 (0x1) -T98A8 077:502.064 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 077:502.216 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 077:502.832 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 077:502.928 - 0.868ms returns 25 (0x19) -T98A8 077:503.016 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:503.080 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 077:503.440 Data: 02 -T98A8 077:503.544 - 0.530ms returns 1 (0x1) -T98A8 077:503.688 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:503.760 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 077:504.240 Data: 00 00 00 00 -T98A8 077:504.344 - 0.662ms returns 4 (0x4) -T98A8 077:504.424 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:504.488 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 077:504.952 Data: 00 00 00 00 -T98A8 077:505.048 - 0.629ms returns 4 (0x4) -T98A8 077:505.128 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:505.240 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 077:505.712 Data: 80 56 43 BC -T98A8 077:505.816 - 0.692ms returns 4 (0x4) -T98A8 077:505.888 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:505.952 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 077:506.480 Data: 00 00 00 00 -T98A8 077:506.608 - 0.725ms returns 4 (0x4) -T98A8 077:506.688 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:506.792 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 077:507.184 Data: 01 -T98A8 077:507.368 - 0.682ms returns 1 (0x1) -T98A8 077:507.456 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:507.568 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 077:507.944 Data: 01 -T98A8 077:508.072 - 0.612ms returns 1 (0x1) -T98A8 077:508.144 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:508.208 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 077:508.552 Data: 02 -T98A8 077:508.672 - 0.531ms returns 1 (0x1) -T98A8 077:508.744 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:508.808 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 077:509.696 Data: 01 -T98A8 077:509.904 - 1.162ms returns 1 (0x1) -T98A8 077:510.016 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:510.128 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 077:510.560 Data: 01 -T98A8 077:510.712 - 0.696ms returns 1 (0x1) -T98A8 077:510.800 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:510.920 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 077:511.368 Data: 02 -T98A8 077:511.536 - 0.740ms returns 1 (0x1) -T98A8 077:511.656 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:511.760 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 077:512.112 Data: 01 -T98A8 077:512.224 - 0.567ms returns 1 (0x1) -T98A8 077:513.032 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:513.128 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 077:513.488 Data: 01 -T98A8 077:513.616 - 0.584ms returns 1 (0x1) -T98A8 077:513.680 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 077:513.744 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 077:514.160 Data: 00 00 -T98A8 077:514.264 - 0.582ms returns 2 (0x2) -T98A8 077:514.336 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 077:514.400 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 077:514.824 Data: 00 00 -T98A8 077:514.936 - 0.608ms returns 2 (0x2) -T98A8 077:515.128 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:515.192 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 077:515.536 Data: 40 C4 01 20 -T98A8 077:515.632 - 0.505ms returns 4 (0x4) -T98A8 077:515.728 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:515.792 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 077:516.120 Data: 01 00 00 00 -T98A8 077:516.240 - 0.516ms returns 4 (0x4) -T98A8 077:516.328 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:516.392 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 077:516.800 Data: 00 00 00 00 -T98A8 077:516.896 - 0.570ms returns 4 (0x4) -T98A8 077:516.968 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:517.032 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 077:517.368 Data: 00 00 00 00 -T98A8 077:517.456 - 0.493ms returns 4 (0x4) -T98A8 077:517.536 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:517.600 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 077:517.944 Data: 80 56 43 BC -T98A8 077:518.096 - 0.559ms returns 4 (0x4) -T98A8 077:518.184 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:518.288 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 077:518.680 Data: 00 00 00 00 -T98A8 077:518.832 - 0.652ms returns 4 (0x4) -T98A8 077:518.936 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:519.024 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 077:519.376 Data: 01 -T98A8 077:519.496 - 0.554ms returns 1 (0x1) -T98A8 077:519.584 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:519.664 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 077:520.024 Data: 01 -T98A8 077:520.120 - 0.535ms returns 1 (0x1) -T98A8 077:520.184 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:520.248 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 077:520.592 Data: 03 -T98A8 077:520.696 - 0.516ms returns 1 (0x1) -T98A8 077:520.776 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:520.840 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 077:521.176 Data: 01 -T98A8 077:521.296 - 0.525ms returns 1 (0x1) -T98A8 077:521.376 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:521.456 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 077:521.816 Data: 01 -T98A8 077:521.928 - 0.551ms returns 1 (0x1) -T98A8 077:522.008 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:522.080 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 077:522.416 Data: 03 -T98A8 077:522.536 - 0.528ms returns 1 (0x1) -T98A8 077:522.600 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:522.664 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 077:523.008 Data: 01 -T98A8 077:523.112 - 0.506ms returns 1 (0x1) -T98A8 077:523.192 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:523.264 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 077:523.600 Data: 01 -T98A8 077:523.696 - 0.504ms returns 1 (0x1) -T98A8 077:523.760 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:523.824 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 077:524.168 Data: 00 00 00 00 -T98A8 077:524.272 - 0.504ms returns 4 (0x4) -T98A8 077:524.368 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:524.432 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 077:524.896 Data: 00 -T98A8 077:524.984 - 0.618ms returns 1 (0x1) -T98A8 077:525.288 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 077:525.352 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 077:525.696 Data: 00 -T98A8 077:525.832 - 0.545ms returns 1 (0x1) -T98A8 077:526.000 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:526.080 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 077:526.448 Data: 10 CF 01 20 -T98A8 077:526.664 - 0.665ms returns 4 (0x4) -T98A8 077:526.792 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 077:526.912 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 077:527.312 Data: 49 CF 01 20 -T98A8 077:527.432 - 0.642ms returns 4 (0x4) -T358C 077:527.664 JLINK_IsHalted() -T358C 077:528.016 - 0.354ms returns FALSE -T358C 077:629.168 JLINK_HasError() -T358C 077:629.312 JLINK_IsHalted() -T358C 077:629.840 - 0.524ms returns FALSE -T358C 077:730.320 JLINK_HasError() -T358C 077:730.664 JLINK_IsHalted() -T358C 077:731.184 - 0.522ms returns FALSE -T358C 077:832.768 JLINK_HasError() -T358C 077:833.040 JLINK_IsHalted() -T358C 077:833.448 - 0.404ms returns FALSE -T358C 077:934.176 JLINK_HasError() -T358C 077:934.368 JLINK_IsHalted() -T358C 077:934.856 - 0.482ms returns FALSE -T358C 078:035.848 JLINK_HasError() -T358C 078:036.040 JLINK_HasError() -T358C 078:036.112 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 078:036.192 Data: F7 AE 0E 05 -T358C 078:036.288 Debug reg: DWT_CYCCNT -T358C 078:036.384 - 0.275ms returns 1 (0x1) -T98A8 078:036.720 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 078:036.904 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 078:037.576 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 078:037.704 - 0.982ms returns 25 (0x19) -T98A8 078:037.808 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:037.872 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 078:038.288 Data: 02 -T98A8 078:038.384 - 0.584ms returns 1 (0x1) -T98A8 078:038.504 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:038.568 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 078:039.088 Data: 00 00 00 00 -T98A8 078:039.192 - 0.689ms returns 4 (0x4) -T98A8 078:039.264 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:039.376 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 078:040.296 Data: 00 00 00 00 -T98A8 078:040.584 - 1.314ms returns 4 (0x4) -T98A8 078:040.728 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:040.792 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 078:041.256 Data: 80 56 43 BC -T98A8 078:041.376 - 0.649ms returns 4 (0x4) -T98A8 078:041.456 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:041.520 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 078:042.096 Data: 00 00 00 00 -T98A8 078:042.192 - 0.743ms returns 4 (0x4) -T98A8 078:042.264 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:042.336 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 078:042.672 Data: 01 -T98A8 078:042.768 - 0.502ms returns 1 (0x1) -T98A8 078:042.832 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:042.896 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 078:043.312 Data: 01 -T98A8 078:043.472 - 0.634ms returns 1 (0x1) -T98A8 078:043.552 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:043.640 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 078:044.008 Data: 02 -T98A8 078:044.104 - 0.551ms returns 1 (0x1) -T98A8 078:044.176 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:044.232 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 078:044.592 Data: 01 -T98A8 078:044.728 - 0.559ms returns 1 (0x1) -T98A8 078:044.800 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:044.864 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 078:045.280 Data: 01 -T98A8 078:045.416 - 0.613ms returns 1 (0x1) -T98A8 078:045.488 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:045.552 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 078:046.048 Data: 02 -T98A8 078:046.192 - 0.711ms returns 1 (0x1) -T98A8 078:046.272 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:046.352 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 078:046.776 Data: 01 -T98A8 078:046.960 - 0.680ms returns 1 (0x1) -T98A8 078:047.696 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:047.792 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 078:048.168 Data: 02 -T98A8 078:048.312 - 0.612ms returns 1 (0x1) -T98A8 078:048.744 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 078:048.832 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 078:049.232 Data: 00 00 -T98A8 078:049.368 - 0.627ms returns 2 (0x2) -T98A8 078:049.440 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 078:049.504 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 078:049.904 Data: 00 00 -T98A8 078:050.072 - 0.635ms returns 2 (0x2) -T98A8 078:050.256 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:050.320 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 078:050.704 Data: 40 C4 01 20 -T98A8 078:050.832 - 0.572ms returns 4 (0x4) -T98A8 078:050.992 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:051.064 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 078:051.408 Data: 01 00 00 00 -T98A8 078:051.504 - 0.517ms returns 4 (0x4) -T98A8 078:051.592 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:051.656 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 078:051.984 Data: 00 00 00 00 -T98A8 078:052.080 - 0.495ms returns 4 (0x4) -T98A8 078:052.152 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:052.224 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 078:052.560 Data: 00 00 00 00 -T98A8 078:052.656 - 0.500ms returns 4 (0x4) -T98A8 078:052.728 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:052.792 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 078:053.144 Data: 80 56 43 BC -T98A8 078:053.232 - 0.508ms returns 4 (0x4) -T98A8 078:053.304 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:053.368 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 078:053.752 Data: 00 00 00 00 -T98A8 078:053.848 - 0.540ms returns 4 (0x4) -T98A8 078:053.928 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:054.000 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 078:054.336 Data: 01 -T98A8 078:054.440 - 0.513ms returns 1 (0x1) -T98A8 078:054.512 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:054.584 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 078:055.024 Data: 01 -T98A8 078:055.336 - 0.816ms returns 1 (0x1) -T98A8 078:055.440 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:055.536 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 078:056.016 Data: 03 -T98A8 078:056.224 - 0.780ms returns 1 (0x1) -T98A8 078:056.336 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:056.432 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 078:056.888 Data: 01 -T98A8 078:057.072 - 0.735ms returns 1 (0x1) -T98A8 078:057.184 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:057.288 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 078:057.688 Data: 01 -T98A8 078:057.848 - 0.666ms returns 1 (0x1) -T98A8 078:057.992 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:058.080 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 078:059.088 Data: 03 -T98A8 078:059.216 - 1.225ms returns 1 (0x1) -T98A8 078:059.296 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:059.376 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 078:059.760 Data: 01 -T98A8 078:059.880 - 0.582ms returns 1 (0x1) -T98A8 078:059.984 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:060.064 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 078:060.416 Data: 03 -T98A8 078:060.576 - 0.588ms returns 1 (0x1) -T98A8 078:060.680 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:060.760 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 078:061.176 Data: 00 00 00 00 -T98A8 078:061.336 - 0.663ms returns 4 (0x4) -T98A8 078:061.520 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:061.624 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 078:061.992 Data: 00 -T98A8 078:062.104 - 0.579ms returns 1 (0x1) -T98A8 078:062.448 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:062.512 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 078:062.880 Data: 00 -T98A8 078:062.976 - 0.533ms returns 1 (0x1) -T98A8 078:063.112 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:063.176 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 078:063.640 Data: 10 CF 01 20 -T98A8 078:063.800 - 0.689ms returns 4 (0x4) -T98A8 078:063.920 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:063.992 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 078:064.360 Data: 49 CF 01 20 -T98A8 078:064.496 - 0.576ms returns 4 (0x4) -T358C 078:064.680 JLINK_IsHalted() -T358C 078:065.024 - 0.344ms returns FALSE -T358C 078:165.280 JLINK_HasError() -T358C 078:165.480 JLINK_IsHalted() -T358C 078:165.880 - 0.402ms returns FALSE -T358C 078:266.352 JLINK_HasError() -T358C 078:266.504 JLINK_IsHalted() -T358C 078:266.880 - 0.374ms returns FALSE -T358C 078:367.480 JLINK_HasError() -T358C 078:367.664 JLINK_IsHalted() -T358C 078:368.072 - 0.407ms returns FALSE -T358C 078:469.248 JLINK_HasError() -T358C 078:469.520 JLINK_IsHalted() -T358C 078:470.048 - 0.520ms returns FALSE -T358C 078:571.560 JLINK_HasError() -T358C 078:571.744 JLINK_HasError() -T358C 078:571.808 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 078:571.896 Data: F7 AE 0E 05 -T358C 078:572.000 Debug reg: DWT_CYCCNT -T358C 078:572.112 - 0.294ms returns 1 (0x1) -T98A8 078:572.344 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 078:572.488 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 078:573.208 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 078:573.496 - 1.156ms returns 25 (0x19) -T98A8 078:573.624 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:573.704 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 078:574.080 Data: 02 -T98A8 078:574.216 - 0.583ms returns 1 (0x1) -T98A8 078:574.320 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:574.392 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 078:574.976 Data: 00 00 00 00 -T98A8 078:575.112 - 0.785ms returns 4 (0x4) -T98A8 078:575.184 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:575.248 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 078:575.760 Data: 00 00 00 00 -T98A8 078:575.888 - 0.703ms returns 4 (0x4) -T98A8 078:575.968 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:576.048 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 078:576.576 Data: 80 56 43 BC -T98A8 078:576.736 - 0.766ms returns 4 (0x4) -T98A8 078:576.864 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:576.944 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 078:577.416 Data: 00 00 00 00 -T98A8 078:577.520 - 0.659ms returns 4 (0x4) -T98A8 078:577.584 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:577.656 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 078:578.016 Data: 01 -T98A8 078:578.128 - 0.533ms returns 1 (0x1) -T98A8 078:578.192 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:578.256 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 078:578.800 Data: 01 -T98A8 078:578.904 - 0.713ms returns 1 (0x1) -T98A8 078:578.992 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:579.080 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 078:579.440 Data: 02 -T98A8 078:579.536 - 0.544ms returns 1 (0x1) -T98A8 078:579.600 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:579.664 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 078:580.144 Data: 01 -T98A8 078:580.264 - 0.656ms returns 1 (0x1) -T98A8 078:580.336 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:580.400 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 078:580.792 Data: 01 -T98A8 078:580.896 - 0.567ms returns 1 (0x1) -T98A8 078:580.968 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:581.024 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 078:581.480 Data: 02 -T98A8 078:581.752 - 0.791ms returns 1 (0x1) -T98A8 078:581.904 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:581.984 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 078:582.328 Data: 01 -T98A8 078:582.448 - 0.544ms returns 1 (0x1) -T98A8 078:582.520 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:582.584 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 078:582.936 Data: 02 -T98A8 078:583.032 - 0.516ms returns 1 (0x1) -T98A8 078:583.760 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 078:583.856 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 078:584.312 Data: 00 00 -T98A8 078:584.528 - 0.776ms returns 2 (0x2) -T98A8 078:584.640 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 078:584.784 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 078:585.216 Data: 00 00 -T98A8 078:585.352 - 0.707ms returns 2 (0x2) -T98A8 078:585.512 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:585.616 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 078:586.016 Data: 40 C4 01 20 -T98A8 078:586.128 - 0.613ms returns 4 (0x4) -T98A8 078:586.216 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:586.288 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 078:586.640 Data: 01 00 00 00 -T98A8 078:586.808 - 0.592ms returns 4 (0x4) -T98A8 078:586.920 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:587.040 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 078:587.536 Data: 00 00 00 00 -T98A8 078:587.824 - 0.904ms returns 4 (0x4) -T98A8 078:588.024 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:588.112 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 078:588.496 Data: 00 00 00 00 -T98A8 078:588.624 - 0.598ms returns 4 (0x4) -T98A8 078:588.720 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:588.808 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 078:589.168 Data: 80 56 43 BC -T98A8 078:589.264 - 0.546ms returns 4 (0x4) -T98A8 078:589.336 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:589.400 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 078:589.752 Data: 00 00 00 00 -T98A8 078:591.160 - 1.819ms returns 4 (0x4) -T98A8 078:591.816 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:591.888 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 078:592.232 Data: 01 -T98A8 078:592.344 - 0.532ms returns 1 (0x1) -T98A8 078:592.416 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:592.480 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 078:592.880 Data: 01 -T98A8 078:592.976 - 0.557ms returns 1 (0x1) -T98A8 078:593.040 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:593.104 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 078:593.520 Data: 03 -T98A8 078:593.616 - 0.579ms returns 1 (0x1) -T98A8 078:593.680 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:593.744 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 078:594.184 Data: 01 -T98A8 078:594.272 - 0.589ms returns 1 (0x1) -T98A8 078:594.336 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:594.400 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 078:594.768 Data: 01 -T98A8 078:594.856 - 0.517ms returns 1 (0x1) -T98A8 078:594.920 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:594.992 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 078:595.384 Data: 03 -T98A8 078:595.536 - 0.621ms returns 1 (0x1) -T98A8 078:595.632 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:595.712 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 078:596.096 Data: 01 -T98A8 078:596.232 - 0.601ms returns 1 (0x1) -T98A8 078:596.304 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:596.368 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 078:596.752 Data: 03 -T98A8 078:596.848 - 0.555ms returns 1 (0x1) -T98A8 078:596.944 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:597.008 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 078:597.392 Data: 00 00 00 00 -T98A8 078:597.488 - 0.544ms returns 4 (0x4) -T98A8 078:597.584 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:597.656 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 078:598.080 Data: 00 -T98A8 078:598.224 - 0.645ms returns 1 (0x1) -T98A8 078:598.576 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 078:598.656 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 078:599.040 Data: 00 -T98A8 078:599.168 - 0.598ms returns 1 (0x1) -T98A8 078:599.328 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:599.400 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 078:599.760 Data: 10 CF 01 20 -T98A8 078:599.952 - 0.623ms returns 4 (0x4) -T98A8 078:600.136 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 078:600.232 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 078:600.696 Data: 49 CF 01 20 -T98A8 078:600.816 - 0.683ms returns 4 (0x4) -T358C 078:600.992 JLINK_IsHalted() -T358C 078:601.320 - 0.321ms returns FALSE -T358C 078:702.360 JLINK_HasError() -T358C 078:702.536 JLINK_IsHalted() -T358C 078:703.536 - 1.002ms returns FALSE -T358C 078:804.528 JLINK_HasError() -T358C 078:804.720 JLINK_IsHalted() -T358C 078:805.120 - 0.397ms returns FALSE -T358C 078:905.280 JLINK_HasError() -T358C 078:905.472 JLINK_IsHalted() -T358C 078:906.384 - 0.906ms returns FALSE -T358C 079:007.792 JLINK_HasError() -T358C 079:008.144 JLINK_IsHalted() -T358C 079:008.592 - 0.443ms returns FALSE -T358C 079:109.552 JLINK_HasError() -T358C 079:109.760 JLINK_HasError() -T358C 079:109.832 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 079:109.928 Data: F7 AE 0E 05 -T358C 079:110.024 Debug reg: DWT_CYCCNT -T358C 079:110.104 - 0.275ms returns 1 (0x1) -T98A8 079:110.416 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 079:110.576 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 079:111.320 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 079:111.456 - 1.036ms returns 25 (0x19) -T98A8 079:111.544 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:111.632 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 079:112.352 Data: 02 -T98A8 079:112.496 - 0.943ms returns 1 (0x1) -T98A8 079:112.696 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:112.784 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 079:113.792 Data: 00 00 00 00 -T98A8 079:113.912 - 1.218ms returns 4 (0x4) -T98A8 079:114.000 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:114.080 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 079:114.640 Data: 00 00 00 00 -T98A8 079:114.792 - 0.790ms returns 4 (0x4) -T98A8 079:114.888 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:114.968 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 079:115.936 Data: 80 56 43 BC -T98A8 079:116.088 - 1.207ms returns 4 (0x4) -T98A8 079:116.192 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:116.272 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 079:116.776 Data: 00 00 00 00 -T98A8 079:116.904 - 0.710ms returns 4 (0x4) -T98A8 079:116.984 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:117.088 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 079:117.584 Data: 01 -T98A8 079:117.744 - 0.752ms returns 1 (0x1) -T98A8 079:117.832 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:117.936 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 079:118.320 Data: 01 -T98A8 079:118.424 - 0.596ms returns 1 (0x1) -T98A8 079:118.512 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:118.608 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 079:119.112 Data: 02 -T98A8 079:119.256 - 0.750ms returns 1 (0x1) -T98A8 079:119.328 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:119.408 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 079:119.920 Data: 01 -T98A8 079:120.048 - 0.718ms returns 1 (0x1) -T98A8 079:120.112 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:120.184 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 079:120.560 Data: 01 -T98A8 079:120.680 - 0.559ms returns 1 (0x1) -T98A8 079:120.752 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:120.816 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 079:121.168 Data: 02 -T98A8 079:121.328 - 0.582ms returns 1 (0x1) -T98A8 079:121.416 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:121.496 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 079:122.064 Data: 01 -T98A8 079:122.176 - 0.763ms returns 1 (0x1) -T98A8 079:122.248 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:122.312 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 079:122.672 Data: 01 -T98A8 079:122.784 - 0.537ms returns 1 (0x1) -T98A8 079:123.744 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 079:123.840 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 079:124.288 Data: 00 00 -T98A8 079:124.568 - 0.821ms returns 2 (0x2) -T98A8 079:124.816 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 079:124.944 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 079:125.392 Data: 00 00 -T98A8 079:125.744 - 0.934ms returns 2 (0x2) -T98A8 079:126.040 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:126.128 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 079:126.640 Data: 40 C4 01 20 -T98A8 079:126.776 - 0.731ms returns 4 (0x4) -T98A8 079:126.888 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:126.960 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 079:127.344 Data: 01 00 00 00 -T98A8 079:127.496 - 0.609ms returns 4 (0x4) -T98A8 079:127.600 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:127.680 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 079:128.080 Data: 00 00 00 00 -T98A8 079:128.232 - 0.628ms returns 4 (0x4) -T98A8 079:128.320 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:128.400 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 079:128.784 Data: 00 00 00 00 -T98A8 079:128.912 - 0.593ms returns 4 (0x4) -T98A8 079:129.016 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:129.096 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 079:129.456 Data: 80 56 43 BC -T98A8 079:129.552 - 0.537ms returns 4 (0x4) -T98A8 079:129.640 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:129.752 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 079:130.128 Data: 00 00 00 00 -T98A8 079:130.272 - 0.633ms returns 4 (0x4) -T98A8 079:130.384 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:130.456 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 079:130.808 Data: 01 -T98A8 079:130.952 - 0.568ms returns 1 (0x1) -T98A8 079:131.056 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:131.128 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 079:131.512 Data: 01 -T98A8 079:131.752 - 0.702ms returns 1 (0x1) -T98A8 079:131.848 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:131.936 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 079:132.328 Data: 03 -T98A8 079:132.440 - 0.597ms returns 1 (0x1) -T98A8 079:132.512 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:132.592 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 079:132.968 Data: 01 -T98A8 079:133.064 - 0.549ms returns 1 (0x1) -T98A8 079:133.136 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:133.200 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 079:133.608 Data: 01 -T98A8 079:133.736 - 0.604ms returns 1 (0x1) -T98A8 079:133.840 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:133.960 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 079:134.616 Data: 03 -T98A8 079:134.768 - 0.919ms returns 1 (0x1) -T98A8 079:134.856 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:134.936 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 079:135.344 Data: 01 -T98A8 079:135.456 - 0.602ms returns 1 (0x1) -T98A8 079:135.528 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:135.592 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 079:135.944 Data: 01 -T98A8 079:136.048 - 0.518ms returns 1 (0x1) -T98A8 079:136.144 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:136.208 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 079:136.560 Data: 00 00 00 00 -T98A8 079:136.664 - 0.519ms returns 4 (0x4) -T98A8 079:136.784 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:136.848 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 079:137.200 Data: 00 -T98A8 079:137.296 - 0.516ms returns 1 (0x1) -T98A8 079:137.648 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:137.712 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 079:138.072 Data: 00 -T98A8 079:138.160 - 0.519ms returns 1 (0x1) -T98A8 079:138.296 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:138.360 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 079:138.720 Data: 10 CF 01 20 -T98A8 079:138.808 - 0.514ms returns 4 (0x4) -T98A8 079:138.896 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:138.960 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 079:139.328 Data: 49 CF 01 20 -T98A8 079:139.568 - 0.669ms returns 4 (0x4) -T358C 079:139.880 JLINK_IsHalted() -T358C 079:140.384 - 0.501ms returns FALSE -T358C 079:241.024 JLINK_HasError() -T358C 079:241.200 JLINK_IsHalted() -T358C 079:241.656 - 0.451ms returns FALSE -T358C 079:342.200 JLINK_HasError() -T358C 079:342.352 JLINK_IsHalted() -T358C 079:342.736 - 0.392ms returns FALSE -T358C 079:443.088 JLINK_HasError() -T358C 079:443.248 JLINK_IsHalted() -T358C 079:443.680 - 0.438ms returns FALSE -T358C 079:544.176 JLINK_HasError() -T358C 079:544.360 JLINK_IsHalted() -T358C 079:544.768 - 0.408ms returns FALSE -T358C 079:645.824 JLINK_HasError() -T358C 079:645.984 JLINK_HasError() -T358C 079:646.048 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 079:646.128 Data: F7 AE 0E 05 -T358C 079:646.216 Debug reg: DWT_CYCCNT -T358C 079:646.304 - 0.254ms returns 1 (0x1) -T98A8 079:646.768 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 079:646.936 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 079:647.528 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 079:647.680 - 0.906ms returns 25 (0x19) -T98A8 079:647.792 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:647.856 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 079:648.344 Data: 02 -T98A8 079:648.456 - 0.666ms returns 1 (0x1) -T98A8 079:648.592 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:648.656 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 079:649.144 Data: 00 00 00 00 -T98A8 079:649.312 - 0.723ms returns 4 (0x4) -T98A8 079:649.416 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:649.504 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 079:650.064 Data: 00 00 00 00 -T98A8 079:650.296 - 0.879ms returns 4 (0x4) -T98A8 079:650.416 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:650.536 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 079:651.216 Data: 80 56 43 BC -T98A8 079:651.344 - 0.924ms returns 4 (0x4) -T98A8 079:651.416 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:651.480 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 079:651.960 Data: 00 00 00 00 -T98A8 079:652.064 - 0.647ms returns 4 (0x4) -T98A8 079:652.136 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:652.208 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 079:652.560 Data: 01 -T98A8 079:652.664 - 0.530ms returns 1 (0x1) -T98A8 079:652.736 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:652.800 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 079:653.144 Data: 01 -T98A8 079:653.248 - 0.511ms returns 1 (0x1) -T98A8 079:653.312 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:653.384 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 079:653.720 Data: 02 -T98A8 079:653.824 - 0.509ms returns 1 (0x1) -T98A8 079:653.888 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:653.960 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 079:654.312 Data: 01 -T98A8 079:654.448 - 0.558ms returns 1 (0x1) -T98A8 079:654.520 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:654.584 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 079:654.984 Data: 01 -T98A8 079:655.120 - 0.594ms returns 1 (0x1) -T98A8 079:655.184 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:655.280 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 079:655.648 Data: 02 -T98A8 079:655.776 - 0.590ms returns 1 (0x1) -T98A8 079:655.848 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:655.920 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 079:656.408 Data: 01 -T98A8 079:656.544 - 0.694ms returns 1 (0x1) -T98A8 079:656.616 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:656.680 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 079:657.112 Data: 01 -T98A8 079:657.224 - 0.608ms returns 1 (0x1) -T98A8 079:658.272 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 079:658.392 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 079:659.352 Data: 00 00 -T98A8 079:659.504 - 1.233ms returns 2 (0x2) -T98A8 079:659.600 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 079:659.664 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 079:660.056 Data: 00 00 -T98A8 079:660.192 - 0.595ms returns 2 (0x2) -T98A8 079:660.392 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:660.464 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 079:660.816 Data: 40 C4 01 20 -T98A8 079:660.944 - 0.553ms returns 4 (0x4) -T98A8 079:661.064 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:661.136 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 079:661.512 Data: 01 00 00 00 -T98A8 079:661.632 - 0.569ms returns 4 (0x4) -T98A8 079:661.728 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:661.808 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 079:662.176 Data: 00 00 00 00 -T98A8 079:662.272 - 0.544ms returns 4 (0x4) -T98A8 079:662.424 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:662.512 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 079:662.976 Data: 00 00 00 00 -T98A8 079:663.120 - 0.689ms returns 4 (0x4) -T98A8 079:663.200 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:663.272 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 079:665.000 Data: 80 56 43 BC -T98A8 079:665.216 - 2.015ms returns 4 (0x4) -T98A8 079:665.336 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:665.424 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 079:666.640 Data: 00 00 00 00 -T98A8 079:667.216 - 1.881ms returns 4 (0x4) -T98A8 079:667.320 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:667.392 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 079:667.904 Data: 01 -T98A8 079:668.032 - 0.709ms returns 1 (0x1) -T98A8 079:668.104 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:668.176 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 079:668.536 Data: 01 -T98A8 079:668.632 - 0.527ms returns 1 (0x1) -T98A8 079:668.696 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:668.768 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 079:669.104 Data: 03 -T98A8 079:669.208 - 0.507ms returns 1 (0x1) -T98A8 079:669.280 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:669.344 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 079:669.832 Data: 01 -T98A8 079:669.992 - 0.712ms returns 1 (0x1) -T98A8 079:670.080 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:670.160 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 079:670.528 Data: 01 -T98A8 079:670.656 - 0.582ms returns 1 (0x1) -T98A8 079:670.752 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:670.856 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 079:671.256 Data: 03 -T98A8 079:671.376 - 0.626ms returns 1 (0x1) -T98A8 079:671.480 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:671.616 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 079:672.000 Data: 01 -T98A8 079:672.160 - 0.676ms returns 1 (0x1) -T98A8 079:672.240 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:672.336 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 079:672.768 Data: 01 -T98A8 079:672.912 - 0.671ms returns 1 (0x1) -T98A8 079:673.032 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:673.112 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 079:673.488 Data: 00 00 00 00 -T98A8 079:673.624 - 0.592ms returns 4 (0x4) -T98A8 079:673.768 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:673.848 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 079:674.184 Data: 00 -T98A8 079:674.320 - 0.546ms returns 1 (0x1) -T98A8 079:674.736 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 079:674.848 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 079:675.224 Data: 00 -T98A8 079:675.328 - 0.596ms returns 1 (0x1) -T98A8 079:675.472 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:675.544 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 079:675.976 Data: 10 CF 01 20 -T98A8 079:676.120 - 0.643ms returns 4 (0x4) -T98A8 079:676.240 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 079:676.336 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 079:676.720 Data: 49 CF 01 20 -T98A8 079:676.912 - 0.675ms returns 4 (0x4) -T358C 079:677.440 JLINK_IsHalted() -T358C 079:678.032 - 0.595ms returns FALSE -T358C 079:779.056 JLINK_HasError() -T358C 079:779.224 JLINK_IsHalted() -T358C 079:779.656 - 0.424ms returns FALSE -T358C 079:880.512 JLINK_HasError() -T358C 079:880.712 JLINK_IsHalted() -T358C 079:881.144 - 0.434ms returns FALSE -T358C 079:981.584 JLINK_HasError() -T358C 079:981.864 JLINK_IsHalted() -T358C 079:982.384 - 0.521ms returns FALSE -T358C 080:083.056 JLINK_HasError() -T358C 080:083.232 JLINK_IsHalted() -T358C 080:083.672 - 0.439ms returns FALSE -T358C 080:184.208 JLINK_HasError() -T358C 080:184.336 JLINK_HasError() -T358C 080:184.400 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 080:184.472 Data: F7 AE 0E 05 -T358C 080:184.560 Debug reg: DWT_CYCCNT -T358C 080:184.640 - 0.242ms returns 1 (0x1) -T98A8 080:185.016 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 080:185.136 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 080:185.680 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 080:185.840 - 0.821ms returns 25 (0x19) -T98A8 080:185.968 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:186.096 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 080:186.488 Data: 02 -T98A8 080:186.624 - 0.664ms returns 1 (0x1) -T98A8 080:186.736 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:186.808 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 080:187.344 Data: 00 00 00 00 -T98A8 080:187.520 - 0.789ms returns 4 (0x4) -T98A8 080:187.608 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:187.688 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 080:188.200 Data: 00 00 00 00 -T98A8 080:188.400 - 0.788ms returns 4 (0x4) -T98A8 080:188.520 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:188.632 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 080:189.176 Data: 80 56 43 BC -T98A8 080:189.328 - 0.814ms returns 4 (0x4) -T98A8 080:189.416 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:189.504 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 080:190.056 Data: 00 00 00 00 -T98A8 080:190.192 - 0.773ms returns 4 (0x4) -T98A8 080:190.288 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:190.352 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 080:190.736 Data: 01 -T98A8 080:190.936 - 0.650ms returns 1 (0x1) -T98A8 080:191.064 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:191.184 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 080:191.600 Data: 01 -T98A8 080:191.752 - 0.686ms returns 1 (0x1) -T98A8 080:191.832 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:191.920 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 080:193.584 Data: 02 -T98A8 080:193.712 - 1.881ms returns 1 (0x1) -T98A8 080:193.792 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:193.864 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 080:194.224 Data: 01 -T98A8 080:194.368 - 0.577ms returns 1 (0x1) -T98A8 080:194.440 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:194.512 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 080:194.896 Data: 01 -T98A8 080:194.992 - 0.557ms returns 1 (0x1) -T98A8 080:195.064 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:195.136 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 080:195.480 Data: 02 -T98A8 080:195.640 - 0.576ms returns 1 (0x1) -T98A8 080:195.728 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:195.808 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 080:196.240 Data: 01 -T98A8 080:196.384 - 0.652ms returns 1 (0x1) -T98A8 080:196.456 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:196.528 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 080:196.888 Data: 01 -T98A8 080:197.024 - 0.571ms returns 1 (0x1) -T98A8 080:197.128 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 080:197.224 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 080:198.472 Data: 00 00 -T98A8 080:198.608 - 1.479ms returns 2 (0x2) -T98A8 080:198.696 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 080:198.768 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 080:199.216 Data: 00 00 -T98A8 080:199.376 - 0.687ms returns 2 (0x2) -T98A8 080:199.696 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:199.776 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 080:200.144 Data: 40 C4 01 20 -T98A8 080:200.272 - 0.583ms returns 4 (0x4) -T98A8 080:200.464 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:200.624 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 080:201.008 Data: 01 00 00 00 -T98A8 080:201.136 - 0.674ms returns 4 (0x4) -T98A8 080:201.232 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:201.320 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 080:201.728 Data: 00 00 00 00 -T98A8 080:201.856 - 0.621ms returns 4 (0x4) -T98A8 080:201.952 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:202.016 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 080:202.416 Data: 00 00 00 00 -T98A8 080:202.552 - 0.601ms returns 4 (0x4) -T98A8 080:202.640 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:202.712 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 080:203.160 Data: 80 56 43 BC -T98A8 080:203.264 - 0.623ms returns 4 (0x4) -T98A8 080:203.344 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:203.416 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 080:203.768 Data: 00 00 00 00 -T98A8 080:203.896 - 0.561ms returns 4 (0x4) -T98A8 080:204.008 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:204.080 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 080:204.432 Data: 01 -T98A8 080:204.552 - 0.540ms returns 1 (0x1) -T98A8 080:204.616 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:204.680 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 080:205.008 Data: 01 -T98A8 080:205.104 - 0.486ms returns 1 (0x1) -T98A8 080:205.168 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:205.232 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 080:206.008 Data: 03 -T98A8 080:206.160 - 0.987ms returns 1 (0x1) -T98A8 080:206.240 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:206.320 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 080:206.808 Data: 01 -T98A8 080:206.960 - 0.723ms returns 1 (0x1) -T98A8 080:207.040 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:207.104 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 080:207.768 Data: 01 -T98A8 080:207.904 - 0.864ms returns 1 (0x1) -T98A8 080:207.976 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:208.048 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 080:208.488 Data: 03 -T98A8 080:208.624 - 0.650ms returns 1 (0x1) -T98A8 080:208.712 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:208.808 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 080:209.200 Data: 01 -T98A8 080:209.352 - 0.638ms returns 1 (0x1) -T98A8 080:209.432 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:209.512 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 080:210.144 Data: 01 -T98A8 080:210.288 - 0.862ms returns 1 (0x1) -T98A8 080:210.384 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:210.480 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 080:211.376 Data: 00 00 00 00 -T98A8 080:211.504 - 1.122ms returns 4 (0x4) -T98A8 080:211.664 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:211.760 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 080:212.120 Data: 00 -T98A8 080:212.224 - 0.557ms returns 1 (0x1) -T98A8 080:212.720 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:212.816 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 080:213.216 Data: 00 -T98A8 080:213.320 - 0.604ms returns 1 (0x1) -T98A8 080:213.480 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:213.552 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 080:214.000 Data: 10 CF 01 20 -T98A8 080:214.168 - 0.690ms returns 4 (0x4) -T98A8 080:214.312 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:214.424 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 080:214.808 Data: 49 CF 01 20 -T98A8 080:215.024 - 0.708ms returns 4 (0x4) -T358C 080:215.424 JLINK_IsHalted() -T358C 080:215.832 - 0.410ms returns FALSE -T358C 080:316.464 JLINK_HasError() -T358C 080:316.616 JLINK_IsHalted() -T358C 080:317.600 - 0.985ms returns FALSE -T358C 080:417.880 JLINK_HasError() -T358C 080:418.040 JLINK_IsHalted() -T358C 080:418.448 - 0.405ms returns FALSE -T358C 080:519.208 JLINK_HasError() -T358C 080:519.368 JLINK_IsHalted() -T358C 080:519.752 - 0.381ms returns FALSE -T358C 080:620.928 JLINK_HasError() -T358C 080:621.096 JLINK_IsHalted() -T358C 080:622.112 - 1.016ms returns FALSE -T358C 080:722.536 JLINK_HasError() -T358C 080:722.704 JLINK_HasError() -T358C 080:722.776 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 080:722.896 Data: F7 AE 0E 05 -T358C 080:723.000 Debug reg: DWT_CYCCNT -T358C 080:723.112 - 0.332ms returns 1 (0x1) -T98A8 080:723.984 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 080:724.216 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 080:724.832 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 080:724.944 - 0.970ms returns 25 (0x19) -T98A8 080:725.048 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:725.120 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 080:726.056 Data: 02 -T98A8 080:726.192 - 1.145ms returns 1 (0x1) -T98A8 080:726.320 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:726.384 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 080:726.864 Data: 00 00 00 00 -T98A8 080:727.000 - 0.682ms returns 4 (0x4) -T98A8 080:727.080 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:727.144 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 080:728.240 Data: 00 00 00 00 -T98A8 080:728.368 - 1.290ms returns 4 (0x4) -T98A8 080:728.432 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:728.504 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 080:729.032 Data: 80 56 43 BC -T98A8 080:729.192 - 0.753ms returns 4 (0x4) -T98A8 080:729.280 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:729.360 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 080:729.936 Data: 00 00 00 00 -T98A8 080:730.048 - 0.765ms returns 4 (0x4) -T98A8 080:730.120 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:730.184 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 080:730.544 Data: 01 -T98A8 080:730.704 - 0.585ms returns 1 (0x1) -T98A8 080:730.784 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:730.856 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 080:731.216 Data: 01 -T98A8 080:731.328 - 0.549ms returns 1 (0x1) -T98A8 080:731.408 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:731.488 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 080:731.904 Data: 02 -T98A8 080:732.016 - 0.612ms returns 1 (0x1) -T98A8 080:732.096 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:732.176 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 080:732.560 Data: 01 -T98A8 080:732.656 - 0.558ms returns 1 (0x1) -T98A8 080:732.720 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:732.784 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 080:733.144 Data: 01 -T98A8 080:733.320 - 0.593ms returns 1 (0x1) -T98A8 080:733.400 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:733.480 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 080:733.840 Data: 02 -T98A8 080:733.960 - 0.555ms returns 1 (0x1) -T98A8 080:734.032 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:734.096 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 080:734.440 Data: 01 -T98A8 080:734.536 - 0.509ms returns 1 (0x1) -T98A8 080:734.600 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:734.672 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 080:735.024 Data: 01 -T98A8 080:735.152 - 0.554ms returns 1 (0x1) -T98A8 080:735.240 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 080:735.328 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 080:735.752 Data: 00 00 -T98A8 080:735.872 - 0.634ms returns 2 (0x2) -T98A8 080:735.944 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 080:736.008 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 080:736.400 Data: 00 00 -T98A8 080:736.496 - 0.559ms returns 2 (0x2) -T98A8 080:736.680 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:736.752 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 080:737.224 Data: 40 C4 01 20 -T98A8 080:737.520 - 0.845ms returns 4 (0x4) -T98A8 080:737.728 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:737.872 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 080:738.392 Data: 01 00 00 00 -T98A8 080:738.576 - 0.847ms returns 4 (0x4) -T98A8 080:738.672 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:738.736 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 080:739.200 Data: 00 00 00 00 -T98A8 080:739.328 - 0.659ms returns 4 (0x4) -T98A8 080:739.480 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:739.576 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 080:740.040 Data: 00 00 00 00 -T98A8 080:740.168 - 0.687ms returns 4 (0x4) -T98A8 080:740.256 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:740.320 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 080:740.712 Data: 80 56 43 BC -T98A8 080:740.824 - 0.567ms returns 4 (0x4) -T98A8 080:740.896 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:740.968 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 080:741.344 Data: 00 00 00 00 -T98A8 080:741.640 - 0.742ms returns 4 (0x4) -T98A8 080:741.744 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:741.808 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 080:742.160 Data: 01 -T98A8 080:742.296 - 0.557ms returns 1 (0x1) -T98A8 080:742.384 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:742.456 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 080:743.280 Data: 01 -T98A8 080:743.440 - 1.061ms returns 1 (0x1) -T98A8 080:743.528 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:743.608 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 080:744.040 Data: 03 -T98A8 080:744.168 - 0.641ms returns 1 (0x1) -T98A8 080:744.248 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:744.328 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 080:744.696 Data: 01 -T98A8 080:744.840 - 0.584ms returns 1 (0x1) -T98A8 080:744.920 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:745.008 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 080:745.376 Data: 01 -T98A8 080:745.496 - 0.572ms returns 1 (0x1) -T98A8 080:745.568 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:745.632 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 080:746.032 Data: 03 -T98A8 080:746.128 - 0.562ms returns 1 (0x1) -T98A8 080:746.208 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:746.272 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 080:746.704 Data: 01 -T98A8 080:746.824 - 0.615ms returns 1 (0x1) -T98A8 080:746.896 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:746.960 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 080:747.344 Data: 01 -T98A8 080:747.464 - 0.563ms returns 1 (0x1) -T98A8 080:747.536 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:747.608 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 080:748.064 Data: 00 00 00 00 -T98A8 080:748.184 - 0.644ms returns 4 (0x4) -T98A8 080:748.304 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:748.368 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 080:748.872 Data: 00 -T98A8 080:749.152 - 0.848ms returns 1 (0x1) -T98A8 080:749.632 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 080:749.712 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 080:750.056 Data: 00 -T98A8 080:750.184 - 0.548ms returns 1 (0x1) -T98A8 080:750.344 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:750.416 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 080:750.832 Data: 10 CF 01 20 -T98A8 080:750.960 - 0.622ms returns 4 (0x4) -T98A8 080:751.056 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 080:751.128 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 080:751.488 Data: 49 CF 01 20 -T98A8 080:751.600 - 0.542ms returns 4 (0x4) -T358C 080:751.816 JLINK_IsHalted() -T358C 080:752.272 - 0.459ms returns FALSE -T358C 080:852.560 JLINK_HasError() -T358C 080:852.720 JLINK_IsHalted() -T358C 080:853.192 - 0.466ms returns FALSE -T358C 080:954.136 JLINK_HasError() -T358C 080:954.264 JLINK_IsHalted() -T358C 080:954.656 - 0.393ms returns FALSE -T358C 081:055.192 JLINK_HasError() -T358C 081:055.352 JLINK_IsHalted() -T358C 081:055.776 - 0.419ms returns FALSE -T358C 081:156.832 JLINK_HasError() -T358C 081:157.040 JLINK_IsHalted() -T358C 081:157.416 - 0.376ms returns FALSE -T358C 081:258.256 JLINK_HasError() -T358C 081:258.448 JLINK_HasError() -T358C 081:258.544 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 081:258.640 Data: F7 AE 0E 05 -T358C 081:258.744 Debug reg: DWT_CYCCNT -T358C 081:258.848 - 0.304ms returns 1 (0x1) -T98A8 081:259.280 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 081:259.408 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 081:259.992 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 081:260.184 - 0.905ms returns 25 (0x19) -T98A8 081:260.288 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:260.360 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 081:261.328 Data: 02 -T98A8 081:261.488 - 1.199ms returns 1 (0x1) -T98A8 081:261.624 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:261.712 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 081:262.336 Data: 00 00 00 00 -T98A8 081:262.504 - 0.873ms returns 4 (0x4) -T98A8 081:262.592 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:262.672 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 081:263.216 Data: 00 00 00 00 -T98A8 081:263.360 - 0.773ms returns 4 (0x4) -T98A8 081:263.464 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:263.536 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 081:264.096 Data: 80 56 43 BC -T98A8 081:264.256 - 0.799ms returns 4 (0x4) -T98A8 081:264.352 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:264.432 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 081:265.168 Data: 00 00 00 00 -T98A8 081:265.328 - 0.985ms returns 4 (0x4) -T98A8 081:265.424 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:265.496 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 081:265.920 Data: 01 -T98A8 081:266.080 - 0.659ms returns 1 (0x1) -T98A8 081:266.168 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:266.248 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 081:266.656 Data: 01 -T98A8 081:266.816 - 0.646ms returns 1 (0x1) -T98A8 081:266.896 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:266.960 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 081:267.408 Data: 02 -T98A8 081:267.520 - 0.628ms returns 1 (0x1) -T98A8 081:267.592 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:267.656 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 081:268.080 Data: 01 -T98A8 081:268.240 - 0.655ms returns 1 (0x1) -T98A8 081:268.336 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:268.424 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 081:268.784 Data: 01 -T98A8 081:268.880 - 0.542ms returns 1 (0x1) -T98A8 081:268.952 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:269.016 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 081:269.368 Data: 02 -T98A8 081:269.488 - 0.535ms returns 1 (0x1) -T98A8 081:269.560 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:269.640 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 081:270.064 Data: 01 -T98A8 081:270.176 - 0.611ms returns 1 (0x1) -T98A8 081:270.256 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:270.320 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 081:270.664 Data: 01 -T98A8 081:270.800 - 0.550ms returns 1 (0x1) -T98A8 081:270.896 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 081:270.976 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 081:271.392 Data: 00 00 -T98A8 081:271.544 - 0.654ms returns 2 (0x2) -T98A8 081:271.648 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 081:271.728 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 081:272.176 Data: 00 00 -T98A8 081:272.280 - 0.636ms returns 2 (0x2) -T98A8 081:272.576 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:272.648 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 081:273.048 Data: 40 C4 01 20 -T98A8 081:273.184 - 0.606ms returns 4 (0x4) -T98A8 081:273.288 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:273.360 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 081:273.728 Data: 01 00 00 00 -T98A8 081:273.832 - 0.541ms returns 4 (0x4) -T98A8 081:273.928 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:274.000 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 081:274.688 Data: 00 00 00 00 -T98A8 081:274.800 - 0.866ms returns 4 (0x4) -T98A8 081:274.944 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:275.024 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 081:275.368 Data: 00 00 00 00 -T98A8 081:275.472 - 0.519ms returns 4 (0x4) -T98A8 081:275.552 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:275.616 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 081:276.072 Data: 80 56 43 BC -T98A8 081:276.232 - 0.676ms returns 4 (0x4) -T98A8 081:276.328 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:276.400 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 081:276.752 Data: 00 00 00 00 -T98A8 081:276.864 - 0.542ms returns 4 (0x4) -T98A8 081:276.960 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:277.040 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 081:277.432 Data: 01 -T98A8 081:277.528 - 0.567ms returns 1 (0x1) -T98A8 081:277.600 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:277.712 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 081:278.272 Data: 01 -T98A8 081:278.456 - 0.862ms returns 1 (0x1) -T98A8 081:278.576 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:278.656 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 081:279.056 Data: 03 -T98A8 081:279.176 - 0.599ms returns 1 (0x1) -T98A8 081:279.248 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:279.312 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 081:279.704 Data: 01 -T98A8 081:279.864 - 0.612ms returns 1 (0x1) -T98A8 081:279.952 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:280.032 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 081:280.400 Data: 01 -T98A8 081:280.520 - 0.571ms returns 1 (0x1) -T98A8 081:280.592 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:280.656 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 081:281.600 Data: 03 -T98A8 081:281.768 - 1.173ms returns 1 (0x1) -T98A8 081:281.864 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:281.944 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 081:282.320 Data: 01 -T98A8 081:282.424 - 0.563ms returns 1 (0x1) -T98A8 081:282.496 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:282.568 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 081:282.912 Data: 01 -T98A8 081:283.032 - 0.535ms returns 1 (0x1) -T98A8 081:283.120 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:283.216 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 081:283.608 Data: 00 00 00 00 -T98A8 081:283.728 - 0.609ms returns 4 (0x4) -T98A8 081:283.976 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:284.048 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 081:284.424 Data: 00 -T98A8 081:284.520 - 0.548ms returns 1 (0x1) -T98A8 081:284.992 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:285.088 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 081:285.488 Data: 00 -T98A8 081:285.608 - 0.612ms returns 1 (0x1) -T98A8 081:285.768 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:285.848 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 081:286.240 Data: 10 CF 01 20 -T98A8 081:286.352 - 0.585ms returns 4 (0x4) -T98A8 081:286.448 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:286.520 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 081:286.888 Data: 49 CF 01 20 -T98A8 081:286.992 - 0.548ms returns 4 (0x4) -T358C 081:287.232 JLINK_IsHalted() -T358C 081:287.600 - 0.359ms returns FALSE -T358C 081:388.184 JLINK_HasError() -T358C 081:388.336 JLINK_IsHalted() -T358C 081:388.736 - 0.399ms returns FALSE -T358C 081:489.216 JLINK_HasError() -T358C 081:489.368 JLINK_IsHalted() -T358C 081:489.840 - 0.472ms returns FALSE -T358C 081:590.776 JLINK_HasError() -T358C 081:591.056 JLINK_IsHalted() -T358C 081:591.904 - 0.840ms returns FALSE -T358C 081:693.384 JLINK_HasError() -T358C 081:693.632 JLINK_IsHalted() -T358C 081:694.088 - 0.451ms returns FALSE -T358C 081:794.672 JLINK_HasError() -T358C 081:794.864 JLINK_HasError() -T358C 081:794.920 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 081:794.992 Data: F7 AE 0E 05 -T358C 081:795.088 Debug reg: DWT_CYCCNT -T358C 081:795.184 - 0.259ms returns 1 (0x1) -T98A8 081:795.384 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 081:795.536 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 081:796.136 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 081:796.592 - 1.207ms returns 25 (0x19) -T98A8 081:796.784 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:796.904 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 081:797.872 Data: 02 -T98A8 081:798.048 - 1.262ms returns 1 (0x1) -T98A8 081:798.192 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:798.304 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 081:798.832 Data: 00 00 00 00 -T98A8 081:799.048 - 0.857ms returns 4 (0x4) -T98A8 081:799.168 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:799.296 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 081:799.856 Data: 00 00 00 00 -T98A8 081:800.008 - 0.833ms returns 4 (0x4) -T98A8 081:800.080 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:800.144 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 081:800.624 Data: 80 56 43 BC -T98A8 081:800.760 - 0.683ms returns 4 (0x4) -T98A8 081:800.920 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:801.024 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 081:801.520 Data: 00 00 00 00 -T98A8 081:801.648 - 0.726ms returns 4 (0x4) -T98A8 081:801.728 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:801.808 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 081:802.144 Data: 01 -T98A8 081:802.248 - 0.518ms returns 1 (0x1) -T98A8 081:802.312 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:802.376 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 081:802.728 Data: 01 -T98A8 081:802.840 - 0.528ms returns 1 (0x1) -T98A8 081:802.912 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:802.976 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 081:803.312 Data: 02 -T98A8 081:803.408 - 0.495ms returns 1 (0x1) -T98A8 081:803.472 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:803.536 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 081:803.864 Data: 01 -T98A8 081:803.960 - 0.488ms returns 1 (0x1) -T98A8 081:804.024 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:804.088 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 081:804.440 Data: 01 -T98A8 081:804.592 - 0.568ms returns 1 (0x1) -T98A8 081:804.680 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:804.752 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 081:805.136 Data: 02 -T98A8 081:805.256 - 0.574ms returns 1 (0x1) -T98A8 081:805.328 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:805.392 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 081:805.760 Data: 01 -T98A8 081:805.896 - 0.574ms returns 1 (0x1) -T98A8 081:805.976 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:806.064 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 081:806.544 Data: 01 -T98A8 081:806.672 - 0.699ms returns 1 (0x1) -T98A8 081:806.768 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 081:806.840 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 081:807.280 Data: 00 00 -T98A8 081:807.392 - 0.627ms returns 2 (0x2) -T98A8 081:807.472 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 081:807.544 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 081:807.968 Data: 00 00 -T98A8 081:808.112 - 0.642ms returns 2 (0x2) -T98A8 081:808.320 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:808.400 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 081:808.760 Data: 40 C4 01 20 -T98A8 081:808.880 - 0.562ms returns 4 (0x4) -T98A8 081:808.976 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:809.048 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 081:809.456 Data: 01 00 00 00 -T98A8 081:809.552 - 0.564ms returns 4 (0x4) -T98A8 081:809.624 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:809.696 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 081:810.096 Data: 00 00 00 00 -T98A8 081:810.192 - 0.565ms returns 4 (0x4) -T98A8 081:810.256 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:810.320 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 081:810.672 Data: 00 00 00 00 -T98A8 081:810.768 - 0.506ms returns 4 (0x4) -T98A8 081:810.928 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:810.992 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 081:811.360 Data: 80 56 43 BC -T98A8 081:811.512 - 0.591ms returns 4 (0x4) -T98A8 081:811.640 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:811.728 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 081:812.336 Data: 00 00 00 00 -T98A8 081:812.544 - 0.905ms returns 4 (0x4) -T98A8 081:812.680 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:812.784 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 081:813.232 Data: 01 -T98A8 081:813.392 - 0.719ms returns 1 (0x1) -T98A8 081:813.488 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:813.560 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 081:813.936 Data: 01 -T98A8 081:814.032 - 0.549ms returns 1 (0x1) -T98A8 081:814.104 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:814.168 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 081:814.504 Data: 03 -T98A8 081:814.632 - 0.528ms returns 1 (0x1) -T98A8 081:814.704 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:814.768 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 081:815.128 Data: 01 -T98A8 081:815.320 - 0.617ms returns 1 (0x1) -T98A8 081:815.408 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:815.488 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 081:815.872 Data: 01 -T98A8 081:816.016 - 0.606ms returns 1 (0x1) -T98A8 081:816.096 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:816.176 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 081:816.520 Data: 03 -T98A8 081:816.616 - 0.519ms returns 1 (0x1) -T98A8 081:816.680 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:816.744 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 081:817.128 Data: 01 -T98A8 081:817.272 - 0.595ms returns 1 (0x1) -T98A8 081:817.360 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:817.432 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 081:817.816 Data: 01 -T98A8 081:817.944 - 0.588ms returns 1 (0x1) -T98A8 081:818.024 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:818.088 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 081:818.576 Data: 00 00 00 00 -T98A8 081:818.736 - 0.721ms returns 4 (0x4) -T98A8 081:818.896 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:818.976 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 081:819.376 Data: 00 -T98A8 081:819.520 - 0.621ms returns 1 (0x1) -T98A8 081:819.920 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 081:820.008 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 081:820.464 Data: 00 -T98A8 081:820.600 - 0.680ms returns 1 (0x1) -T98A8 081:820.760 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:820.832 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 081:821.232 Data: 10 CF 01 20 -T98A8 081:821.328 - 0.572ms returns 4 (0x4) -T98A8 081:821.424 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 081:821.488 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 081:821.864 Data: 49 CF 01 20 -T98A8 081:821.968 - 0.536ms returns 4 (0x4) -T358C 081:822.256 JLINK_IsHalted() -T358C 081:822.632 - 0.376ms returns FALSE -T358C 081:923.864 JLINK_HasError() -T358C 081:924.096 JLINK_IsHalted() -T358C 081:924.528 - 0.433ms returns FALSE -T358C 082:025.696 JLINK_HasError() -T358C 082:025.968 JLINK_IsHalted() -T358C 082:027.096 - 1.128ms returns FALSE -T358C 082:127.760 JLINK_HasError() -T358C 082:127.928 JLINK_IsHalted() -T358C 082:128.336 - 0.409ms returns FALSE -T358C 082:228.880 JLINK_HasError() -T358C 082:229.040 JLINK_IsHalted() -T358C 082:229.496 - 0.450ms returns FALSE -T358C 082:330.544 JLINK_HasError() -T358C 082:330.680 JLINK_HasError() -T358C 082:330.752 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 082:330.848 Data: F7 AE 0E 05 -T358C 082:330.944 Debug reg: DWT_CYCCNT -T358C 082:331.048 - 0.296ms returns 1 (0x1) -T98A8 082:331.304 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 082:331.504 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 082:332.464 Data: 0F 00 04 20 00 F1 17 96 B0 7C 3A 2C 61 F9 74 58 ... -T98A8 082:332.616 - 1.309ms returns 25 (0x19) -T98A8 082:332.720 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:332.808 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 082:333.208 Data: 02 -T98A8 082:333.352 - 0.627ms returns 1 (0x1) -T98A8 082:333.480 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:333.552 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 082:334.160 Data: 00 00 00 00 -T98A8 082:334.328 - 0.849ms returns 4 (0x4) -T98A8 082:334.440 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:334.536 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 082:335.136 Data: 00 00 00 00 -T98A8 082:335.248 - 0.811ms returns 4 (0x4) -T98A8 082:335.320 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:335.384 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 082:335.864 Data: 80 56 43 BC -T98A8 082:335.992 - 0.672ms returns 4 (0x4) -T98A8 082:336.064 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:336.192 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 082:336.696 Data: 00 00 00 00 -T98A8 082:336.896 - 0.828ms returns 4 (0x4) -T98A8 082:337.016 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:337.104 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 082:337.464 Data: 01 -T98A8 082:337.568 - 0.551ms returns 1 (0x1) -T98A8 082:337.648 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:337.712 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 082:338.136 Data: 01 -T98A8 082:338.232 - 0.592ms returns 1 (0x1) -T98A8 082:338.312 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:338.416 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 082:338.784 Data: 02 -T98A8 082:338.896 - 0.581ms returns 1 (0x1) -T98A8 082:338.968 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:339.040 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 082:339.432 Data: 01 -T98A8 082:339.576 - 0.607ms returns 1 (0x1) -T98A8 082:339.648 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:339.712 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 082:340.152 Data: 01 -T98A8 082:340.272 - 0.621ms returns 1 (0x1) -T98A8 082:340.336 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:340.416 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 082:340.784 Data: 02 -T98A8 082:340.880 - 0.547ms returns 1 (0x1) -T98A8 082:340.952 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:341.016 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 082:341.360 Data: 01 -T98A8 082:341.456 - 0.506ms returns 1 (0x1) -T98A8 082:341.520 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:341.584 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 082:341.920 Data: 01 -T98A8 082:342.008 - 0.486ms returns 1 (0x1) -T98A8 082:342.080 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 082:342.136 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 082:342.512 Data: 00 00 -T98A8 082:342.608 - 0.532ms returns 2 (0x2) -T98A8 082:342.672 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 082:342.736 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 082:343.120 Data: 00 00 -T98A8 082:343.216 - 0.545ms returns 2 (0x2) -T98A8 082:343.360 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:343.440 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 082:343.784 Data: 40 C4 01 20 -T98A8 082:343.872 - 0.517ms returns 4 (0x4) -T98A8 082:343.960 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:344.176 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 082:344.512 Data: 01 00 00 00 -T98A8 082:344.608 - 0.644ms returns 4 (0x4) -T98A8 082:344.744 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:344.816 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 082:345.160 Data: 00 00 00 00 -T98A8 082:345.264 - 0.516ms returns 4 (0x4) -T98A8 082:345.328 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:345.392 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 082:345.744 Data: 00 00 00 00 -T98A8 082:345.928 - 0.597ms returns 4 (0x4) -T98A8 082:346.032 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:346.136 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 082:346.512 Data: 80 56 43 BC -T98A8 082:346.624 - 0.588ms returns 4 (0x4) -T98A8 082:346.704 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:346.784 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 082:347.144 Data: 00 00 00 00 -T98A8 082:347.256 - 0.552ms returns 4 (0x4) -T98A8 082:347.344 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:347.408 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 082:347.760 Data: 01 -T98A8 082:347.856 - 0.510ms returns 1 (0x1) -T98A8 082:347.920 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:347.992 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 082:348.376 Data: 01 -T98A8 082:348.512 - 0.585ms returns 1 (0x1) -T98A8 082:348.592 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:348.664 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 082:349.032 Data: 03 -T98A8 082:349.168 - 0.572ms returns 1 (0x1) -T98A8 082:349.264 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:349.336 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 082:349.704 Data: 01 -T98A8 082:349.888 - 0.627ms returns 1 (0x1) -T98A8 082:350.000 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:350.128 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 082:350.696 Data: 01 -T98A8 082:350.880 - 0.884ms returns 1 (0x1) -T98A8 082:350.960 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:351.056 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 082:351.464 Data: 03 -T98A8 082:351.592 - 0.628ms returns 1 (0x1) -T98A8 082:351.672 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:351.760 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 082:352.192 Data: 01 -T98A8 082:352.328 - 0.648ms returns 1 (0x1) -T98A8 082:352.400 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:352.480 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 082:352.816 Data: 01 -T98A8 082:352.944 - 0.544ms returns 1 (0x1) -T98A8 082:353.008 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:353.072 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 082:353.440 Data: 00 00 00 00 -T98A8 082:353.536 - 0.528ms returns 4 (0x4) -T98A8 082:353.648 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:353.712 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 082:354.128 Data: 00 -T98A8 082:354.224 - 0.564ms returns 1 (0x1) -T98A8 082:354.544 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:354.616 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 082:355.000 Data: 00 -T98A8 082:355.120 - 0.568ms returns 1 (0x1) -T98A8 082:355.296 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:355.384 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 082:355.768 Data: 10 CF 01 20 -T98A8 082:355.888 - 0.597ms returns 4 (0x4) -T98A8 082:355.992 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:356.064 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 082:356.488 Data: 49 CF 01 20 -T98A8 082:356.624 - 0.634ms returns 4 (0x4) -T358C 082:356.808 JLINK_IsHalted() -T358C 082:357.176 - 0.367ms returns FALSE -T358C 082:458.544 JLINK_HasError() -T358C 082:458.728 JLINK_IsHalted() -T358C 082:459.136 - 0.408ms returns FALSE -T358C 082:559.400 JLINK_HasError() -T358C 082:559.544 JLINK_IsHalted() -T358C 082:559.960 - 0.415ms returns FALSE -T358C 082:660.472 JLINK_HasError() -T358C 082:660.656 JLINK_IsHalted() -T358C 082:661.160 - 0.502ms returns FALSE -T358C 082:762.424 JLINK_HasError() -T358C 082:762.560 JLINK_IsHalted() -T358C 082:762.984 - 0.419ms returns FALSE -T358C 082:863.176 JLINK_HasError() -T358C 082:863.320 JLINK_HasError() -T358C 082:863.384 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 082:863.472 Data: F7 AE 0E 05 -T358C 082:863.568 Debug reg: DWT_CYCCNT -T358C 082:863.664 - 0.272ms returns 1 (0x1) -T98A8 082:864.016 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 082:864.240 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 082:865.040 Data: 0F 00 04 20 00 F1 17 96 B0 7C FA D3 61 F9 74 58 ... -T98A8 082:865.272 - 1.259ms returns 25 (0x19) -T98A8 082:865.376 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:865.456 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 082:865.936 Data: 02 -T98A8 082:866.080 - 0.705ms returns 1 (0x1) -T98A8 082:866.224 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:866.296 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 082:866.840 Data: 00 00 00 00 -T98A8 082:866.976 - 0.753ms returns 4 (0x4) -T98A8 082:867.056 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:867.120 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 082:867.728 Data: 00 00 00 00 -T98A8 082:867.976 - 0.922ms returns 4 (0x4) -T98A8 082:868.152 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:868.336 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 082:869.552 Data: 80 56 43 BC -T98A8 082:869.680 - 1.531ms returns 4 (0x4) -T98A8 082:869.760 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:869.840 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 082:870.320 Data: 00 00 00 00 -T98A8 082:870.464 - 0.702ms returns 4 (0x4) -T98A8 082:870.560 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:870.640 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 082:871.000 Data: 01 -T98A8 082:871.120 - 0.557ms returns 1 (0x1) -T98A8 082:871.200 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:871.280 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 082:871.648 Data: 01 -T98A8 082:871.784 - 0.584ms returns 1 (0x1) -T98A8 082:871.856 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:871.928 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 082:872.320 Data: 02 -T98A8 082:872.432 - 0.572ms returns 1 (0x1) -T98A8 082:872.512 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:872.576 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 082:872.976 Data: 01 -T98A8 082:873.104 - 0.584ms returns 1 (0x1) -T98A8 082:873.168 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:873.232 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 082:873.584 Data: 02 -T98A8 082:873.680 - 0.506ms returns 1 (0x1) -T98A8 082:875.144 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:875.280 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 082:875.648 Data: 02 -T98A8 082:875.752 - 0.606ms returns 1 (0x1) -T98A8 082:875.824 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:875.888 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 082:876.240 Data: 01 -T98A8 082:876.392 - 0.566ms returns 1 (0x1) -T98A8 082:876.472 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:876.560 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 082:876.936 Data: 01 -T98A8 082:877.040 - 0.567ms returns 1 (0x1) -T98A8 082:877.112 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 082:877.168 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 082:877.576 Data: 00 00 -T98A8 082:877.672 - 0.559ms returns 2 (0x2) -T98A8 082:877.736 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 082:877.800 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 082:878.168 Data: 00 00 -T98A8 082:878.264 - 0.534ms returns 2 (0x2) -T98A8 082:878.448 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:878.520 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 082:879.040 Data: 40 C4 01 20 -T98A8 082:879.144 - 0.687ms returns 4 (0x4) -T98A8 082:879.232 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:879.296 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 082:879.680 Data: 01 00 00 00 -T98A8 082:879.848 - 0.615ms returns 4 (0x4) -T98A8 082:879.952 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:880.032 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 082:880.432 Data: 00 00 00 00 -T98A8 082:880.592 - 0.639ms returns 4 (0x4) -T98A8 082:880.760 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:880.872 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 082:881.328 Data: 00 00 00 00 -T98A8 082:881.472 - 0.711ms returns 4 (0x4) -T98A8 082:881.568 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:881.672 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 082:882.160 Data: 80 56 43 BC -T98A8 082:882.256 - 0.692ms returns 4 (0x4) -T98A8 082:882.336 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:882.400 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 082:882.744 Data: 00 00 00 00 -T98A8 082:882.840 - 0.506ms returns 4 (0x4) -T98A8 082:882.920 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:882.984 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 082:883.336 Data: 01 -T98A8 082:883.488 - 0.568ms returns 1 (0x1) -T98A8 082:883.568 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:883.656 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 082:884.016 Data: 01 -T98A8 082:884.128 - 0.551ms returns 1 (0x1) -T98A8 082:884.192 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:884.256 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 082:884.624 Data: 03 -T98A8 082:884.720 - 0.525ms returns 1 (0x1) -T98A8 082:884.784 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:884.848 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 082:885.232 Data: 01 -T98A8 082:885.344 - 0.554ms returns 1 (0x1) -T98A8 082:885.416 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:885.480 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 082:885.856 Data: 03 -T98A8 082:885.952 - 0.537ms returns 1 (0x1) -T98A8 082:886.448 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:886.536 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 082:886.944 Data: 03 -T98A8 082:887.088 - 0.637ms returns 1 (0x1) -T98A8 082:887.152 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:887.216 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 082:887.568 Data: 01 -T98A8 082:887.688 - 0.537ms returns 1 (0x1) -T98A8 082:887.760 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:887.824 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 082:888.176 Data: 01 -T98A8 082:888.272 - 0.514ms returns 1 (0x1) -T98A8 082:888.336 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:888.400 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 082:888.864 Data: 00 00 00 00 -T98A8 082:889.024 - 0.685ms returns 4 (0x4) -T98A8 082:889.128 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:889.200 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 082:889.936 Data: 00 -T98A8 082:890.144 - 1.016ms returns 1 (0x1) -T98A8 082:890.512 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 082:890.608 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 082:890.992 Data: 00 -T98A8 082:891.136 - 0.621ms returns 1 (0x1) -T98A8 082:891.320 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:891.400 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 082:891.744 Data: 10 CF 01 20 -T98A8 082:891.848 - 0.522ms returns 4 (0x4) -T98A8 082:891.944 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 082:892.016 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 082:892.752 Data: 49 CF 01 20 -T98A8 082:892.912 - 0.962ms returns 4 (0x4) -T358C 082:893.120 JLINK_IsHalted() -T358C 082:893.520 - 0.394ms returns FALSE -T358C 082:993.816 JLINK_HasError() -T358C 082:993.960 JLINK_IsHalted() -T358C 082:994.376 - 0.412ms returns FALSE -T358C 083:095.592 JLINK_HasError() -T358C 083:095.816 JLINK_IsHalted() -T358C 083:096.240 - 0.424ms returns FALSE -T358C 083:197.296 JLINK_HasError() -T358C 083:197.712 JLINK_IsHalted() -T358C 083:198.416 - 0.698ms returns FALSE -T358C 083:298.920 JLINK_HasError() -T358C 083:299.168 JLINK_IsHalted() -T358C 083:299.696 - 0.521ms returns FALSE -T358C 083:400.392 JLINK_HasError() -T358C 083:400.624 JLINK_HasError() -T358C 083:400.680 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 083:400.760 Data: F7 AE 0E 05 -T358C 083:400.840 Debug reg: DWT_CYCCNT -T358C 083:400.920 - 0.245ms returns 1 (0x1) -T98A8 083:401.320 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 083:401.584 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 083:402.264 Data: 0F 00 04 20 00 F1 17 96 B0 7C FA D3 61 F9 74 58 ... -T98A8 083:402.432 - 1.113ms returns 25 (0x19) -T98A8 083:402.536 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:402.616 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 083:403.056 Data: 02 -T98A8 083:403.320 - 0.784ms returns 1 (0x1) -T98A8 083:403.536 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:403.672 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 083:404.296 Data: 00 00 00 00 -T98A8 083:404.424 - 0.886ms returns 4 (0x4) -T98A8 083:404.512 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:404.576 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 083:405.224 Data: 00 00 00 00 -T98A8 083:405.368 - 0.859ms returns 4 (0x4) -T98A8 083:405.472 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:405.576 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 083:406.104 Data: 80 56 43 BC -T98A8 083:406.280 - 0.807ms returns 4 (0x4) -T98A8 083:406.400 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:406.488 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 083:407.056 Data: 00 00 00 00 -T98A8 083:407.184 - 0.791ms returns 4 (0x4) -T98A8 083:407.256 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:407.336 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 083:407.760 Data: 01 -T98A8 083:407.944 - 0.680ms returns 1 (0x1) -T98A8 083:408.048 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:408.112 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 083:408.488 Data: 01 -T98A8 083:408.584 - 0.535ms returns 1 (0x1) -T98A8 083:408.656 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:408.720 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 083:409.088 Data: 02 -T98A8 083:409.184 - 0.534ms returns 1 (0x1) -T98A8 083:409.256 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:409.312 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 083:409.680 Data: 01 -T98A8 083:409.832 - 0.576ms returns 1 (0x1) -T98A8 083:409.904 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:409.976 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 083:410.344 Data: 03 -T98A8 083:410.448 - 0.534ms returns 1 (0x1) -T98A8 083:412.984 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:413.192 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 083:413.600 Data: 02 -T98A8 083:413.720 - 0.736ms returns 1 (0x1) -T98A8 083:413.792 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:413.864 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 083:414.208 Data: 01 -T98A8 083:414.312 - 0.513ms returns 1 (0x1) -T98A8 083:414.376 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:414.440 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 083:414.768 Data: 01 -T98A8 083:414.864 - 0.489ms returns 1 (0x1) -T98A8 083:414.928 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 083:415.024 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 083:416.240 Data: 00 00 -T98A8 083:416.368 - 1.436ms returns 2 (0x2) -T98A8 083:416.440 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 083:416.520 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 083:416.936 Data: 00 00 -T98A8 083:417.040 - 0.591ms returns 2 (0x2) -T98A8 083:417.232 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:417.432 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 083:417.784 Data: 40 C4 01 20 -T98A8 083:417.880 - 0.654ms returns 4 (0x4) -T98A8 083:417.976 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:418.040 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 083:418.384 Data: 01 00 00 00 -T98A8 083:418.480 - 0.501ms returns 4 (0x4) -T98A8 083:418.552 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:418.616 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 083:418.968 Data: 00 00 00 00 -T98A8 083:419.080 - 0.526ms returns 4 (0x4) -T98A8 083:419.152 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:419.216 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 083:419.568 Data: 00 00 00 00 -T98A8 083:419.664 - 0.506ms returns 4 (0x4) -T98A8 083:419.736 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:419.800 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 083:420.208 Data: 80 56 43 BC -T98A8 083:420.384 - 0.641ms returns 4 (0x4) -T98A8 083:420.480 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:420.560 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 083:420.912 Data: 00 00 00 00 -T98A8 083:421.056 - 0.580ms returns 4 (0x4) -T98A8 083:421.160 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:421.232 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 083:421.624 Data: 01 -T98A8 083:421.744 - 0.581ms returns 1 (0x1) -T98A8 083:421.816 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:421.896 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 083:422.256 Data: 01 -T98A8 083:422.352 - 0.530ms returns 1 (0x1) -T98A8 083:422.416 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:422.480 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 083:422.824 Data: 03 -T98A8 083:422.920 - 0.505ms returns 1 (0x1) -T98A8 083:422.984 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:423.064 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 083:423.432 Data: 01 -T98A8 083:423.640 - 0.655ms returns 1 (0x1) -T98A8 083:423.760 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:423.872 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 083:424.360 Data: 02 -T98A8 083:424.528 - 0.763ms returns 1 (0x1) -T98A8 083:425.200 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:425.296 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 083:425.816 Data: 03 -T98A8 083:426.000 - 0.808ms returns 1 (0x1) -T98A8 083:426.104 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:426.200 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 083:426.616 Data: 01 -T98A8 083:426.768 - 0.658ms returns 1 (0x1) -T98A8 083:426.880 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:426.992 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 083:427.728 Data: 01 -T98A8 083:427.856 - 0.980ms returns 1 (0x1) -T98A8 083:427.952 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:428.024 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 083:428.424 Data: 00 00 00 00 -T98A8 083:428.624 - 0.681ms returns 4 (0x4) -T98A8 083:428.848 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:428.968 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 083:429.416 Data: 00 -T98A8 083:429.560 - 0.715ms returns 1 (0x1) -T98A8 083:429.992 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:430.136 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 083:430.584 Data: 00 -T98A8 083:430.752 - 0.761ms returns 1 (0x1) -T98A8 083:430.952 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:431.064 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 083:431.624 Data: 10 CF 01 20 -T98A8 083:431.888 - 0.934ms returns 4 (0x4) -T98A8 083:432.016 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:432.112 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 083:432.528 Data: 49 CF 01 20 -T98A8 083:432.664 - 0.649ms returns 4 (0x4) -T358C 083:432.896 JLINK_IsHalted() -T358C 083:433.328 - 0.434ms returns FALSE -T358C 083:534.840 JLINK_HasError() -T358C 083:535.008 JLINK_IsHalted() -T358C 083:535.432 - 0.418ms returns FALSE -T358C 083:635.688 JLINK_HasError() -T358C 083:635.960 JLINK_IsHalted() -T358C 083:636.464 - 0.496ms returns FALSE -T358C 083:737.536 JLINK_HasError() -T358C 083:737.696 JLINK_IsHalted() -T358C 083:738.144 - 0.448ms returns FALSE -T358C 083:838.344 JLINK_HasError() -T358C 083:838.480 JLINK_IsHalted() -T358C 083:839.424 - 0.937ms returns FALSE -T358C 083:940.296 JLINK_HasError() -T358C 083:940.584 JLINK_HasError() -T358C 083:940.656 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 083:940.784 Data: F7 AE 0E 05 -T358C 083:940.880 Debug reg: DWT_CYCCNT -T358C 083:940.992 - 0.331ms returns 1 (0x1) -T98A8 083:941.424 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 083:941.584 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 083:942.264 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 61 F9 74 58 ... -T98A8 083:942.384 - 0.965ms returns 25 (0x19) -T98A8 083:942.480 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:942.552 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 083:942.912 Data: 02 -T98A8 083:943.016 - 0.531ms returns 1 (0x1) -T98A8 083:943.192 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:943.264 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 083:944.408 Data: 00 00 00 00 -T98A8 083:944.560 - 1.362ms returns 4 (0x4) -T98A8 083:944.640 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:944.720 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 083:945.240 Data: 00 00 00 00 -T98A8 083:945.416 - 0.771ms returns 4 (0x4) -T98A8 083:945.504 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:945.584 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 083:946.096 Data: 80 56 43 BC -T98A8 083:946.384 - 0.886ms returns 4 (0x4) -T98A8 083:946.672 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:946.920 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 083:947.752 Data: 00 00 00 00 -T98A8 083:947.912 - 1.238ms returns 4 (0x4) -T98A8 083:948.000 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:948.080 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 083:948.808 Data: 01 -T98A8 083:949.024 - 1.023ms returns 1 (0x1) -T98A8 083:949.136 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:949.256 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 083:950.152 Data: 01 -T98A8 083:950.368 - 1.230ms returns 1 (0x1) -T98A8 083:950.480 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:950.592 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 083:951.088 Data: 02 -T98A8 083:951.264 - 0.789ms returns 1 (0x1) -T98A8 083:951.392 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:951.512 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 083:952.000 Data: 01 -T98A8 083:952.144 - 0.749ms returns 1 (0x1) -T98A8 083:952.208 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:952.280 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 083:952.680 Data: 03 -T98A8 083:952.800 - 0.587ms returns 1 (0x1) -T98A8 083:954.576 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:954.712 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 083:955.144 Data: 02 -T98A8 083:955.280 - 0.709ms returns 1 (0x1) -T98A8 083:955.360 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:955.440 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 083:955.920 Data: 01 -T98A8 083:956.080 - 0.720ms returns 1 (0x1) -T98A8 083:956.192 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:956.288 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 083:956.880 Data: 01 -T98A8 083:957.144 - 0.954ms returns 1 (0x1) -T98A8 083:957.280 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 083:957.384 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 083:958.000 Data: 00 00 -T98A8 083:958.816 - 1.536ms returns 2 (0x2) -T98A8 083:959.312 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 083:959.488 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 083:960.008 Data: 00 00 -T98A8 083:960.304 - 0.998ms returns 2 (0x2) -T98A8 083:960.592 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:960.696 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 083:961.128 Data: 40 C4 01 20 -T98A8 083:961.256 - 0.664ms returns 4 (0x4) -T98A8 083:961.376 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:961.456 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 083:961.888 Data: 01 00 00 00 -T98A8 083:962.552 - 1.175ms returns 4 (0x4) -T98A8 083:962.864 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:963.032 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 083:963.568 Data: 00 00 00 00 -T98A8 083:963.760 - 0.892ms returns 4 (0x4) -T98A8 083:963.888 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:963.984 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 083:964.432 Data: 00 00 00 00 -T98A8 083:964.592 - 0.706ms returns 4 (0x4) -T98A8 083:964.752 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:964.840 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 083:965.248 Data: 80 56 43 BC -T98A8 083:965.368 - 0.620ms returns 4 (0x4) -T98A8 083:965.456 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:965.536 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 083:965.920 Data: 00 00 00 00 -T98A8 083:966.056 - 0.597ms returns 4 (0x4) -T98A8 083:966.152 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:966.224 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 083:966.584 Data: 01 -T98A8 083:966.704 - 0.547ms returns 1 (0x1) -T98A8 083:966.768 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:966.840 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 083:967.280 Data: 01 -T98A8 083:967.416 - 0.647ms returns 1 (0x1) -T98A8 083:967.504 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:967.584 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 083:967.936 Data: 03 -T98A8 083:968.048 - 0.551ms returns 1 (0x1) -T98A8 083:968.136 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:968.208 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 083:968.616 Data: 01 -T98A8 083:968.736 - 0.603ms returns 1 (0x1) -T98A8 083:968.816 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:968.880 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 083:969.232 Data: 02 -T98A8 083:969.328 - 0.514ms returns 1 (0x1) -T98A8 083:970.096 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:970.200 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 083:970.576 Data: 03 -T98A8 083:970.704 - 0.604ms returns 1 (0x1) -T98A8 083:970.792 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:970.864 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 083:971.280 Data: 01 -T98A8 083:971.392 - 0.601ms returns 1 (0x1) -T98A8 083:971.464 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:971.536 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 083:971.904 Data: 01 -T98A8 083:972.000 - 0.537ms returns 1 (0x1) -T98A8 083:972.072 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:972.144 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 083:972.800 Data: 00 00 00 00 -T98A8 083:972.944 - 0.874ms returns 4 (0x4) -T98A8 083:973.096 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:973.168 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 083:973.544 Data: 00 -T98A8 083:973.680 - 0.583ms returns 1 (0x1) -T98A8 083:974.088 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 083:974.168 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 083:974.536 Data: 00 -T98A8 083:974.672 - 0.577ms returns 1 (0x1) -T98A8 083:974.840 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:974.920 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 083:975.824 Data: 10 CF 01 20 -T98A8 083:975.984 - 1.139ms returns 4 (0x4) -T98A8 083:976.112 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 083:976.184 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 083:976.552 Data: 49 CF 01 20 -T98A8 083:976.704 - 0.596ms returns 4 (0x4) -T358C 083:977.072 JLINK_IsHalted() -T358C 083:977.944 - 0.873ms returns FALSE -T358C 084:079.224 JLINK_HasError() -T358C 084:079.496 JLINK_IsHalted() -T358C 084:080.008 - 0.508ms returns FALSE -T358C 084:181.488 JLINK_HasError() -T358C 084:181.648 JLINK_IsHalted() -T358C 084:182.704 - 1.062ms returns FALSE -T358C 084:283.800 JLINK_HasError() -T358C 084:283.952 JLINK_IsHalted() -T358C 084:284.424 - 0.473ms returns FALSE -T358C 084:384.960 JLINK_HasError() -T358C 084:385.120 JLINK_IsHalted() -T358C 084:385.592 - 0.473ms returns FALSE -T358C 084:486.264 JLINK_HasError() -T358C 084:486.440 JLINK_HasError() -T358C 084:486.512 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 084:486.600 Data: F7 AE 0E 05 -T358C 084:486.696 Debug reg: DWT_CYCCNT -T358C 084:486.792 - 0.281ms returns 1 (0x1) -T98A8 084:487.320 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 084:487.560 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 084:488.376 Data: 0F 00 04 20 00 F1 17 96 B0 7C FA D3 61 F9 74 58 ... -T98A8 084:488.656 - 1.339ms returns 25 (0x19) -T98A8 084:488.848 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:488.976 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 084:489.424 Data: 02 -T98A8 084:489.560 - 0.715ms returns 1 (0x1) -T98A8 084:489.680 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:489.752 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 084:490.704 Data: 00 00 00 00 -T98A8 084:490.896 - 1.216ms returns 4 (0x4) -T98A8 084:490.984 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:491.064 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 084:491.648 Data: 00 00 00 00 -T98A8 084:491.784 - 0.798ms returns 4 (0x4) -T98A8 084:491.944 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:492.056 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 084:492.976 Data: 80 56 43 BC -T98A8 084:493.112 - 1.168ms returns 4 (0x4) -T98A8 084:493.192 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:493.256 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 084:493.720 Data: 00 00 00 00 -T98A8 084:493.848 - 0.663ms returns 4 (0x4) -T98A8 084:493.920 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:493.992 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 084:494.320 Data: 01 -T98A8 084:494.456 - 0.534ms returns 1 (0x1) -T98A8 084:494.544 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:494.616 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 084:495.072 Data: 01 -T98A8 084:495.168 - 0.628ms returns 1 (0x1) -T98A8 084:495.240 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:495.304 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 084:495.728 Data: 02 -T98A8 084:495.824 - 0.586ms returns 1 (0x1) -T98A8 084:495.896 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:495.952 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 084:496.296 Data: 01 -T98A8 084:496.416 - 0.521ms returns 1 (0x1) -T98A8 084:496.496 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:496.568 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 084:496.936 Data: 02 -T98A8 084:497.080 - 0.586ms returns 1 (0x1) -T98A8 084:499.056 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:499.184 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 084:499.616 Data: 02 -T98A8 084:499.760 - 0.706ms returns 1 (0x1) -T98A8 084:499.824 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:499.904 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 084:500.272 Data: 01 -T98A8 084:500.408 - 0.580ms returns 1 (0x1) -T98A8 084:500.480 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:500.552 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 084:500.936 Data: 01 -T98A8 084:501.088 - 0.606ms returns 1 (0x1) -T98A8 084:501.168 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 084:501.256 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 084:501.680 Data: 00 00 -T98A8 084:501.824 - 0.651ms returns 2 (0x2) -T98A8 084:501.904 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 084:502.128 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 084:503.128 Data: 00 00 -T98A8 084:503.304 - 1.397ms returns 2 (0x2) -T98A8 084:503.512 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:503.584 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 084:503.944 Data: 40 C4 01 20 -T98A8 084:504.080 - 0.572ms returns 4 (0x4) -T98A8 084:504.208 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:504.288 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 084:504.664 Data: 01 00 00 00 -T98A8 084:504.792 - 0.587ms returns 4 (0x4) -T98A8 084:504.880 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:504.952 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 084:505.328 Data: 00 00 00 00 -T98A8 084:505.432 - 0.548ms returns 4 (0x4) -T98A8 084:505.504 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:505.576 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 084:505.920 Data: 00 00 00 00 -T98A8 084:506.024 - 0.517ms returns 4 (0x4) -T98A8 084:506.104 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:506.176 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 084:506.528 Data: 80 56 43 BC -T98A8 084:506.640 - 0.537ms returns 4 (0x4) -T98A8 084:506.720 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:506.784 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 084:507.168 Data: 00 00 00 00 -T98A8 084:507.264 - 0.545ms returns 4 (0x4) -T98A8 084:507.344 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:507.408 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 084:507.776 Data: 01 -T98A8 084:507.912 - 0.565ms returns 1 (0x1) -T98A8 084:508.000 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:508.096 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 084:509.056 Data: 01 -T98A8 084:509.184 - 1.187ms returns 1 (0x1) -T98A8 084:509.264 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:509.344 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 084:509.712 Data: 03 -T98A8 084:509.816 - 0.549ms returns 1 (0x1) -T98A8 084:509.904 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:509.984 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 084:510.328 Data: 01 -T98A8 084:510.448 - 0.532ms returns 1 (0x1) -T98A8 084:510.520 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:510.600 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 084:510.960 Data: 03 -T98A8 084:511.056 - 0.541ms returns 1 (0x1) -T98A8 084:511.792 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:511.896 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 084:512.304 Data: 03 -T98A8 084:512.432 - 0.637ms returns 1 (0x1) -T98A8 084:512.504 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:512.568 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 084:512.960 Data: 01 -T98A8 084:513.088 - 0.586ms returns 1 (0x1) -T98A8 084:513.160 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:513.232 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 084:513.696 Data: 01 -T98A8 084:513.984 - 0.821ms returns 1 (0x1) -T98A8 084:514.248 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:514.368 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 084:515.024 Data: 00 00 00 00 -T98A8 084:515.264 - 1.020ms returns 4 (0x4) -T98A8 084:515.464 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:515.552 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 084:515.936 Data: 00 -T98A8 084:516.064 - 0.602ms returns 1 (0x1) -T98A8 084:516.720 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 084:516.816 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 084:517.264 Data: 00 -T98A8 084:517.360 - 0.640ms returns 1 (0x1) -T98A8 084:517.504 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:517.568 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 084:517.928 Data: 10 CF 01 20 -T98A8 084:518.032 - 0.529ms returns 4 (0x4) -T98A8 084:518.120 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 084:518.184 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 084:518.800 Data: 49 CF 01 20 -T98A8 084:518.968 - 0.849ms returns 4 (0x4) -T358C 084:519.184 JLINK_IsHalted() -T358C 084:519.520 - 0.340ms returns FALSE -T358C 084:620.616 JLINK_HasError() -T358C 084:620.864 JLINK_IsHalted() -T358C 084:621.312 - 0.443ms returns FALSE -T358C 084:721.752 JLINK_HasError() -T358C 084:722.016 JLINK_IsHalted() -T358C 084:722.568 - 0.548ms returns FALSE -T358C 084:823.632 JLINK_HasError() -T358C 084:823.792 JLINK_IsHalted() -T358C 084:824.160 - 0.365ms returns FALSE -T358C 084:925.168 JLINK_HasError() -T358C 084:925.392 JLINK_IsHalted() -T358C 084:925.816 - 0.422ms returns FALSE -T358C 085:026.264 JLINK_HasError() -T358C 085:026.416 JLINK_HasError() -T358C 085:026.480 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 085:026.576 Data: F7 AE 0E 05 -T358C 085:026.656 Debug reg: DWT_CYCCNT -T358C 085:026.736 - 0.260ms returns 1 (0x1) -T98A8 085:027.064 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 085:027.216 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 085:027.848 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 61 F9 74 58 ... -T98A8 085:027.952 - 0.892ms returns 25 (0x19) -T98A8 085:028.048 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:028.112 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 085:028.480 Data: 02 -T98A8 085:028.608 - 0.558ms returns 1 (0x1) -T98A8 085:028.720 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:028.792 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 085:029.328 Data: 00 00 00 00 -T98A8 085:029.488 - 0.764ms returns 4 (0x4) -T98A8 085:029.600 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:029.696 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 085:030.320 Data: 00 00 00 00 -T98A8 085:030.456 - 0.855ms returns 4 (0x4) -T98A8 085:030.544 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:030.624 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 085:031.152 Data: 80 56 43 BC -T98A8 085:031.288 - 0.744ms returns 4 (0x4) -T98A8 085:031.376 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:031.440 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 085:031.944 Data: 00 00 00 00 -T98A8 085:032.080 - 0.706ms returns 4 (0x4) -T98A8 085:032.168 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:032.240 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 085:032.680 Data: 01 -T98A8 085:032.840 - 0.670ms returns 1 (0x1) -T98A8 085:032.920 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:033.008 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 085:033.384 Data: 01 -T98A8 085:033.536 - 0.615ms returns 1 (0x1) -T98A8 085:033.624 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:033.704 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 085:034.104 Data: 02 -T98A8 085:034.256 - 0.633ms returns 1 (0x1) -T98A8 085:034.352 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:034.432 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 085:034.808 Data: 01 -T98A8 085:034.960 - 0.613ms returns 1 (0x1) -T98A8 085:035.048 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:035.112 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 085:035.464 Data: 03 -T98A8 085:035.584 - 0.539ms returns 1 (0x1) -T98A8 085:037.952 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:038.072 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 085:038.448 Data: 02 -T98A8 085:038.632 - 0.676ms returns 1 (0x1) -T98A8 085:038.752 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:038.832 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 085:039.312 Data: 01 -T98A8 085:039.432 - 0.677ms returns 1 (0x1) -T98A8 085:039.512 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:039.600 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 085:040.096 Data: 01 -T98A8 085:040.232 - 0.718ms returns 1 (0x1) -T98A8 085:040.328 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 085:040.432 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 085:040.880 Data: 00 00 -T98A8 085:041.040 - 0.713ms returns 2 (0x2) -T98A8 085:041.128 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 085:041.192 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 085:041.584 Data: 00 00 -T98A8 085:041.680 - 0.555ms returns 2 (0x2) -T98A8 085:041.888 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:041.968 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 085:042.320 Data: 40 C4 01 20 -T98A8 085:042.464 - 0.575ms returns 4 (0x4) -T98A8 085:042.576 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:042.672 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 085:043.024 Data: 01 00 00 00 -T98A8 085:043.120 - 0.546ms returns 4 (0x4) -T98A8 085:043.208 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:043.272 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 085:043.608 Data: 00 00 00 00 -T98A8 085:043.712 - 0.503ms returns 4 (0x4) -T98A8 085:043.784 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:043.856 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 085:044.320 Data: 00 00 00 00 -T98A8 085:044.432 - 0.650ms returns 4 (0x4) -T98A8 085:044.520 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:044.592 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 085:044.944 Data: 80 56 43 BC -T98A8 085:045.056 - 0.540ms returns 4 (0x4) -T98A8 085:045.136 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:045.200 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 085:045.544 Data: 00 00 00 00 -T98A8 085:045.640 - 0.506ms returns 4 (0x4) -T98A8 085:045.712 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:045.776 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 085:046.144 Data: 01 -T98A8 085:046.248 - 0.529ms returns 1 (0x1) -T98A8 085:046.312 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:046.376 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 085:046.720 Data: 01 -T98A8 085:046.816 - 0.501ms returns 1 (0x1) -T98A8 085:046.888 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:046.952 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 085:047.336 Data: 03 -T98A8 085:047.440 - 0.552ms returns 1 (0x1) -T98A8 085:047.512 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:047.584 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 085:047.984 Data: 01 -T98A8 085:048.088 - 0.580ms returns 1 (0x1) -T98A8 085:048.168 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:048.240 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 085:048.592 Data: 02 -T98A8 085:048.704 - 0.536ms returns 1 (0x1) -T98A8 085:049.376 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:049.488 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 085:049.888 Data: 03 -T98A8 085:050.000 - 0.629ms returns 1 (0x1) -T98A8 085:050.072 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:050.152 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 085:050.992 Data: 01 -T98A8 085:051.152 - 1.081ms returns 1 (0x1) -T98A8 085:051.296 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:051.400 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 085:051.808 Data: 01 -T98A8 085:051.920 - 0.628ms returns 1 (0x1) -T98A8 085:052.008 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:052.080 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 085:052.448 Data: 00 00 00 00 -T98A8 085:052.560 - 0.555ms returns 4 (0x4) -T98A8 085:052.712 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:052.784 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 085:053.136 Data: 00 -T98A8 085:053.232 - 0.520ms returns 1 (0x1) -T98A8 085:053.552 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:053.616 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 085:053.952 Data: 00 -T98A8 085:054.048 - 0.495ms returns 1 (0x1) -T98A8 085:054.176 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:054.256 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 085:054.600 Data: 10 CF 01 20 -T98A8 085:054.704 - 0.529ms returns 4 (0x4) -T98A8 085:054.800 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:054.896 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 085:055.312 Data: 49 CF 01 20 -T98A8 085:055.416 - 0.613ms returns 4 (0x4) -T358C 085:055.608 JLINK_IsHalted() -T358C 085:056.432 - 0.821ms returns FALSE -T358C 085:157.128 JLINK_HasError() -T358C 085:157.264 JLINK_IsHalted() -T358C 085:157.688 - 0.421ms returns FALSE -T358C 085:258.440 JLINK_HasError() -T358C 085:258.648 JLINK_IsHalted() -T358C 085:259.432 - 0.781ms returns FALSE -T358C 085:360.320 JLINK_HasError() -T358C 085:360.512 JLINK_IsHalted() -T358C 085:360.912 - 0.399ms returns FALSE -T358C 085:461.432 JLINK_HasError() -T358C 085:461.600 JLINK_IsHalted() -T358C 085:462.008 - 0.406ms returns FALSE -T358C 085:562.736 JLINK_HasError() -T358C 085:562.904 JLINK_HasError() -T358C 085:562.960 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 085:563.048 Data: F7 AE 0E 05 -T358C 085:563.144 Debug reg: DWT_CYCCNT -T358C 085:563.248 - 0.287ms returns 1 (0x1) -T98A8 085:563.488 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 085:563.616 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 085:564.672 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 61 F9 74 58 ... -T98A8 085:564.840 - 1.351ms returns 25 (0x19) -T98A8 085:564.968 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:565.040 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 085:565.424 Data: 02 -T98A8 085:565.584 - 0.623ms returns 1 (0x1) -T98A8 085:565.728 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:565.816 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 085:566.360 Data: 00 00 00 00 -T98A8 085:566.480 - 0.749ms returns 4 (0x4) -T98A8 085:566.560 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:566.632 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 085:567.088 Data: 00 00 00 00 -T98A8 085:567.184 - 0.627ms returns 4 (0x4) -T98A8 085:567.312 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:567.376 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 085:567.840 Data: 80 56 43 BC -T98A8 085:567.984 - 0.682ms returns 4 (0x4) -T98A8 085:568.080 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:568.152 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 085:568.688 Data: 00 00 00 00 -T98A8 085:568.800 - 0.720ms returns 4 (0x4) -T98A8 085:568.864 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:568.928 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 085:569.336 Data: 01 -T98A8 085:569.432 - 0.567ms returns 1 (0x1) -T98A8 085:569.504 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:569.568 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 085:569.904 Data: 01 -T98A8 085:570.000 - 0.488ms returns 1 (0x1) -T98A8 085:570.064 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:570.128 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 085:570.480 Data: 02 -T98A8 085:570.616 - 0.557ms returns 1 (0x1) -T98A8 085:570.704 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:570.792 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 085:571.128 Data: 01 -T98A8 085:571.248 - 0.547ms returns 1 (0x1) -T98A8 085:571.328 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:571.408 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 085:571.728 Data: 03 -T98A8 085:571.824 - 0.499ms returns 1 (0x1) -T98A8 085:573.168 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:573.288 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 085:574.016 Data: 02 -T98A8 085:574.240 - 1.077ms returns 1 (0x1) -T98A8 085:574.608 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:574.992 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 085:575.944 Data: 01 -T98A8 085:576.160 - 1.560ms returns 1 (0x1) -T98A8 085:576.272 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:576.400 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 085:576.792 Data: 01 -T98A8 085:576.896 - 0.624ms returns 1 (0x1) -T98A8 085:576.968 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 085:577.040 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 085:577.448 Data: 00 00 -T98A8 085:577.544 - 0.578ms returns 2 (0x2) -T98A8 085:577.608 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 085:577.672 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 085:578.056 Data: 00 00 -T98A8 085:578.152 - 0.542ms returns 2 (0x2) -T98A8 085:578.320 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:578.384 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 085:578.720 Data: 40 C4 01 20 -T98A8 085:578.816 - 0.496ms returns 4 (0x4) -T98A8 085:578.896 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:578.968 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 085:579.336 Data: 01 00 00 00 -T98A8 085:579.480 - 0.577ms returns 4 (0x4) -T98A8 085:579.592 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:579.688 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 085:580.112 Data: 00 00 00 00 -T98A8 085:580.256 - 0.670ms returns 4 (0x4) -T98A8 085:580.344 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:580.424 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 085:580.824 Data: 00 00 00 00 -T98A8 085:580.944 - 0.595ms returns 4 (0x4) -T98A8 085:581.040 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:581.104 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 085:581.488 Data: 80 56 43 BC -T98A8 085:581.584 - 0.546ms returns 4 (0x4) -T98A8 085:581.648 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:581.712 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 085:582.064 Data: 00 00 00 00 -T98A8 085:582.208 - 0.555ms returns 4 (0x4) -T98A8 085:582.304 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:582.384 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 085:582.816 Data: 01 -T98A8 085:582.928 - 0.625ms returns 1 (0x1) -T98A8 085:583.008 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:583.120 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 085:583.512 Data: 01 -T98A8 085:583.632 - 0.620ms returns 1 (0x1) -T98A8 085:583.696 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:583.760 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 085:584.176 Data: 03 -T98A8 085:584.304 - 0.601ms returns 1 (0x1) -T98A8 085:584.368 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:584.440 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 085:585.344 Data: 01 -T98A8 085:585.472 - 1.099ms returns 1 (0x1) -T98A8 085:585.544 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:585.608 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 085:585.984 Data: 02 -T98A8 085:586.128 - 0.584ms returns 1 (0x1) -T98A8 085:586.880 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:586.992 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 085:587.360 Data: 03 -T98A8 085:587.456 - 0.577ms returns 1 (0x1) -T98A8 085:587.528 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:587.592 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 085:587.920 Data: 01 -T98A8 085:588.016 - 0.492ms returns 1 (0x1) -T98A8 085:588.080 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:588.144 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 085:588.472 Data: 01 -T98A8 085:588.568 - 0.486ms returns 1 (0x1) -T98A8 085:588.648 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:588.712 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 085:589.048 Data: 00 00 00 00 -T98A8 085:589.136 - 0.494ms returns 4 (0x4) -T98A8 085:589.240 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:589.304 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 085:589.648 Data: 00 -T98A8 085:589.744 - 0.497ms returns 1 (0x1) -T98A8 085:590.048 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 085:590.128 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 085:590.480 Data: 00 -T98A8 085:590.576 - 0.532ms returns 1 (0x1) -T98A8 085:590.744 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:590.824 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 085:591.216 Data: 10 CF 01 20 -T98A8 085:591.320 - 0.578ms returns 4 (0x4) -T98A8 085:591.440 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 085:609.192 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 085:609.640 Data: 49 CF 01 20 -T98A8 085:609.824 - 18.386ms returns 4 (0x4) -T358C 085:610.184 JLINK_IsHalted() -T358C 085:610.584 - 0.403ms returns FALSE -T358C 085:711.448 JLINK_HasError() -T358C 085:711.576 JLINK_IsHalted() -T358C 085:711.960 - 0.382ms returns FALSE -T358C 085:812.160 JLINK_HasError() -T358C 085:812.304 JLINK_IsHalted() -T358C 085:812.840 - 0.528ms returns FALSE -T358C 085:913.160 JLINK_HasError() -T358C 085:913.344 JLINK_IsHalted() -T358C 085:913.856 - 0.508ms returns FALSE -T358C 086:015.096 JLINK_HasError() -T358C 086:015.248 JLINK_IsHalted() -T358C 086:015.656 - 0.408ms returns FALSE -T358C 086:116.112 JLINK_HasError() -T358C 086:116.496 JLINK_HasError() -T358C 086:116.680 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 086:116.872 Data: F7 AE 0E 05 -T358C 086:117.168 Debug reg: DWT_CYCCNT -T358C 086:117.424 - 0.739ms returns 1 (0x1) -T98A8 086:117.984 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 086:118.128 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 086:118.704 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 086:118.832 - 0.849ms returns 25 (0x19) -T98A8 086:118.928 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:119.000 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 086:119.376 Data: 02 -T98A8 086:119.512 - 0.585ms returns 1 (0x1) -T98A8 086:119.648 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:119.728 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 086:120.208 Data: 00 00 00 00 -T98A8 086:120.312 - 0.663ms returns 4 (0x4) -T98A8 086:120.384 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:120.448 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 086:120.912 Data: 00 00 00 00 -T98A8 086:121.008 - 0.620ms returns 4 (0x4) -T98A8 086:121.072 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:121.136 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 086:121.616 Data: 80 56 43 BC -T98A8 086:121.712 - 0.643ms returns 4 (0x4) -T98A8 086:121.776 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:121.840 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 086:122.376 Data: 00 00 00 00 -T98A8 086:122.472 - 0.685ms returns 4 (0x4) -T98A8 086:122.544 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:122.600 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 086:122.928 Data: 01 -T98A8 086:123.024 - 0.487ms returns 1 (0x1) -T98A8 086:123.088 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:123.152 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 086:123.512 Data: 01 -T98A8 086:123.664 - 0.573ms returns 1 (0x1) -T98A8 086:123.752 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:123.824 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 086:124.208 Data: 02 -T98A8 086:124.368 - 0.621ms returns 1 (0x1) -T98A8 086:124.464 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:124.560 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 086:124.952 Data: 01 -T98A8 086:125.096 - 0.630ms returns 1 (0x1) -T98A8 086:125.176 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:125.240 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 086:125.584 Data: 03 -T98A8 086:125.696 - 0.514ms returns 1 (0x1) -T98A8 086:125.840 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:125.904 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 086:126.280 Data: 01 -T98A8 086:126.416 - 0.574ms returns 1 (0x1) -T98A8 086:127.944 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:128.064 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 086:128.408 Data: 01 -T98A8 086:128.544 - 0.596ms returns 1 (0x1) -T98A8 086:128.616 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:128.680 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 086:129.024 Data: 01 -T98A8 086:129.128 - 0.512ms returns 1 (0x1) -T98A8 086:129.208 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 086:129.272 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 086:130.176 Data: 00 00 -T98A8 086:130.320 - 1.109ms returns 2 (0x2) -T98A8 086:130.416 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 086:130.536 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 086:130.968 Data: 00 00 -T98A8 086:131.088 - 0.676ms returns 2 (0x2) -T98A8 086:131.240 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:131.304 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 086:131.656 Data: 40 C4 01 20 -T98A8 086:131.760 - 0.517ms returns 4 (0x4) -T98A8 086:131.856 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:131.928 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 086:132.392 Data: 01 00 00 00 -T98A8 086:132.496 - 0.642ms returns 4 (0x4) -T98A8 086:132.584 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:132.672 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 086:133.296 Data: 00 00 00 00 -T98A8 086:133.456 - 0.871ms returns 4 (0x4) -T98A8 086:133.568 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:133.704 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 086:134.184 Data: 00 00 00 00 -T98A8 086:134.296 - 0.732ms returns 4 (0x4) -T98A8 086:134.448 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:134.512 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 086:134.888 Data: 80 56 43 BC -T98A8 086:134.992 - 0.550ms returns 4 (0x4) -T98A8 086:135.064 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:135.128 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 086:135.504 Data: 00 00 00 00 -T98A8 086:135.600 - 0.541ms returns 4 (0x4) -T98A8 086:135.688 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:135.752 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 086:136.088 Data: 01 -T98A8 086:136.184 - 0.502ms returns 1 (0x1) -T98A8 086:136.256 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:136.320 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 086:137.232 Data: 01 -T98A8 086:137.408 - 1.154ms returns 1 (0x1) -T98A8 086:137.512 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:137.608 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 086:138.064 Data: 03 -T98A8 086:138.344 - 0.830ms returns 1 (0x1) -T98A8 086:138.496 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:138.640 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 086:139.144 Data: 01 -T98A8 086:139.280 - 0.789ms returns 1 (0x1) -T98A8 086:139.360 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:139.432 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 086:139.800 Data: 02 -T98A8 086:139.928 - 0.565ms returns 1 (0x1) -T98A8 086:140.000 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:140.064 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 086:140.416 Data: 01 -T98A8 086:140.520 - 0.519ms returns 1 (0x1) -T98A8 086:141.176 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:141.272 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 086:141.640 Data: 01 -T98A8 086:141.736 - 0.558ms returns 1 (0x1) -T98A8 086:141.808 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:141.872 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 086:142.192 Data: 01 -T98A8 086:142.312 - 0.504ms returns 1 (0x1) -T98A8 086:142.384 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:142.448 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 086:142.848 Data: 00 00 00 00 -T98A8 086:142.944 - 0.565ms returns 4 (0x4) -T98A8 086:143.072 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:143.136 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 086:143.512 Data: 00 -T98A8 086:143.600 - 0.532ms returns 1 (0x1) -T98A8 086:143.920 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:143.984 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 086:144.384 Data: 00 -T98A8 086:144.472 - 0.558ms returns 1 (0x1) -T98A8 086:144.608 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:144.688 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 086:145.064 Data: 10 CF 01 20 -T98A8 086:145.160 - 0.550ms returns 4 (0x4) -T98A8 086:145.240 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:145.304 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 086:145.736 Data: 49 CF 01 20 -T98A8 086:145.832 - 0.587ms returns 4 (0x4) -T358C 086:146.016 JLINK_IsHalted() -T358C 086:146.384 - 0.371ms returns FALSE -T358C 086:247.888 JLINK_HasError() -T358C 086:248.056 JLINK_IsHalted() -T358C 086:249.080 - 1.022ms returns FALSE -T358C 086:349.896 JLINK_HasError() -T358C 086:350.064 JLINK_IsHalted() -T358C 086:350.800 - 0.729ms returns FALSE -T358C 086:451.512 JLINK_HasError() -T358C 086:451.712 JLINK_IsHalted() -T358C 086:452.152 - 0.439ms returns FALSE -T358C 086:552.560 JLINK_HasError() -T358C 086:552.728 JLINK_IsHalted() -T358C 086:553.200 - 0.470ms returns FALSE -T358C 086:653.456 JLINK_HasError() -T358C 086:653.712 JLINK_HasError() -T358C 086:653.816 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 086:653.960 Data: F7 AE 0E 05 -T358C 086:654.048 Debug reg: DWT_CYCCNT -T358C 086:654.128 - 0.312ms returns 1 (0x1) -T98A8 086:654.464 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 086:654.704 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 086:655.504 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 086:655.696 - 1.237ms returns 25 (0x19) -T98A8 086:655.848 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:655.952 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 086:656.640 Data: 02 -T98A8 086:656.824 - 0.980ms returns 1 (0x1) -T98A8 086:656.976 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:657.080 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 086:657.616 Data: 00 00 00 00 -T98A8 086:657.768 - 0.784ms returns 4 (0x4) -T98A8 086:657.880 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:657.976 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 086:658.544 Data: 00 00 00 00 -T98A8 086:658.704 - 0.821ms returns 4 (0x4) -T98A8 086:658.824 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:658.920 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 086:659.464 Data: 80 56 43 BC -T98A8 086:659.600 - 0.776ms returns 4 (0x4) -T98A8 086:659.728 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:659.800 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 086:660.272 Data: 00 00 00 00 -T98A8 086:660.432 - 0.707ms returns 4 (0x4) -T98A8 086:660.544 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:660.624 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 086:660.984 Data: 01 -T98A8 086:661.104 - 0.556ms returns 1 (0x1) -T98A8 086:661.184 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:661.264 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 086:661.632 Data: 01 -T98A8 086:661.776 - 0.594ms returns 1 (0x1) -T98A8 086:661.864 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:661.952 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 086:662.320 Data: 02 -T98A8 086:662.448 - 0.581ms returns 1 (0x1) -T98A8 086:662.528 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:662.608 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 086:662.960 Data: 01 -T98A8 086:663.064 - 0.540ms returns 1 (0x1) -T98A8 086:663.128 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:663.192 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 086:663.536 Data: 03 -T98A8 086:663.672 - 0.540ms returns 1 (0x1) -T98A8 086:663.760 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:663.832 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 086:664.200 Data: 01 -T98A8 086:664.312 - 0.558ms returns 1 (0x1) -T98A8 086:666.264 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:666.960 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 086:667.728 Data: 01 -T98A8 086:667.840 - 1.581ms returns 1 (0x1) -T98A8 086:667.912 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:667.976 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 086:668.440 Data: 01 -T98A8 086:668.552 - 0.639ms returns 1 (0x1) -T98A8 086:668.616 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 086:668.680 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 086:669.072 Data: 00 00 -T98A8 086:669.168 - 0.550ms returns 2 (0x2) -T98A8 086:669.232 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 086:669.296 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 086:669.680 Data: 00 00 -T98A8 086:669.784 - 0.553ms returns 2 (0x2) -T98A8 086:669.968 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:670.032 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 086:670.424 Data: 40 C4 01 20 -T98A8 086:670.824 - 0.855ms returns 4 (0x4) -T98A8 086:671.000 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:671.112 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 086:671.504 Data: 01 00 00 00 -T98A8 086:671.648 - 0.642ms returns 4 (0x4) -T98A8 086:671.736 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:671.816 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 086:672.176 Data: 00 00 00 00 -T98A8 086:672.296 - 0.553ms returns 4 (0x4) -T98A8 086:672.368 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:672.432 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 086:672.784 Data: 00 00 00 00 -T98A8 086:672.904 - 0.534ms returns 4 (0x4) -T98A8 086:672.984 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:673.056 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 086:673.544 Data: 80 56 43 BC -T98A8 086:673.744 - 0.755ms returns 4 (0x4) -T98A8 086:673.872 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:673.984 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 086:674.416 Data: 00 00 00 00 -T98A8 086:674.560 - 0.693ms returns 4 (0x4) -T98A8 086:674.664 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:674.744 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 086:675.112 Data: 01 -T98A8 086:675.256 - 0.592ms returns 1 (0x1) -T98A8 086:675.344 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:675.424 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 086:675.800 Data: 01 -T98A8 086:675.960 - 0.618ms returns 1 (0x1) -T98A8 086:676.048 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:676.136 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 086:676.496 Data: 03 -T98A8 086:676.616 - 0.568ms returns 1 (0x1) -T98A8 086:676.688 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:676.752 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 086:677.200 Data: 01 -T98A8 086:677.360 - 0.678ms returns 1 (0x1) -T98A8 086:677.456 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:677.528 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 086:677.960 Data: 02 -T98A8 086:678.056 - 0.606ms returns 1 (0x1) -T98A8 086:678.128 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:678.192 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 086:678.544 Data: 01 -T98A8 086:678.640 - 0.521ms returns 1 (0x1) -T98A8 086:679.312 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:679.408 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 086:679.784 Data: 01 -T98A8 086:679.880 - 0.568ms returns 1 (0x1) -T98A8 086:679.952 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:680.016 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 086:680.424 Data: 01 -T98A8 086:680.520 - 0.569ms returns 1 (0x1) -T98A8 086:680.584 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:680.648 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 086:681.096 Data: 00 00 00 00 -T98A8 086:681.192 - 0.603ms returns 4 (0x4) -T98A8 086:681.296 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:681.360 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 086:681.888 Data: 00 -T98A8 086:682.168 - 0.878ms returns 1 (0x1) -T98A8 086:682.704 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 086:682.824 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 086:683.160 Data: 00 -T98A8 086:683.312 - 0.609ms returns 1 (0x1) -T98A8 086:683.520 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:683.608 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 086:684.088 Data: 10 CF 01 20 -T98A8 086:684.216 - 0.697ms returns 4 (0x4) -T98A8 086:684.320 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 086:684.384 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 086:685.232 Data: 49 CF 01 20 -T98A8 086:685.384 - 1.065ms returns 4 (0x4) -T358C 086:685.592 JLINK_IsHalted() -T358C 086:685.968 - 0.368ms returns FALSE -T358C 086:786.584 JLINK_HasError() -T358C 086:786.776 JLINK_IsHalted() -T358C 086:787.184 - 0.406ms returns FALSE -T358C 086:887.840 JLINK_HasError() -T358C 086:888.064 JLINK_IsHalted() -T358C 086:888.504 - 0.441ms returns FALSE -T358C 086:988.984 JLINK_HasError() -T358C 086:989.136 JLINK_IsHalted() -T358C 086:990.032 - 0.897ms returns FALSE -T358C 087:090.464 JLINK_HasError() -T358C 087:090.624 JLINK_IsHalted() -T358C 087:091.056 - 0.426ms returns FALSE -T358C 087:191.504 JLINK_HasError() -T358C 087:191.696 JLINK_HasError() -T358C 087:191.832 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 087:191.936 Data: F7 AE 0E 05 -T358C 087:192.048 Debug reg: DWT_CYCCNT -T358C 087:192.152 - 0.324ms returns 1 (0x1) -T98A8 087:193.024 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 087:193.168 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 087:193.736 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 61 F9 74 58 ... -T98A8 087:193.840 - 0.815ms returns 25 (0x19) -T98A8 087:193.936 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:194.000 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 087:194.448 Data: 02 -T98A8 087:194.584 - 0.654ms returns 1 (0x1) -T98A8 087:194.712 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:194.776 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 087:195.232 Data: 00 00 00 00 -T98A8 087:195.336 - 0.624ms returns 4 (0x4) -T98A8 087:195.408 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:195.480 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 087:195.928 Data: 00 00 00 00 -T98A8 087:196.016 - 0.614ms returns 4 (0x4) -T98A8 087:196.168 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:196.304 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 087:196.816 Data: 80 56 43 BC -T98A8 087:196.944 - 0.777ms returns 4 (0x4) -T98A8 087:197.016 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:197.088 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 087:197.552 Data: 00 00 00 00 -T98A8 087:197.664 - 0.643ms returns 4 (0x4) -T98A8 087:197.736 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:197.800 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 087:198.136 Data: 01 -T98A8 087:198.256 - 0.529ms returns 1 (0x1) -T98A8 087:198.328 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:198.400 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 087:198.768 Data: 01 -T98A8 087:198.928 - 0.593ms returns 1 (0x1) -T98A8 087:199.008 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:199.088 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 087:199.488 Data: 02 -T98A8 087:199.648 - 0.640ms returns 1 (0x1) -T98A8 087:199.728 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:199.816 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 087:200.176 Data: 01 -T98A8 087:200.280 - 0.546ms returns 1 (0x1) -T98A8 087:200.344 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:200.416 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 087:200.744 Data: 03 -T98A8 087:200.864 - 0.516ms returns 1 (0x1) -T98A8 087:200.936 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:201.008 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 087:201.352 Data: 02 -T98A8 087:201.464 - 0.532ms returns 1 (0x1) -T98A8 087:203.016 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:203.120 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 087:203.528 Data: 01 -T98A8 087:203.696 - 0.685ms returns 1 (0x1) -T98A8 087:203.800 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:203.888 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 087:204.496 Data: 01 -T98A8 087:204.672 - 0.871ms returns 1 (0x1) -T98A8 087:204.768 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 087:204.880 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 087:205.480 Data: 00 00 -T98A8 087:205.608 - 0.844ms returns 2 (0x2) -T98A8 087:205.680 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 087:205.744 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 087:206.992 Data: 00 00 -T98A8 087:207.208 - 1.529ms returns 2 (0x2) -T98A8 087:207.472 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:207.584 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 087:208.440 Data: 40 C4 01 20 -T98A8 087:208.944 - 1.476ms returns 4 (0x4) -T98A8 087:209.360 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:209.432 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 087:209.816 Data: 01 00 00 00 -T98A8 087:209.944 - 0.582ms returns 4 (0x4) -T98A8 087:210.032 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:210.104 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 087:210.472 Data: 00 00 00 00 -T98A8 087:210.608 - 0.565ms returns 4 (0x4) -T98A8 087:210.680 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:210.744 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 087:211.120 Data: 00 00 00 00 -T98A8 087:211.264 - 0.587ms returns 4 (0x4) -T98A8 087:211.368 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:211.464 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 087:211.872 Data: 80 56 43 BC -T98A8 087:212.008 - 0.636ms returns 4 (0x4) -T98A8 087:212.080 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:212.160 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 087:212.560 Data: 00 00 00 00 -T98A8 087:212.712 - 0.626ms returns 4 (0x4) -T98A8 087:212.816 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:212.880 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 087:213.248 Data: 01 -T98A8 087:213.384 - 0.569ms returns 1 (0x1) -T98A8 087:213.456 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:213.520 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 087:213.864 Data: 01 -T98A8 087:213.976 - 0.526ms returns 1 (0x1) -T98A8 087:214.048 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:214.112 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 087:214.448 Data: 03 -T98A8 087:214.544 - 0.497ms returns 1 (0x1) -T98A8 087:214.608 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:214.672 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 087:215.008 Data: 01 -T98A8 087:215.160 - 0.551ms returns 1 (0x1) -T98A8 087:215.248 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:215.336 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 087:215.696 Data: 02 -T98A8 087:215.816 - 0.567ms returns 1 (0x1) -T98A8 087:215.896 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:215.976 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 087:216.344 Data: 03 -T98A8 087:216.472 - 0.573ms returns 1 (0x1) -T98A8 087:217.104 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:217.200 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 087:217.584 Data: 01 -T98A8 087:217.728 - 0.620ms returns 1 (0x1) -T98A8 087:217.808 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:217.888 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 087:218.280 Data: 01 -T98A8 087:218.368 - 0.558ms returns 1 (0x1) -T98A8 087:218.440 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:218.504 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 087:218.848 Data: 00 00 00 00 -T98A8 087:219.000 - 0.561ms returns 4 (0x4) -T98A8 087:219.160 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:219.240 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 087:219.584 Data: 00 -T98A8 087:219.696 - 0.548ms returns 1 (0x1) -T98A8 087:220.064 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:220.160 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 087:220.512 Data: 00 -T98A8 087:220.656 - 0.596ms returns 1 (0x1) -T98A8 087:220.840 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:220.912 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 087:221.272 Data: 10 CF 01 20 -T98A8 087:221.440 - 0.598ms returns 4 (0x4) -T98A8 087:221.552 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:221.632 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 087:222.040 Data: 49 CF 01 20 -T98A8 087:222.160 - 0.605ms returns 4 (0x4) -T358C 087:223.024 JLINK_IsHalted() -T358C 087:223.592 - 0.571ms returns FALSE -T358C 087:325.240 JLINK_HasError() -T358C 087:325.408 JLINK_IsHalted() -T358C 087:325.888 - 0.479ms returns FALSE -T358C 087:426.464 JLINK_HasError() -T358C 087:426.672 JLINK_IsHalted() -T358C 087:427.176 - 0.502ms returns FALSE -T358C 087:529.000 JLINK_HasError() -T358C 087:529.264 JLINK_IsHalted() -T358C 087:530.304 - 1.035ms returns FALSE -T358C 087:631.008 JLINK_HasError() -T358C 087:631.328 JLINK_IsHalted() -T358C 087:632.472 - 1.143ms returns FALSE -T358C 087:733.648 JLINK_HasError() -T358C 087:733.832 JLINK_HasError() -T358C 087:733.888 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 087:733.968 Data: F7 AE 0E 05 -T358C 087:734.056 Debug reg: DWT_CYCCNT -T358C 087:734.136 - 0.246ms returns 1 (0x1) -T98A8 087:734.464 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 087:734.632 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 087:735.216 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 61 F9 74 58 ... -T98A8 087:735.328 - 0.864ms returns 25 (0x19) -T98A8 087:735.424 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:735.496 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 087:735.920 Data: 02 -T98A8 087:736.048 - 0.624ms returns 1 (0x1) -T98A8 087:736.320 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:736.464 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 087:736.976 Data: 00 00 00 00 -T98A8 087:737.112 - 0.792ms returns 4 (0x4) -T98A8 087:737.200 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:737.288 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 087:737.832 Data: 00 00 00 00 -T98A8 087:737.968 - 0.773ms returns 4 (0x4) -T98A8 087:738.056 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:738.136 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 087:738.640 Data: 80 56 43 BC -T98A8 087:738.752 - 0.695ms returns 4 (0x4) -T98A8 087:738.824 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:738.896 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 087:739.392 Data: 00 00 00 00 -T98A8 087:739.480 - 0.659ms returns 4 (0x4) -T98A8 087:739.552 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:739.624 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 087:740.008 Data: 01 -T98A8 087:740.104 - 0.553ms returns 1 (0x1) -T98A8 087:740.176 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:740.240 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 087:740.664 Data: 01 -T98A8 087:740.776 - 0.600ms returns 1 (0x1) -T98A8 087:740.848 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:740.920 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 087:741.336 Data: 02 -T98A8 087:741.448 - 0.594ms returns 1 (0x1) -T98A8 087:741.520 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:741.600 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 087:742.048 Data: 01 -T98A8 087:742.160 - 0.640ms returns 1 (0x1) -T98A8 087:742.232 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:742.312 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 087:742.736 Data: 03 -T98A8 087:742.832 - 0.590ms returns 1 (0x1) -T98A8 087:742.896 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:742.952 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 087:743.312 Data: 02 -T98A8 087:743.408 - 0.517ms returns 1 (0x1) -T98A8 087:745.000 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:745.104 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 087:745.520 Data: 01 -T98A8 087:745.648 - 0.657ms returns 1 (0x1) -T98A8 087:745.728 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:745.800 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 087:746.280 Data: 01 -T98A8 087:746.416 - 0.685ms returns 1 (0x1) -T98A8 087:746.480 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 087:746.544 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 087:747.048 Data: 00 00 -T98A8 087:747.184 - 0.698ms returns 2 (0x2) -T98A8 087:747.248 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 087:747.312 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 087:747.824 Data: 00 00 -T98A8 087:747.952 - 0.707ms returns 2 (0x2) -T98A8 087:748.096 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:748.240 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 087:748.624 Data: 40 C4 01 20 -T98A8 087:748.776 - 0.676ms returns 4 (0x4) -T98A8 087:748.880 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:748.976 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 087:749.336 Data: 01 00 00 00 -T98A8 087:749.440 - 0.555ms returns 4 (0x4) -T98A8 087:749.528 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:749.592 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 087:749.960 Data: 00 00 00 00 -T98A8 087:750.064 - 0.528ms returns 4 (0x4) -T98A8 087:750.128 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:750.192 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 087:750.712 Data: 00 00 00 00 -T98A8 087:750.808 - 0.675ms returns 4 (0x4) -T98A8 087:750.888 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:750.952 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 087:751.320 Data: 80 56 43 BC -T98A8 087:751.416 - 0.533ms returns 4 (0x4) -T98A8 087:751.488 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:751.552 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 087:751.968 Data: 00 00 00 00 -T98A8 087:752.128 - 0.635ms returns 4 (0x4) -T98A8 087:752.232 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:752.304 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 087:752.688 Data: 01 -T98A8 087:752.816 - 0.588ms returns 1 (0x1) -T98A8 087:752.896 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:752.968 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 087:753.360 Data: 01 -T98A8 087:753.464 - 0.569ms returns 1 (0x1) -T98A8 087:753.536 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:753.616 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 087:754.032 Data: 03 -T98A8 087:754.144 - 0.605ms returns 1 (0x1) -T98A8 087:754.224 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:754.296 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 087:754.824 Data: 01 -T98A8 087:755.120 - 0.895ms returns 1 (0x1) -T98A8 087:755.272 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:755.432 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 087:755.936 Data: 02 -T98A8 087:756.080 - 0.815ms returns 1 (0x1) -T98A8 087:756.176 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:756.248 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 087:757.368 Data: 03 -T98A8 087:757.496 - 1.327ms returns 1 (0x1) -T98A8 087:758.072 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:758.168 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 087:758.624 Data: 01 -T98A8 087:758.928 - 0.850ms returns 1 (0x1) -T98A8 087:759.080 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:759.216 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 087:759.704 Data: 01 -T98A8 087:759.824 - 0.748ms returns 1 (0x1) -T98A8 087:759.896 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:759.960 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 087:760.496 Data: 00 00 00 00 -T98A8 087:760.664 - 0.767ms returns 4 (0x4) -T98A8 087:760.800 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:760.880 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 087:761.256 Data: 00 -T98A8 087:761.368 - 0.564ms returns 1 (0x1) -T98A8 087:761.728 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 087:761.808 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 087:762.176 Data: 00 -T98A8 087:762.272 - 0.541ms returns 1 (0x1) -T98A8 087:762.400 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:762.480 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 087:762.824 Data: 10 CF 01 20 -T98A8 087:762.920 - 0.515ms returns 4 (0x4) -T98A8 087:763.000 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 087:763.064 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 087:763.512 Data: 49 CF 01 20 -T98A8 087:763.640 - 0.641ms returns 4 (0x4) -T358C 087:764.168 JLINK_IsHalted() -T358C 087:764.528 - 0.368ms returns FALSE -T358C 087:865.824 JLINK_HasError() -T358C 087:866.056 JLINK_IsHalted() -T358C 087:867.080 - 1.024ms returns FALSE -T358C 087:967.816 JLINK_HasError() -T358C 087:967.984 JLINK_IsHalted() -T358C 087:968.400 - 0.416ms returns FALSE -T358C 088:068.912 JLINK_HasError() -T358C 088:069.080 JLINK_IsHalted() -T358C 088:069.544 - 0.459ms returns FALSE -T358C 088:169.904 JLINK_HasError() -T358C 088:170.088 JLINK_IsHalted() -T358C 088:170.536 - 0.443ms returns FALSE -T358C 088:271.624 JLINK_HasError() -T358C 088:271.800 JLINK_HasError() -T358C 088:271.896 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 088:272.040 Data: F7 AE 0E 05 -T358C 088:272.208 Debug reg: DWT_CYCCNT -T358C 088:272.368 - 0.468ms returns 1 (0x1) -T98A8 088:273.016 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 088:273.280 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 088:274.256 Data: 0F 00 04 20 00 F1 17 96 B0 7C 1A 80 61 F9 74 58 ... -T98A8 088:274.416 - 1.404ms returns 25 (0x19) -T98A8 088:274.656 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:274.792 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 088:275.704 Data: 02 -T98A8 088:275.840 - 1.183ms returns 1 (0x1) -T98A8 088:275.968 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:276.040 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 088:276.528 Data: 00 00 00 00 -T98A8 088:276.640 - 0.668ms returns 4 (0x4) -T98A8 088:276.720 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:276.800 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 088:277.344 Data: 00 00 00 00 -T98A8 088:277.520 - 0.802ms returns 4 (0x4) -T98A8 088:277.624 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:277.720 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 088:278.256 Data: 80 56 43 BC -T98A8 088:278.384 - 0.761ms returns 4 (0x4) -T98A8 088:278.464 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:278.536 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 088:279.024 Data: 00 00 00 00 -T98A8 088:279.168 - 0.703ms returns 4 (0x4) -T98A8 088:279.256 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:279.328 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 088:279.696 Data: 01 -T98A8 088:279.824 - 0.565ms returns 1 (0x1) -T98A8 088:279.896 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:279.968 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 088:280.312 Data: 01 -T98A8 088:280.416 - 0.517ms returns 1 (0x1) -T98A8 088:280.496 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:280.560 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 088:280.904 Data: 02 -T98A8 088:281.008 - 0.514ms returns 1 (0x1) -T98A8 088:281.072 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:281.136 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 088:281.512 Data: 01 -T98A8 088:281.608 - 0.537ms returns 1 (0x1) -T98A8 088:281.680 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:281.744 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 088:282.064 Data: 03 -T98A8 088:282.200 - 0.529ms returns 1 (0x1) -T98A8 088:282.288 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:282.368 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 088:282.736 Data: 02 -T98A8 088:282.832 - 0.548ms returns 1 (0x1) -T98A8 088:282.920 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:282.984 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 088:283.376 Data: 01 -T98A8 088:283.504 - 0.589ms returns 1 (0x1) -T98A8 088:283.576 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:283.648 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 088:284.000 Data: 01 -T98A8 088:284.104 - 0.525ms returns 1 (0x1) -T98A8 088:284.176 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 088:284.248 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 088:284.616 Data: 00 00 -T98A8 088:284.720 - 0.533ms returns 2 (0x2) -T98A8 088:284.784 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 088:284.848 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 088:285.240 Data: 00 00 -T98A8 088:285.360 - 0.574ms returns 2 (0x2) -T98A8 088:285.552 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:285.624 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 088:285.968 Data: 40 C4 01 20 -T98A8 088:286.064 - 0.511ms returns 4 (0x4) -T98A8 088:286.160 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:286.224 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 088:286.664 Data: 01 00 00 00 -T98A8 088:286.776 - 0.618ms returns 4 (0x4) -T98A8 088:286.864 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:286.928 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 088:287.320 Data: 00 00 00 00 -T98A8 088:287.416 - 0.553ms returns 4 (0x4) -T98A8 088:287.504 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:287.568 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 088:287.944 Data: 00 00 00 00 -T98A8 088:288.048 - 0.554ms returns 4 (0x4) -T98A8 088:288.144 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:288.208 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 088:288.560 Data: 80 56 43 BC -T98A8 088:288.752 - 0.606ms returns 4 (0x4) -T98A8 088:288.856 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:288.936 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 088:289.328 Data: 00 00 00 00 -T98A8 088:289.464 - 0.613ms returns 4 (0x4) -T98A8 088:289.624 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:289.712 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 088:290.088 Data: 01 -T98A8 088:290.192 - 0.565ms returns 1 (0x1) -T98A8 088:290.264 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:290.328 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 088:290.672 Data: 01 -T98A8 088:290.792 - 0.525ms returns 1 (0x1) -T98A8 088:290.864 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:290.928 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 088:291.304 Data: 03 -T98A8 088:291.432 - 0.569ms returns 1 (0x1) -T98A8 088:291.512 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:291.576 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 088:291.920 Data: 01 -T98A8 088:292.016 - 0.509ms returns 1 (0x1) -T98A8 088:292.088 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:292.160 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 088:292.536 Data: 02 -T98A8 088:292.648 - 0.552ms returns 1 (0x1) -T98A8 088:292.720 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:292.784 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 088:293.120 Data: 03 -T98A8 088:293.224 - 0.502ms returns 1 (0x1) -T98A8 088:293.288 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:293.352 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 088:293.720 Data: 01 -T98A8 088:293.824 - 0.539ms returns 1 (0x1) -T98A8 088:293.896 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:293.960 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 088:294.336 Data: 01 -T98A8 088:294.432 - 0.540ms returns 1 (0x1) -T98A8 088:294.504 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:294.576 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 088:294.920 Data: 00 00 00 00 -T98A8 088:295.016 - 0.515ms returns 4 (0x4) -T98A8 088:295.184 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:295.264 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 088:295.672 Data: 00 -T98A8 088:295.840 - 0.654ms returns 1 (0x1) -T98A8 088:296.264 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:296.336 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 088:296.696 Data: 00 -T98A8 088:296.816 - 0.561ms returns 1 (0x1) -T98A8 088:296.976 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:297.048 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 088:297.416 Data: 10 CF 01 20 -T98A8 088:297.584 - 0.609ms returns 4 (0x4) -T98A8 088:297.688 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:297.752 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 088:298.096 Data: 49 CF 01 20 -T98A8 088:298.208 - 0.523ms returns 4 (0x4) -T358C 088:298.456 JLINK_IsHalted() -T358C 088:298.832 - 0.375ms returns FALSE -T358C 088:399.256 JLINK_HasError() -T358C 088:399.448 JLINK_IsHalted() -T358C 088:399.952 - 0.491ms returns FALSE -T358C 088:500.344 JLINK_HasError() -T358C 088:500.640 JLINK_IsHalted() -T358C 088:501.208 - 0.567ms returns FALSE -T358C 088:601.456 JLINK_HasError() -T358C 088:601.600 JLINK_IsHalted() -T358C 088:602.520 - 0.918ms returns FALSE -T358C 088:702.768 JLINK_HasError() -T358C 088:702.952 JLINK_IsHalted() -T358C 088:703.376 - 0.423ms returns FALSE -T358C 088:804.376 JLINK_HasError() -T358C 088:804.584 JLINK_HasError() -T358C 088:804.656 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 088:804.744 Data: F7 AE 0E 05 -T358C 088:804.848 Debug reg: DWT_CYCCNT -T358C 088:804.944 - 0.287ms returns 1 (0x1) -T98A8 088:805.264 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 088:805.432 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 088:806.048 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 088:806.232 - 0.973ms returns 25 (0x19) -T98A8 088:806.336 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:806.440 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 088:806.840 Data: 02 -T98A8 088:806.960 - 0.628ms returns 1 (0x1) -T98A8 088:807.096 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:807.168 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 088:807.712 Data: 00 00 00 00 -T98A8 088:807.864 - 0.765ms returns 4 (0x4) -T98A8 088:807.944 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:808.008 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 088:808.584 Data: 00 00 00 00 -T98A8 088:808.704 - 0.767ms returns 4 (0x4) -T98A8 088:808.784 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:808.848 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 088:809.392 Data: 80 56 43 BC -T98A8 088:809.488 - 0.708ms returns 4 (0x4) -T98A8 088:809.584 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:809.656 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 088:810.128 Data: 00 00 00 00 -T98A8 088:810.232 - 0.648ms returns 4 (0x4) -T98A8 088:810.312 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:810.384 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 088:810.736 Data: 01 -T98A8 088:810.848 - 0.537ms returns 1 (0x1) -T98A8 088:810.952 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:811.040 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 088:811.456 Data: 01 -T98A8 088:811.624 - 0.672ms returns 1 (0x1) -T98A8 088:811.704 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:811.792 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 088:812.664 Data: 02 -T98A8 088:812.800 - 1.095ms returns 1 (0x1) -T98A8 088:812.944 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:813.048 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 088:813.400 Data: 01 -T98A8 088:813.528 - 0.588ms returns 1 (0x1) -T98A8 088:813.600 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:813.664 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 088:814.000 Data: 03 -T98A8 088:814.096 - 0.501ms returns 1 (0x1) -T98A8 088:814.160 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:814.224 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 088:814.584 Data: 01 -T98A8 088:814.680 - 0.512ms returns 1 (0x1) -T98A8 088:817.520 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:817.640 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 088:818.256 Data: 01 -T98A8 088:818.480 - 0.959ms returns 1 (0x1) -T98A8 088:818.568 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:818.640 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 088:819.672 Data: 01 -T98A8 088:819.904 - 1.341ms returns 1 (0x1) -T98A8 088:820.000 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 088:820.088 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 088:820.568 Data: 00 00 -T98A8 088:820.720 - 0.715ms returns 2 (0x2) -T98A8 088:820.792 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 088:820.888 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 088:821.336 Data: 00 00 -T98A8 088:821.504 - 0.711ms returns 2 (0x2) -T98A8 088:821.720 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:821.784 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 088:822.256 Data: 40 C4 01 20 -T98A8 088:822.384 - 0.668ms returns 4 (0x4) -T98A8 088:822.480 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:822.552 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 088:823.016 Data: 01 00 00 00 -T98A8 088:823.144 - 0.659ms returns 4 (0x4) -T98A8 088:823.232 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:823.304 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 088:823.696 Data: 00 00 00 00 -T98A8 088:823.856 - 0.626ms returns 4 (0x4) -T98A8 088:823.952 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:824.032 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 088:824.616 Data: 00 00 00 00 -T98A8 088:824.904 - 0.947ms returns 4 (0x4) -T98A8 088:825.080 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:825.216 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 088:825.616 Data: 80 56 43 BC -T98A8 088:825.808 - 0.723ms returns 4 (0x4) -T98A8 088:825.904 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:825.976 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 088:826.448 Data: 00 00 00 00 -T98A8 088:826.576 - 0.670ms returns 4 (0x4) -T98A8 088:826.696 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:826.768 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 088:827.120 Data: 01 -T98A8 088:827.256 - 0.561ms returns 1 (0x1) -T98A8 088:827.328 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:827.400 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 088:827.760 Data: 01 -T98A8 088:827.920 - 0.589ms returns 1 (0x1) -T98A8 088:828.008 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:828.112 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 088:828.560 Data: 03 -T98A8 088:828.664 - 0.653ms returns 1 (0x1) -T98A8 088:828.728 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:828.792 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 088:829.200 Data: 01 -T98A8 088:829.328 - 0.601ms returns 1 (0x1) -T98A8 088:829.416 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:829.488 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 088:829.872 Data: 02 -T98A8 088:830.032 - 0.610ms returns 1 (0x1) -T98A8 088:830.096 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:830.168 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 088:830.552 Data: 01 -T98A8 088:830.672 - 0.570ms returns 1 (0x1) -T98A8 088:831.352 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:831.464 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 088:832.440 Data: 01 -T98A8 088:832.616 - 1.260ms returns 1 (0x1) -T98A8 088:832.736 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:832.896 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 088:833.280 Data: 01 -T98A8 088:833.440 - 0.705ms returns 1 (0x1) -T98A8 088:833.520 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:833.608 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 088:834.032 Data: 00 00 00 00 -T98A8 088:834.192 - 0.674ms returns 4 (0x4) -T98A8 088:834.384 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:834.472 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 088:834.840 Data: 00 -T98A8 088:834.976 - 0.588ms returns 1 (0x1) -T98A8 088:835.392 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 088:835.488 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 088:835.848 Data: 00 -T98A8 088:835.976 - 0.586ms returns 1 (0x1) -T98A8 088:836.128 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:836.208 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 088:836.592 Data: 10 CF 01 20 -T98A8 088:836.744 - 0.613ms returns 4 (0x4) -T98A8 088:836.856 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 088:836.952 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 088:837.320 Data: 49 CF 01 20 -T98A8 088:837.424 - 0.569ms returns 4 (0x4) -T358C 088:837.600 JLINK_IsHalted() -T358C 088:837.944 - 0.345ms returns FALSE -T358C 088:939.216 JLINK_HasError() -T358C 088:939.400 JLINK_IsHalted() -T358C 088:939.864 - 0.467ms returns FALSE -T358C 089:040.408 JLINK_HasError() -T358C 089:040.672 JLINK_IsHalted() -T358C 089:041.848 - 1.176ms returns FALSE -T358C 089:142.128 JLINK_HasError() -T358C 089:142.288 JLINK_IsHalted() -T358C 089:142.736 - 0.440ms returns FALSE -T358C 089:243.408 JLINK_HasError() -T358C 089:243.536 JLINK_IsHalted() -T358C 089:243.952 - 0.405ms returns FALSE -T358C 089:344.952 JLINK_HasError() -T358C 089:345.104 JLINK_HasError() -T358C 089:345.168 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 089:345.264 Data: F7 AE 0E 05 -T358C 089:345.360 Debug reg: DWT_CYCCNT -T358C 089:345.456 - 0.283ms returns 1 (0x1) -T98A8 089:345.768 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 089:345.952 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 089:346.640 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 089:346.792 - 1.023ms returns 25 (0x19) -T98A8 089:346.896 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:346.976 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 089:347.920 Data: 02 -T98A8 089:348.088 - 1.188ms returns 1 (0x1) -T98A8 089:348.224 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:348.304 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 089:348.776 Data: 00 00 00 00 -T98A8 089:348.888 - 0.664ms returns 4 (0x4) -T98A8 089:348.968 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:349.032 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 089:349.488 Data: 00 00 00 00 -T98A8 089:349.616 - 0.648ms returns 4 (0x4) -T98A8 089:349.704 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:349.784 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 089:350.304 Data: 80 56 43 BC -T98A8 089:350.528 - 0.825ms returns 4 (0x4) -T98A8 089:350.632 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:350.720 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 089:351.216 Data: 00 00 00 00 -T98A8 089:351.312 - 0.680ms returns 4 (0x4) -T98A8 089:351.376 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:351.440 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 089:351.784 Data: 01 -T98A8 089:351.880 - 0.498ms returns 1 (0x1) -T98A8 089:351.944 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:352.008 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 089:352.360 Data: 01 -T98A8 089:352.512 - 0.566ms returns 1 (0x1) -T98A8 089:352.656 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:352.752 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 089:353.136 Data: 02 -T98A8 089:353.264 - 0.608ms returns 1 (0x1) -T98A8 089:353.328 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:353.392 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 089:353.752 Data: 01 -T98A8 089:353.840 - 0.518ms returns 1 (0x1) -T98A8 089:353.912 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:353.976 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 089:354.304 Data: 03 -T98A8 089:354.400 - 0.487ms returns 1 (0x1) -T98A8 089:354.480 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:354.560 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 089:354.920 Data: 01 -T98A8 089:355.040 - 0.560ms returns 1 (0x1) -T98A8 089:356.688 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:356.784 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 089:357.248 Data: 01 -T98A8 089:357.400 - 0.717ms returns 1 (0x1) -T98A8 089:357.488 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:357.576 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 089:358.072 Data: 01 -T98A8 089:358.672 - 1.175ms returns 1 (0x1) -T98A8 089:359.048 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 089:359.744 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 089:360.504 Data: 00 00 -T98A8 089:360.688 - 1.644ms returns 2 (0x2) -T98A8 089:360.792 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 089:360.896 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 089:361.352 Data: 00 00 -T98A8 089:361.504 - 0.707ms returns 2 (0x2) -T98A8 089:361.712 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:361.792 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 089:362.216 Data: 40 C4 01 20 -T98A8 089:362.368 - 0.653ms returns 4 (0x4) -T98A8 089:362.536 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:362.640 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 089:363.088 Data: 01 00 00 00 -T98A8 089:363.240 - 0.702ms returns 4 (0x4) -T98A8 089:363.328 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:363.392 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 089:363.744 Data: 00 00 00 00 -T98A8 089:363.872 - 0.548ms returns 4 (0x4) -T98A8 089:363.952 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:364.064 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 089:364.440 Data: 00 00 00 00 -T98A8 089:364.552 - 0.599ms returns 4 (0x4) -T98A8 089:364.632 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:364.696 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 089:365.072 Data: 80 56 43 BC -T98A8 089:365.192 - 0.560ms returns 4 (0x4) -T98A8 089:365.264 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:365.360 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 089:365.784 Data: 00 00 00 00 -T98A8 089:365.928 - 0.662ms returns 4 (0x4) -T98A8 089:366.024 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:366.128 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 089:366.608 Data: 01 -T98A8 089:366.752 - 0.728ms returns 1 (0x1) -T98A8 089:366.936 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:367.072 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 089:367.576 Data: 01 -T98A8 089:367.720 - 0.779ms returns 1 (0x1) -T98A8 089:367.800 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:367.888 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 089:368.336 Data: 03 -T98A8 089:368.464 - 0.667ms returns 1 (0x1) -T98A8 089:368.552 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:368.624 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 089:369.072 Data: 01 -T98A8 089:369.304 - 0.751ms returns 1 (0x1) -T98A8 089:369.448 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:369.616 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 089:370.160 Data: 02 -T98A8 089:370.352 - 0.903ms returns 1 (0x1) -T98A8 089:370.496 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:370.640 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 089:371.088 Data: 01 -T98A8 089:371.248 - 0.754ms returns 1 (0x1) -T98A8 089:372.040 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:372.128 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 089:372.480 Data: 01 -T98A8 089:372.608 - 0.565ms returns 1 (0x1) -T98A8 089:372.688 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:372.760 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 089:373.152 Data: 01 -T98A8 089:373.272 - 0.580ms returns 1 (0x1) -T98A8 089:373.424 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:373.512 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 089:373.888 Data: 00 00 00 00 -T98A8 089:374.000 - 0.578ms returns 4 (0x4) -T98A8 089:374.160 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:374.232 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 089:374.608 Data: 00 -T98A8 089:374.704 - 0.550ms returns 1 (0x1) -T98A8 089:375.088 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:375.176 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 089:375.576 Data: 00 -T98A8 089:375.880 - 0.794ms returns 1 (0x1) -T98A8 089:376.048 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:376.128 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 089:376.472 Data: 10 CF 01 20 -T98A8 089:376.616 - 0.580ms returns 4 (0x4) -T98A8 089:376.736 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:376.816 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 089:377.224 Data: 49 CF 01 20 -T98A8 089:377.360 - 0.622ms returns 4 (0x4) -T358C 089:377.552 JLINK_IsHalted() -T358C 089:377.896 - 0.347ms returns FALSE -T358C 089:478.312 JLINK_HasError() -T358C 089:478.448 JLINK_IsHalted() -T358C 089:479.424 - 0.982ms returns FALSE -T358C 089:580.464 JLINK_HasError() -T358C 089:580.592 JLINK_IsHalted() -T358C 089:581.008 - 0.410ms returns FALSE -T358C 089:681.824 JLINK_HasError() -T358C 089:682.064 JLINK_IsHalted() -T358C 089:682.792 - 0.723ms returns FALSE -T358C 089:783.304 JLINK_HasError() -T358C 089:783.496 JLINK_IsHalted() -T358C 089:783.920 - 0.421ms returns FALSE -T358C 089:885.792 JLINK_HasError() -T358C 089:885.968 JLINK_HasError() -T358C 089:886.032 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 089:886.112 Data: F7 AE 0E 05 -T358C 089:886.200 Debug reg: DWT_CYCCNT -T358C 089:886.288 - 0.263ms returns 1 (0x1) -T98A8 089:886.608 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 089:886.784 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 089:887.464 Data: 0F 00 FC 1F 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 089:887.624 - 1.014ms returns 25 (0x19) -T98A8 089:887.736 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:887.824 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 089:888.256 Data: 02 -T98A8 089:888.432 - 0.688ms returns 1 (0x1) -T98A8 089:888.656 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:888.760 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 089:889.472 Data: 00 00 00 00 -T98A8 089:889.680 - 1.023ms returns 4 (0x4) -T98A8 089:889.816 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:889.904 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 089:890.416 Data: 00 00 00 00 -T98A8 089:890.592 - 0.772ms returns 4 (0x4) -T98A8 089:890.680 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:890.808 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 089:891.304 Data: 80 56 43 BC -T98A8 089:891.408 - 0.730ms returns 4 (0x4) -T98A8 089:891.480 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:891.560 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 089:892.048 Data: 00 00 00 00 -T98A8 089:892.152 - 0.671ms returns 4 (0x4) -T98A8 089:892.232 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:892.304 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 089:892.680 Data: 01 -T98A8 089:892.792 - 0.561ms returns 1 (0x1) -T98A8 089:892.872 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:892.944 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 089:893.312 Data: 01 -T98A8 089:893.424 - 0.553ms returns 1 (0x1) -T98A8 089:893.488 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:893.552 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 089:893.912 Data: 02 -T98A8 089:894.072 - 0.587ms returns 1 (0x1) -T98A8 089:894.160 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:894.248 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 089:894.640 Data: 01 -T98A8 089:894.736 - 0.574ms returns 1 (0x1) -T98A8 089:894.800 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:894.888 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 089:895.288 Data: 03 -T98A8 089:895.392 - 0.592ms returns 1 (0x1) -T98A8 089:895.464 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:895.528 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 089:895.888 Data: 01 -T98A8 089:896.040 - 0.572ms returns 1 (0x1) -T98A8 089:896.120 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:896.200 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 089:896.640 Data: 01 -T98A8 089:896.744 - 0.622ms returns 1 (0x1) -T98A8 089:896.816 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:896.880 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 089:897.224 Data: 02 -T98A8 089:897.352 - 0.537ms returns 1 (0x1) -T98A8 089:898.224 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 089:898.328 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 089:898.752 Data: 00 00 -T98A8 089:898.864 - 0.634ms returns 2 (0x2) -T98A8 089:898.928 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 089:899.016 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 089:899.408 Data: 00 00 -T98A8 089:899.536 - 0.601ms returns 2 (0x2) -T98A8 089:899.744 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:899.816 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 089:900.192 Data: 40 C4 01 20 -T98A8 089:900.352 - 0.609ms returns 4 (0x4) -T98A8 089:900.464 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:900.528 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 089:901.336 Data: 01 00 00 00 -T98A8 089:901.472 - 1.011ms returns 4 (0x4) -T98A8 089:901.576 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:901.656 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 089:902.024 Data: 00 00 00 00 -T98A8 089:902.176 - 0.600ms returns 4 (0x4) -T98A8 089:902.264 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:902.344 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 089:902.704 Data: 00 00 00 00 -T98A8 089:902.816 - 0.550ms returns 4 (0x4) -T98A8 089:902.920 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:902.984 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 089:903.328 Data: 80 56 43 BC -T98A8 089:903.424 - 0.511ms returns 4 (0x4) -T98A8 089:903.496 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:903.560 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 089:904.016 Data: 00 00 00 00 -T98A8 089:904.184 - 0.690ms returns 4 (0x4) -T98A8 089:904.320 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:904.400 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 089:904.792 Data: 01 -T98A8 089:904.904 - 0.583ms returns 1 (0x1) -T98A8 089:904.976 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:905.040 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 089:905.400 Data: 01 -T98A8 089:905.544 - 0.567ms returns 1 (0x1) -T98A8 089:905.616 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:905.688 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 089:906.040 Data: 03 -T98A8 089:906.160 - 0.541ms returns 1 (0x1) -T98A8 089:906.232 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:906.296 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 089:906.648 Data: 01 -T98A8 089:906.744 - 0.515ms returns 1 (0x1) -T98A8 089:906.816 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:906.880 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 089:907.800 Data: 02 -T98A8 089:907.920 - 1.100ms returns 1 (0x1) -T98A8 089:907.992 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:908.056 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 089:908.392 Data: 01 -T98A8 089:908.496 - 0.500ms returns 1 (0x1) -T98A8 089:908.592 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:908.664 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 089:909.248 Data: 01 -T98A8 089:909.376 - 0.782ms returns 1 (0x1) -T98A8 089:909.456 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:909.528 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 089:909.984 Data: 01 -T98A8 089:910.152 - 0.688ms returns 1 (0x1) -T98A8 089:910.352 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:910.448 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 089:910.832 Data: 00 00 00 00 -T98A8 089:910.936 - 0.582ms returns 4 (0x4) -T98A8 089:911.088 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:911.160 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 089:911.528 Data: 00 -T98A8 089:911.632 - 0.534ms returns 1 (0x1) -T98A8 089:912.000 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 089:912.080 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 089:912.416 Data: 00 -T98A8 089:912.544 - 0.548ms returns 1 (0x1) -T98A8 089:912.752 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:912.840 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 089:913.216 Data: 10 CF 01 20 -T98A8 089:913.328 - 0.576ms returns 4 (0x4) -T98A8 089:913.424 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 089:913.488 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 089:914.296 Data: 49 CF 01 20 -T98A8 089:914.456 - 1.035ms returns 4 (0x4) -T358C 089:914.704 JLINK_IsHalted() -T358C 089:915.088 - 0.383ms returns FALSE -T358C 090:017.040 JLINK_HasError() -T358C 090:017.200 JLINK_IsHalted() -T358C 090:017.688 - 0.488ms returns FALSE -T358C 090:118.096 JLINK_HasError() -T358C 090:118.392 JLINK_IsHalted() -T358C 090:119.040 - 0.646ms returns FALSE -T358C 090:219.696 JLINK_HasError() -T358C 090:219.848 JLINK_IsHalted() -T358C 090:220.256 - 0.410ms returns FALSE -T358C 090:321.024 JLINK_HasError() -T358C 090:321.176 JLINK_IsHalted() -T358C 090:321.680 - 0.506ms returns FALSE -T358C 090:422.712 JLINK_HasError() -T358C 090:422.984 JLINK_HasError() -T358C 090:423.072 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 090:423.168 Data: F7 AE 0E 05 -T358C 090:423.248 Debug reg: DWT_CYCCNT -T358C 090:423.328 - 0.260ms returns 1 (0x1) -T98A8 090:425.480 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 090:425.616 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 090:426.208 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 090:426.344 - 0.862ms returns 25 (0x19) -T98A8 090:426.432 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:426.504 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 090:426.864 Data: 02 -T98A8 090:427.000 - 0.565ms returns 1 (0x1) -T98A8 090:427.120 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:427.184 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 090:427.680 Data: 00 00 00 00 -T98A8 090:427.832 - 0.714ms returns 4 (0x4) -T98A8 090:427.920 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:428.016 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 090:428.512 Data: 00 00 00 00 -T98A8 090:428.656 - 0.728ms returns 4 (0x4) -T98A8 090:428.736 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:428.816 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 090:429.304 Data: 80 56 43 BC -T98A8 090:429.424 - 0.687ms returns 4 (0x4) -T98A8 090:429.512 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:429.592 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 090:430.080 Data: 00 00 00 00 -T98A8 090:430.320 - 0.805ms returns 4 (0x4) -T98A8 090:430.416 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:430.496 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 090:430.872 Data: 01 -T98A8 090:431.024 - 0.606ms returns 1 (0x1) -T98A8 090:431.088 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:431.152 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 090:431.504 Data: 01 -T98A8 090:431.608 - 0.518ms returns 1 (0x1) -T98A8 090:431.672 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:431.736 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 090:432.080 Data: 02 -T98A8 090:432.200 - 0.520ms returns 1 (0x1) -T98A8 090:432.272 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:432.336 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 090:432.688 Data: 01 -T98A8 090:432.808 - 0.538ms returns 1 (0x1) -T98A8 090:432.880 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:432.944 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 090:433.296 Data: 03 -T98A8 090:433.424 - 0.542ms returns 1 (0x1) -T98A8 090:433.488 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:433.552 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 090:434.128 Data: 01 -T98A8 090:434.256 - 0.762ms returns 1 (0x1) -T98A8 090:434.320 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:434.400 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 090:434.800 Data: 01 -T98A8 090:434.928 - 0.600ms returns 1 (0x1) -T98A8 090:434.992 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:435.064 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 090:435.416 Data: 01 -T98A8 090:435.544 - 0.548ms returns 1 (0x1) -T98A8 090:436.336 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 090:436.432 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 090:436.848 Data: 00 00 -T98A8 090:437.000 - 0.666ms returns 2 (0x2) -T98A8 090:437.072 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 090:437.152 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 090:437.656 Data: 00 00 -T98A8 090:437.776 - 0.695ms returns 2 (0x2) -T98A8 090:437.952 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:438.024 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 090:438.408 Data: 40 C4 01 20 -T98A8 090:438.544 - 0.592ms returns 4 (0x4) -T98A8 090:438.640 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:438.704 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 090:439.248 Data: 01 00 00 00 -T98A8 090:439.352 - 0.713ms returns 4 (0x4) -T98A8 090:439.440 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:439.504 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 090:439.856 Data: 00 00 00 00 -T98A8 090:440.008 - 0.569ms returns 4 (0x4) -T98A8 090:440.096 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:440.176 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 090:440.544 Data: 00 00 00 00 -T98A8 090:440.720 - 0.616ms returns 4 (0x4) -T98A8 090:440.832 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:440.912 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 090:441.272 Data: 80 56 43 BC -T98A8 090:441.424 - 0.592ms returns 4 (0x4) -T98A8 090:441.512 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:441.584 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 090:441.968 Data: 00 00 00 00 -T98A8 090:442.072 - 0.561ms returns 4 (0x4) -T98A8 090:442.160 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:442.224 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 090:442.552 Data: 01 -T98A8 090:442.656 - 0.500ms returns 1 (0x1) -T98A8 090:442.728 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:442.800 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 090:443.144 Data: 01 -T98A8 090:443.240 - 0.509ms returns 1 (0x1) -T98A8 090:443.304 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:443.368 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 090:443.712 Data: 03 -T98A8 090:443.872 - 0.573ms returns 1 (0x1) -T98A8 090:443.960 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:444.040 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 090:444.432 Data: 01 -T98A8 090:444.568 - 0.609ms returns 1 (0x1) -T98A8 090:444.656 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:444.728 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 090:445.112 Data: 02 -T98A8 090:445.232 - 0.582ms returns 1 (0x1) -T98A8 090:445.312 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:445.384 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 090:445.728 Data: 01 -T98A8 090:445.840 - 0.520ms returns 1 (0x1) -T98A8 090:445.912 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:445.984 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 090:446.336 Data: 01 -T98A8 090:446.448 - 0.529ms returns 1 (0x1) -T98A8 090:446.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:446.592 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 090:446.968 Data: 01 -T98A8 090:447.080 - 0.554ms returns 1 (0x1) -T98A8 090:447.152 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:447.280 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 090:447.680 Data: 00 00 00 00 -T98A8 090:447.816 - 0.659ms returns 4 (0x4) -T98A8 090:447.976 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:448.048 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 090:448.376 Data: 00 -T98A8 090:448.496 - 0.520ms returns 1 (0x1) -T98A8 090:448.856 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:448.960 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 090:449.352 Data: 00 -T98A8 090:449.496 - 0.644ms returns 1 (0x1) -T98A8 090:449.712 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:449.840 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 090:450.224 Data: 10 CF 01 20 -T98A8 090:450.368 - 0.652ms returns 4 (0x4) -T98A8 090:450.480 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:450.568 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 090:450.992 Data: 49 CF 01 20 -T98A8 090:451.120 - 0.637ms returns 4 (0x4) -T358C 090:451.344 JLINK_IsHalted() -T358C 090:451.696 - 0.349ms returns FALSE -T358C 090:552.464 JLINK_HasError() -T358C 090:552.664 JLINK_IsHalted() -T358C 090:553.160 - 0.488ms returns FALSE -T358C 090:653.560 JLINK_HasError() -T358C 090:653.752 JLINK_IsHalted() -T358C 090:654.192 - 0.441ms returns FALSE -T358C 090:755.144 JLINK_HasError() -T358C 090:755.272 JLINK_IsHalted() -T358C 090:755.696 - 0.418ms returns FALSE -T358C 090:856.016 JLINK_HasError() -T358C 090:856.144 JLINK_IsHalted() -T358C 090:856.528 - 0.386ms returns FALSE -T358C 090:956.720 JLINK_HasError() -T358C 090:956.880 JLINK_HasError() -T358C 090:956.944 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 090:957.160 Data: F7 AE 0E 05 -T358C 090:957.264 Debug reg: DWT_CYCCNT -T358C 090:957.368 - 0.420ms returns 1 (0x1) -T98A8 090:957.648 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 090:957.776 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 090:958.352 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 090:958.528 - 0.877ms returns 25 (0x19) -T98A8 090:958.672 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:958.792 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 090:959.152 Data: 02 -T98A8 090:959.256 - 0.579ms returns 1 (0x1) -T98A8 090:959.376 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:959.440 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 090:959.944 Data: 00 00 00 00 -T98A8 090:960.040 - 0.664ms returns 4 (0x4) -T98A8 090:960.112 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:960.176 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 090:960.696 Data: 00 00 00 00 -T98A8 090:960.808 - 0.697ms returns 4 (0x4) -T98A8 090:960.880 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:960.952 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 090:961.440 Data: 80 56 43 BC -T98A8 090:961.536 - 0.657ms returns 4 (0x4) -T98A8 090:961.608 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:961.680 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 090:962.224 Data: 00 00 00 00 -T98A8 090:962.416 - 0.811ms returns 4 (0x4) -T98A8 090:962.544 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:962.608 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 090:963.152 Data: 01 -T98A8 090:963.304 - 0.759ms returns 1 (0x1) -T98A8 090:963.376 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:963.456 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 090:963.896 Data: 01 -T98A8 090:964.040 - 0.663ms returns 1 (0x1) -T98A8 090:964.112 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:964.176 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 090:964.648 Data: 02 -T98A8 090:964.768 - 0.655ms returns 1 (0x1) -T98A8 090:964.872 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:964.968 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 090:965.560 Data: 01 -T98A8 090:965.864 - 0.990ms returns 1 (0x1) -T98A8 090:965.944 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:966.024 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 090:966.400 Data: 03 -T98A8 090:966.520 - 0.580ms returns 1 (0x1) -T98A8 090:966.592 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:966.664 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 090:967.000 Data: 01 -T98A8 090:967.104 - 0.507ms returns 1 (0x1) -T98A8 090:967.168 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:967.232 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 090:967.592 Data: 01 -T98A8 090:967.688 - 0.520ms returns 1 (0x1) -T98A8 090:967.752 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:967.816 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 090:968.264 Data: 01 -T98A8 090:968.360 - 0.604ms returns 1 (0x1) -T98A8 090:969.104 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 090:969.208 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 090:969.728 Data: 00 00 -T98A8 090:969.872 - 0.774ms returns 2 (0x2) -T98A8 090:969.968 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 090:970.032 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 090:970.552 Data: 00 00 -T98A8 090:970.816 - 0.854ms returns 2 (0x2) -T98A8 090:971.048 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:971.112 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 090:971.504 Data: 40 C4 01 20 -T98A8 090:971.664 - 0.618ms returns 4 (0x4) -T98A8 090:971.776 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:971.856 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 090:972.208 Data: 01 00 00 00 -T98A8 090:972.368 - 0.589ms returns 4 (0x4) -T98A8 090:972.472 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:972.624 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 090:973.576 Data: 00 00 00 00 -T98A8 090:973.968 - 1.497ms returns 4 (0x4) -T98A8 090:974.152 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:974.288 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 090:975.056 Data: 00 00 00 00 -T98A8 090:975.728 - 1.579ms returns 4 (0x4) -T98A8 090:976.168 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:976.432 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 090:976.864 Data: 80 56 43 BC -T98A8 090:977.016 - 0.856ms returns 4 (0x4) -T98A8 090:977.104 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:977.200 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 090:977.600 Data: 00 00 00 00 -T98A8 090:977.808 - 0.704ms returns 4 (0x4) -T98A8 090:977.976 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:978.064 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 090:978.480 Data: 01 -T98A8 090:978.608 - 0.626ms returns 1 (0x1) -T98A8 090:978.672 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:978.736 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 090:979.104 Data: 01 -T98A8 090:979.264 - 0.590ms returns 1 (0x1) -T98A8 090:979.352 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:979.440 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 090:979.856 Data: 03 -T98A8 090:979.992 - 0.642ms returns 1 (0x1) -T98A8 090:980.080 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:980.144 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 090:980.520 Data: 01 -T98A8 090:980.688 - 0.606ms returns 1 (0x1) -T98A8 090:980.784 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:980.872 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 090:981.256 Data: 02 -T98A8 090:981.368 - 0.591ms returns 1 (0x1) -T98A8 090:981.440 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:981.512 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 090:981.840 Data: 01 -T98A8 090:981.936 - 0.498ms returns 1 (0x1) -T98A8 090:982.000 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:982.064 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 090:982.408 Data: 01 -T98A8 090:982.552 - 0.545ms returns 1 (0x1) -T98A8 090:982.640 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:982.736 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 090:983.120 Data: 01 -T98A8 090:983.280 - 0.629ms returns 1 (0x1) -T98A8 090:983.360 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:983.440 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 090:984.112 Data: 00 00 00 00 -T98A8 090:984.264 - 0.901ms returns 4 (0x4) -T98A8 090:984.448 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:984.528 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 090:984.936 Data: 00 -T98A8 090:985.088 - 0.640ms returns 1 (0x1) -T98A8 090:985.472 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 090:985.544 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 090:985.928 Data: 00 -T98A8 090:986.056 - 0.585ms returns 1 (0x1) -T98A8 090:986.208 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:986.288 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 090:986.736 Data: 10 CF 01 20 -T98A8 090:986.864 - 0.656ms returns 4 (0x4) -T98A8 090:986.960 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 090:987.032 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 090:987.376 Data: 49 CF 01 20 -T98A8 090:987.520 - 0.553ms returns 4 (0x4) -T358C 090:987.776 JLINK_IsHalted() -T358C 090:988.496 - 0.715ms returns FALSE -T358C 091:089.040 JLINK_HasError() -T358C 091:089.272 JLINK_IsHalted() -T358C 091:089.760 - 0.489ms returns FALSE -T358C 091:190.928 JLINK_HasError() -T358C 091:191.088 JLINK_IsHalted() -T358C 091:191.472 - 0.383ms returns FALSE -T358C 091:291.856 JLINK_HasError() -T358C 091:291.992 JLINK_IsHalted() -T358C 091:292.592 - 0.597ms returns FALSE -T358C 091:393.112 JLINK_HasError() -T358C 091:393.392 JLINK_IsHalted() -T358C 091:393.936 - 0.539ms returns FALSE -T358C 091:494.128 JLINK_HasError() -T358C 091:494.288 JLINK_HasError() -T358C 091:494.352 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 091:494.424 Data: F7 AE 0E 05 -T358C 091:494.512 Debug reg: DWT_CYCCNT -T358C 091:494.608 - 0.260ms returns 1 (0x1) -T98A8 091:495.136 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 091:495.312 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 091:496.024 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 091:496.240 - 1.107ms returns 25 (0x19) -T98A8 091:496.400 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:496.560 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 091:496.976 Data: 02 -T98A8 091:497.128 - 0.724ms returns 1 (0x1) -T98A8 091:497.296 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:497.384 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 091:497.872 Data: 00 00 00 00 -T98A8 091:497.992 - 0.694ms returns 4 (0x4) -T98A8 091:498.064 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:498.136 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 091:498.608 Data: 00 00 00 00 -T98A8 091:498.704 - 0.635ms returns 4 (0x4) -T98A8 091:498.768 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:498.832 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 091:499.280 Data: 80 56 43 BC -T98A8 091:499.376 - 0.612ms returns 4 (0x4) -T98A8 091:499.448 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:499.504 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 091:500.000 Data: 00 00 00 00 -T98A8 091:500.104 - 0.651ms returns 4 (0x4) -T98A8 091:500.168 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:500.240 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 091:500.624 Data: 01 -T98A8 091:500.912 - 0.737ms returns 1 (0x1) -T98A8 091:501.056 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:501.200 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 091:501.736 Data: 01 -T98A8 091:501.848 - 0.791ms returns 1 (0x1) -T98A8 091:501.920 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:501.984 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 091:502.376 Data: 02 -T98A8 091:502.480 - 0.561ms returns 1 (0x1) -T98A8 091:502.544 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:502.624 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 091:503.184 Data: 01 -T98A8 091:503.352 - 0.807ms returns 1 (0x1) -T98A8 091:503.448 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:503.536 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 091:503.896 Data: 03 -T98A8 091:504.008 - 0.556ms returns 1 (0x1) -T98A8 091:504.080 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:504.144 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 091:504.488 Data: 01 -T98A8 091:504.600 - 0.523ms returns 1 (0x1) -T98A8 091:504.664 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:504.728 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 091:505.080 Data: 01 -T98A8 091:505.176 - 0.510ms returns 1 (0x1) -T98A8 091:505.240 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:505.304 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 091:505.728 Data: 01 -T98A8 091:505.824 - 0.581ms returns 1 (0x1) -T98A8 091:505.888 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 091:505.952 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 091:506.328 Data: 00 00 -T98A8 091:506.416 - 0.532ms returns 2 (0x2) -T98A8 091:506.488 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 091:506.552 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 091:506.928 Data: 00 00 -T98A8 091:507.024 - 0.533ms returns 2 (0x2) -T98A8 091:507.256 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:507.328 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 091:507.728 Data: 40 C4 01 20 -T98A8 091:507.832 - 0.575ms returns 4 (0x4) -T98A8 091:507.952 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:508.016 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 091:508.368 Data: 01 00 00 00 -T98A8 091:508.496 - 0.549ms returns 4 (0x4) -T98A8 091:508.584 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:508.656 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 091:509.000 Data: 00 00 00 00 -T98A8 091:509.136 - 0.547ms returns 4 (0x4) -T98A8 091:509.224 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:509.296 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 091:509.640 Data: 00 00 00 00 -T98A8 091:509.784 - 0.567ms returns 4 (0x4) -T98A8 091:509.896 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:509.968 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 091:510.392 Data: 80 56 43 BC -T98A8 091:510.512 - 0.620ms returns 4 (0x4) -T98A8 091:510.592 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:510.672 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 091:511.048 Data: 00 00 00 00 -T98A8 091:511.144 - 0.556ms returns 4 (0x4) -T98A8 091:511.232 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:511.296 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 091:511.720 Data: 01 -T98A8 091:511.824 - 0.589ms returns 1 (0x1) -T98A8 091:511.888 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:511.952 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 091:512.336 Data: 01 -T98A8 091:512.448 - 0.560ms returns 1 (0x1) -T98A8 091:512.520 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:512.584 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 091:512.936 Data: 03 -T98A8 091:513.032 - 0.516ms returns 1 (0x1) -T98A8 091:513.096 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:513.160 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 091:513.544 Data: 01 -T98A8 091:513.632 - 0.538ms returns 1 (0x1) -T98A8 091:513.704 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:513.768 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 091:514.096 Data: 02 -T98A8 091:514.192 - 0.490ms returns 1 (0x1) -T98A8 091:514.256 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:514.320 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 091:514.728 Data: 01 -T98A8 091:514.824 - 0.566ms returns 1 (0x1) -T98A8 091:514.888 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:514.952 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 091:515.304 Data: 01 -T98A8 091:515.464 - 0.575ms returns 1 (0x1) -T98A8 091:515.544 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:515.640 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 091:516.040 Data: 01 -T98A8 091:516.200 - 0.649ms returns 1 (0x1) -T98A8 091:516.280 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:516.368 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 091:516.752 Data: 00 00 00 00 -T98A8 091:516.864 - 0.581ms returns 4 (0x4) -T98A8 091:517.008 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:517.080 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 091:517.448 Data: 00 -T98A8 091:517.624 - 0.617ms returns 1 (0x1) -T98A8 091:518.040 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 091:518.128 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 091:518.520 Data: 00 -T98A8 091:518.672 - 0.628ms returns 1 (0x1) -T98A8 091:519.160 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:519.264 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 091:519.616 Data: 10 CF 01 20 -T98A8 091:519.752 - 0.589ms returns 4 (0x4) -T98A8 091:519.856 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 091:519.920 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 091:520.304 Data: 49 CF 01 20 -T98A8 091:520.456 - 0.603ms returns 4 (0x4) -T358C 091:520.664 JLINK_IsHalted() -T358C 091:521.040 - 0.379ms returns FALSE -T358C 091:622.200 JLINK_HasError() -T358C 091:622.360 JLINK_IsHalted() -T358C 091:622.856 - 0.488ms returns FALSE -T358C 091:723.056 JLINK_HasError() -T358C 091:723.240 JLINK_IsHalted() -T358C 091:723.680 - 0.443ms returns FALSE -T358C 091:824.784 JLINK_HasError() -T358C 091:824.960 JLINK_IsHalted() -T358C 091:825.432 - 0.467ms returns FALSE -T358C 091:926.368 JLINK_HasError() -T358C 091:926.632 JLINK_IsHalted() -T358C 091:927.096 - 0.468ms returns FALSE -T358C 092:144.768 JLINK_HasError() -T358C 092:145.616 JLINK_HasError() -T358C 092:145.904 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 092:146.032 Data: F7 AE 0E 05 -T358C 092:146.520 Debug reg: DWT_CYCCNT -T358C 092:146.736 - 0.828ms returns 1 (0x1) -T98A8 092:155.152 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 092:155.408 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 092:156.064 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 092:156.176 - 1.021ms returns 25 (0x19) -T98A8 092:156.256 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:156.304 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 092:156.624 Data: 02 -T98A8 092:156.712 - 0.455ms returns 1 (0x1) -T98A8 092:156.864 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:156.912 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 092:157.424 Data: 00 00 00 00 -T98A8 092:157.536 - 0.671ms returns 4 (0x4) -T98A8 092:157.616 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:157.680 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 092:158.144 Data: 00 00 00 00 -T98A8 092:158.224 - 0.614ms returns 4 (0x4) -T98A8 092:158.280 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:158.328 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 092:158.784 Data: 80 56 43 BC -T98A8 092:158.904 - 0.624ms returns 4 (0x4) -T98A8 092:158.976 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:159.048 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 092:159.528 Data: 00 00 00 00 -T98A8 092:159.632 - 0.651ms returns 4 (0x4) -T98A8 092:159.680 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:159.728 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 092:160.304 Data: 01 -T98A8 092:160.384 - 0.702ms returns 1 (0x1) -T98A8 092:160.448 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:160.496 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 092:160.816 Data: 01 -T98A8 092:160.936 - 0.488ms returns 1 (0x1) -T98A8 092:161.000 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:161.064 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 092:161.456 Data: 02 -T98A8 092:161.648 - 0.643ms returns 1 (0x1) -T98A8 092:161.712 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:161.784 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 092:162.192 Data: 01 -T98A8 092:162.320 - 0.599ms returns 1 (0x1) -T98A8 092:162.400 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:162.472 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 092:162.936 Data: 03 -T98A8 092:163.056 - 0.656ms returns 1 (0x1) -T98A8 092:163.128 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:163.200 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 092:163.552 Data: 01 -T98A8 092:163.752 - 0.618ms returns 1 (0x1) -T98A8 092:163.808 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:163.872 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 092:164.208 Data: 01 -T98A8 092:164.336 - 0.532ms returns 1 (0x1) -T98A8 092:164.416 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:164.496 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 092:164.880 Data: 02 -T98A8 092:165.104 - 0.681ms returns 1 (0x1) -T98A8 092:166.528 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 092:166.624 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 092:167.032 Data: 00 00 -T98A8 092:167.152 - 0.617ms returns 2 (0x2) -T98A8 092:167.200 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 092:167.248 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 092:167.648 Data: 00 00 -T98A8 092:167.744 - 0.541ms returns 2 (0x2) -T98A8 092:168.008 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:168.072 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 092:168.472 Data: 40 C4 01 20 -T98A8 092:168.640 - 0.631ms returns 4 (0x4) -T98A8 092:168.800 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:168.936 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 092:169.416 Data: 01 00 00 00 -T98A8 092:169.696 - 0.895ms returns 4 (0x4) -T98A8 092:169.920 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:170.064 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 092:170.544 Data: 00 00 00 00 -T98A8 092:170.664 - 0.745ms returns 4 (0x4) -T98A8 092:170.760 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:170.848 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 092:171.264 Data: 00 00 00 00 -T98A8 092:171.376 - 0.611ms returns 4 (0x4) -T98A8 092:171.448 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:171.544 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 092:171.896 Data: 80 56 43 BC -T98A8 092:172.000 - 0.548ms returns 4 (0x4) -T98A8 092:172.064 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:172.160 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 092:172.520 Data: 00 00 00 00 -T98A8 092:172.632 - 0.574ms returns 4 (0x4) -T98A8 092:172.768 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:172.840 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 092:173.168 Data: 01 -T98A8 092:173.264 - 0.492ms returns 1 (0x1) -T98A8 092:173.320 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:173.368 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 092:173.952 Data: 01 -T98A8 092:174.048 - 0.731ms returns 1 (0x1) -T98A8 092:174.096 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:174.152 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 092:174.480 Data: 03 -T98A8 092:174.640 - 0.542ms returns 1 (0x1) -T98A8 092:174.736 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:174.816 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 092:175.216 Data: 01 -T98A8 092:175.376 - 0.649ms returns 1 (0x1) -T98A8 092:175.472 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:175.552 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 092:175.936 Data: 02 -T98A8 092:176.080 - 0.615ms returns 1 (0x1) -T98A8 092:176.176 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:176.264 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 092:176.784 Data: 01 -T98A8 092:177.032 - 0.849ms returns 1 (0x1) -T98A8 092:177.160 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:177.264 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 092:177.696 Data: 01 -T98A8 092:177.824 - 0.664ms returns 1 (0x1) -T98A8 092:177.920 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:178.008 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 092:178.448 Data: 03 -T98A8 092:178.640 - 0.724ms returns 1 (0x1) -T98A8 092:179.856 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:179.968 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 092:180.360 Data: 00 00 00 00 -T98A8 092:180.568 - 0.712ms returns 4 (0x4) -T98A8 092:180.880 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:180.952 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 092:181.280 Data: 00 -T98A8 092:181.376 - 0.497ms returns 1 (0x1) -T98A8 092:181.664 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:181.728 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 092:182.048 Data: 00 -T98A8 092:182.120 - 0.455ms returns 1 (0x1) -T98A8 092:182.248 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:182.304 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 092:182.696 Data: 10 CF 01 20 -T98A8 092:182.864 - 0.620ms returns 4 (0x4) -T98A8 092:183.024 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:183.104 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 092:183.536 Data: 49 CF 01 20 -T98A8 092:183.696 - 0.680ms returns 4 (0x4) -T358C 092:184.064 JLINK_IsHalted() -T358C 092:184.448 - 0.383ms returns FALSE -T358C 092:285.336 JLINK_HasError() -T358C 092:285.464 JLINK_IsHalted() -T358C 092:285.792 - 0.331ms returns FALSE -T358C 092:386.592 JLINK_HasError() -T358C 092:386.784 JLINK_IsHalted() -T358C 092:387.216 - 0.427ms returns FALSE -T358C 092:488.152 JLINK_HasError() -T358C 092:488.304 JLINK_IsHalted() -T358C 092:488.688 - 0.380ms returns FALSE -T358C 092:589.024 JLINK_HasError() -T358C 092:589.240 JLINK_IsHalted() -T358C 092:589.904 - 0.659ms returns FALSE -T358C 092:690.064 JLINK_HasError() -T358C 092:690.192 JLINK_HasError() -T358C 092:690.256 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 092:690.344 Data: F7 AE 0E 05 -T358C 092:690.448 Debug reg: DWT_CYCCNT -T358C 092:690.648 - 0.388ms returns 1 (0x1) -T98A8 092:690.872 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 092:691.056 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 092:691.688 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 092:691.856 - 0.983ms returns 25 (0x19) -T98A8 092:691.960 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:692.016 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 092:692.320 Data: 02 -T98A8 092:692.384 - 0.421ms returns 1 (0x1) -T98A8 092:692.456 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:692.496 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 092:692.928 Data: 00 00 00 00 -T98A8 092:693.056 - 0.601ms returns 4 (0x4) -T98A8 092:693.152 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:693.304 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 092:693.848 Data: 00 00 00 00 -T98A8 092:693.968 - 0.812ms returns 4 (0x4) -T98A8 092:694.040 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:694.120 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 092:694.672 Data: 80 56 43 BC -T98A8 092:694.864 - 0.823ms returns 4 (0x4) -T98A8 092:694.960 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:695.056 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 092:695.568 Data: 00 00 00 00 -T98A8 092:695.696 - 0.733ms returns 4 (0x4) -T98A8 092:695.752 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:695.792 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 092:696.096 Data: 01 -T98A8 092:696.160 - 0.410ms returns 1 (0x1) -T98A8 092:696.208 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:696.248 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 092:696.544 Data: 01 -T98A8 092:696.608 - 0.403ms returns 1 (0x1) -T98A8 092:696.656 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:696.704 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 092:697.048 Data: 02 -T98A8 092:697.160 - 0.501ms returns 1 (0x1) -T98A8 092:697.232 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:697.304 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 092:697.664 Data: 01 -T98A8 092:697.776 - 0.540ms returns 1 (0x1) -T98A8 092:697.840 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:697.912 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 092:698.296 Data: 03 -T98A8 092:698.400 - 0.558ms returns 1 (0x1) -T98A8 092:698.480 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:698.544 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 092:698.936 Data: 01 -T98A8 092:699.072 - 0.596ms returns 1 (0x1) -T98A8 092:699.176 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:699.312 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 092:699.808 Data: 01 -T98A8 092:700.016 - 0.836ms returns 1 (0x1) -T98A8 092:700.160 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:700.288 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 092:700.848 Data: 01 -T98A8 092:701.024 - 0.865ms returns 1 (0x1) -T98A8 092:701.664 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 092:701.728 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 092:702.184 Data: 00 00 -T98A8 092:702.288 - 0.628ms returns 2 (0x2) -T98A8 092:702.360 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 092:702.416 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 092:702.800 Data: 00 00 -T98A8 092:702.928 - 0.569ms returns 2 (0x2) -T98A8 092:703.072 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:703.144 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 092:703.448 Data: 40 C4 01 20 -T98A8 092:703.528 - 0.455ms returns 4 (0x4) -T98A8 092:703.600 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:703.648 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 092:703.984 Data: 01 00 00 00 -T98A8 092:704.048 - 0.453ms returns 4 (0x4) -T98A8 092:704.112 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:704.152 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 092:704.472 Data: 00 00 00 00 -T98A8 092:704.536 - 0.428ms returns 4 (0x4) -T98A8 092:704.592 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:704.632 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 092:704.952 Data: 00 00 00 00 -T98A8 092:705.024 - 0.433ms returns 4 (0x4) -T98A8 092:705.080 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:705.128 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 092:705.496 Data: 80 56 43 BC -T98A8 092:705.568 - 0.487ms returns 4 (0x4) -T98A8 092:705.616 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:705.656 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 092:705.984 Data: 00 00 00 00 -T98A8 092:706.072 - 0.456ms returns 4 (0x4) -T98A8 092:706.192 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:706.248 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 092:706.656 Data: 01 -T98A8 092:706.736 - 0.541ms returns 1 (0x1) -T98A8 092:706.792 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:706.832 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 092:707.280 Data: 01 -T98A8 092:707.472 - 0.677ms returns 1 (0x1) -T98A8 092:707.552 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:707.632 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 092:708.152 Data: 03 -T98A8 092:708.864 - 1.307ms returns 1 (0x1) -T98A8 092:709.264 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:709.448 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 092:709.872 Data: 01 -T98A8 092:709.992 - 0.723ms returns 1 (0x1) -T98A8 092:710.072 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:710.152 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 092:710.512 Data: 02 -T98A8 092:710.688 - 0.614ms returns 1 (0x1) -T98A8 092:710.800 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:710.928 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 092:711.328 Data: 01 -T98A8 092:711.400 - 0.596ms returns 1 (0x1) -T98A8 092:711.448 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:711.496 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 092:711.800 Data: 01 -T98A8 092:711.872 - 0.422ms returns 1 (0x1) -T98A8 092:711.920 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:711.992 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 092:712.304 Data: 01 -T98A8 092:712.392 - 0.464ms returns 1 (0x1) -T98A8 092:713.576 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:713.720 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 092:714.192 Data: 00 00 00 00 -T98A8 092:714.344 - 0.767ms returns 4 (0x4) -T98A8 092:714.496 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:714.576 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 092:714.968 Data: 00 -T98A8 092:715.064 - 0.571ms returns 1 (0x1) -T98A8 092:715.488 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 092:715.568 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 092:715.896 Data: 00 -T98A8 092:716.000 - 0.512ms returns 1 (0x1) -T98A8 092:716.136 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:716.208 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 092:716.528 Data: 10 CF 01 20 -T98A8 092:716.624 - 0.484ms returns 4 (0x4) -T98A8 092:716.688 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 092:716.752 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 092:717.072 Data: 49 CF 01 20 -T98A8 092:717.176 - 0.481ms returns 4 (0x4) -T358C 092:717.400 JLINK_IsHalted() -T358C 092:717.696 - 0.298ms returns FALSE -T358C 092:818.632 JLINK_HasError() -T358C 092:818.720 JLINK_IsHalted() -T358C 092:819.072 - 0.357ms returns FALSE -T358C 092:919.960 JLINK_HasError() -T358C 092:920.120 JLINK_IsHalted() -T358C 092:920.512 - 0.385ms returns FALSE -T358C 093:021.464 JLINK_HasError() -T358C 093:021.704 JLINK_IsHalted() -T358C 093:022.688 - 0.987ms returns FALSE -T358C 093:123.720 JLINK_HasError() -T358C 093:123.920 JLINK_IsHalted() -T358C 093:124.432 - 0.508ms returns FALSE -T358C 093:225.328 JLINK_HasError() -T358C 093:225.424 JLINK_HasError() -T358C 093:225.480 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 093:225.544 Data: F7 AE 0E 05 -T358C 093:225.608 Debug reg: DWT_CYCCNT -T358C 093:225.680 - 0.197ms returns 1 (0x1) -T98A8 093:226.192 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 093:226.288 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 093:226.864 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 093:227.000 - 0.803ms returns 25 (0x19) -T98A8 093:227.128 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:227.184 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 093:227.488 Data: 02 -T98A8 093:227.584 - 0.454ms returns 1 (0x1) -T98A8 093:227.664 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:227.712 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 093:228.144 Data: 00 00 00 00 -T98A8 093:228.248 - 0.586ms returns 4 (0x4) -T98A8 093:228.304 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:228.352 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 093:228.880 Data: 00 00 00 00 -T98A8 093:229.032 - 0.730ms returns 4 (0x4) -T98A8 093:229.112 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:229.192 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 093:229.688 Data: 80 56 43 BC -T98A8 093:229.832 - 0.717ms returns 4 (0x4) -T98A8 093:229.880 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:229.928 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 093:230.352 Data: 00 00 00 00 -T98A8 093:230.448 - 0.558ms returns 4 (0x4) -T98A8 093:230.488 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:230.544 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 093:230.872 Data: 01 -T98A8 093:230.960 - 0.472ms returns 1 (0x1) -T98A8 093:231.016 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:231.056 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 093:231.368 Data: 01 -T98A8 093:231.464 - 0.445ms returns 1 (0x1) -T98A8 093:231.512 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:231.568 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 093:231.856 Data: 02 -T98A8 093:231.944 - 0.423ms returns 1 (0x1) -T98A8 093:231.984 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:232.040 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 093:232.336 Data: 01 -T98A8 093:232.416 - 0.427ms returns 1 (0x1) -T98A8 093:232.464 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:232.512 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 093:232.848 Data: 03 -T98A8 093:232.920 - 0.452ms returns 1 (0x1) -T98A8 093:232.968 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:233.016 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 093:233.376 Data: 01 -T98A8 093:233.552 - 0.585ms returns 1 (0x1) -T98A8 093:233.640 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:233.728 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 093:234.096 Data: 01 -T98A8 093:234.184 - 0.546ms returns 1 (0x1) -T98A8 093:234.240 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:234.288 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 093:234.696 Data: 01 -T98A8 093:234.800 - 0.557ms returns 1 (0x1) -T98A8 093:235.328 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 093:235.392 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 093:235.840 Data: 00 00 -T98A8 093:235.984 - 0.664ms returns 2 (0x2) -T98A8 093:236.080 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 093:236.176 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 093:236.656 Data: 00 00 -T98A8 093:236.752 - 0.681ms returns 2 (0x2) -T98A8 093:236.880 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:236.920 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 093:237.264 Data: 40 C4 01 20 -T98A8 093:237.352 - 0.475ms returns 4 (0x4) -T98A8 093:237.424 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:237.472 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 093:237.848 Data: 01 00 00 00 -T98A8 093:238.000 - 0.577ms returns 4 (0x4) -T98A8 093:238.112 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:238.200 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 093:238.576 Data: 00 00 00 00 -T98A8 093:238.736 - 0.624ms returns 4 (0x4) -T98A8 093:238.832 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:238.912 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 093:239.288 Data: 00 00 00 00 -T98A8 093:239.376 - 0.546ms returns 4 (0x4) -T98A8 093:239.440 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:239.488 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 093:239.832 Data: 80 56 43 BC -T98A8 093:239.928 - 0.491ms returns 4 (0x4) -T98A8 093:239.984 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:240.032 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 093:240.344 Data: 00 00 00 00 -T98A8 093:240.432 - 0.445ms returns 4 (0x4) -T98A8 093:240.496 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:240.544 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 093:240.856 Data: 01 -T98A8 093:240.936 - 0.436ms returns 1 (0x1) -T98A8 093:240.984 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:241.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 093:241.336 Data: 01 -T98A8 093:241.400 - 0.419ms returns 1 (0x1) -T98A8 093:241.456 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:241.496 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 093:241.848 Data: 03 -T98A8 093:242.008 - 0.557ms returns 1 (0x1) -T98A8 093:242.096 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:242.184 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 093:242.544 Data: 01 -T98A8 093:242.640 - 0.535ms returns 1 (0x1) -T98A8 093:242.688 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:242.736 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 093:243.032 Data: 02 -T98A8 093:243.104 - 0.416ms returns 1 (0x1) -T98A8 093:243.152 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:243.200 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 093:243.504 Data: 01 -T98A8 093:243.576 - 0.428ms returns 1 (0x1) -T98A8 093:243.624 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:243.664 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 093:243.952 Data: 01 -T98A8 093:244.032 - 0.406ms returns 1 (0x1) -T98A8 093:244.144 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:244.280 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 093:244.632 Data: 01 -T98A8 093:244.712 - 0.569ms returns 1 (0x1) -T98A8 093:245.280 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:245.392 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 093:245.840 Data: 00 00 00 00 -T98A8 093:245.928 - 0.648ms returns 4 (0x4) -T98A8 093:246.032 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:246.088 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 093:246.384 Data: 00 -T98A8 093:246.448 - 0.411ms returns 1 (0x1) -T98A8 093:246.952 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:247.024 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 093:247.336 Data: 00 -T98A8 093:247.416 - 0.467ms returns 1 (0x1) -T98A8 093:247.544 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:247.600 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 093:247.920 Data: 10 CF 01 20 -T98A8 093:248.048 - 0.496ms returns 4 (0x4) -T98A8 093:248.144 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:248.232 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 093:248.608 Data: 49 CF 01 20 -T98A8 093:248.728 - 0.578ms returns 4 (0x4) -T358C 093:248.928 JLINK_IsHalted() -T358C 093:249.256 - 0.325ms returns FALSE -T358C 093:349.776 JLINK_HasError() -T358C 093:349.888 JLINK_IsHalted() -T358C 093:350.224 - 0.334ms returns FALSE -T358C 093:450.488 JLINK_HasError() -T358C 093:450.688 JLINK_IsHalted() -T358C 093:451.064 - 0.374ms returns FALSE -T358C 093:551.376 JLINK_HasError() -T358C 093:551.472 JLINK_IsHalted() -T358C 093:552.880 - 1.404ms returns FALSE -T358C 093:653.624 JLINK_HasError() -T358C 093:653.752 JLINK_IsHalted() -T358C 093:654.096 - 0.345ms returns FALSE -T358C 093:754.712 JLINK_HasError() -T358C 093:754.800 JLINK_HasError() -T358C 093:754.872 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 093:754.928 Data: F7 AE 0E 05 -T358C 093:754.992 Debug reg: DWT_CYCCNT -T358C 093:755.064 - 0.197ms returns 1 (0x1) -T98A8 093:755.472 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 093:755.552 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 093:756.072 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 093:756.224 - 0.748ms returns 25 (0x19) -T98A8 093:756.328 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:756.408 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 093:756.752 Data: 02 -T98A8 093:756.824 - 0.498ms returns 1 (0x1) -T98A8 093:756.904 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:756.944 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 093:757.400 Data: 00 00 00 00 -T98A8 093:757.480 - 0.576ms returns 4 (0x4) -T98A8 093:757.528 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:757.576 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 093:758.000 Data: 00 00 00 00 -T98A8 093:758.144 - 0.615ms returns 4 (0x4) -T98A8 093:758.232 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:758.320 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 093:758.896 Data: 80 56 43 BC -T98A8 093:758.992 - 0.753ms returns 4 (0x4) -T98A8 093:759.040 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:759.088 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 093:759.608 Data: 00 00 00 00 -T98A8 093:759.760 - 0.716ms returns 4 (0x4) -T98A8 093:759.848 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:759.920 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 093:760.328 Data: 01 -T98A8 093:760.464 - 0.616ms returns 1 (0x1) -T98A8 093:760.552 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:760.640 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 093:761.048 Data: 01 -T98A8 093:761.208 - 0.660ms returns 1 (0x1) -T98A8 093:761.296 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:761.384 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 093:761.760 Data: 02 -T98A8 093:762.024 - 0.717ms returns 1 (0x1) -T98A8 093:762.160 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:762.312 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 093:762.768 Data: 01 -T98A8 093:762.856 - 0.694ms returns 1 (0x1) -T98A8 093:762.904 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:762.952 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 093:763.256 Data: 03 -T98A8 093:763.352 - 0.447ms returns 1 (0x1) -T98A8 093:763.408 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:763.448 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 093:763.760 Data: 01 -T98A8 093:763.896 - 0.497ms returns 1 (0x1) -T98A8 093:763.984 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:764.072 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 093:764.456 Data: 01 -T98A8 093:764.544 - 0.561ms returns 1 (0x1) -T98A8 093:764.592 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:764.640 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 093:764.944 Data: 01 -T98A8 093:765.040 - 0.446ms returns 1 (0x1) -T98A8 093:765.088 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 093:765.136 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 093:765.488 Data: 00 00 -T98A8 093:765.576 - 0.483ms returns 2 (0x2) -T98A8 093:765.624 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 093:765.672 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 093:766.056 Data: 00 00 -T98A8 093:766.120 - 0.497ms returns 2 (0x2) -T98A8 093:766.256 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:766.296 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 093:766.696 Data: 40 C4 01 20 -T98A8 093:766.904 - 0.652ms returns 4 (0x4) -T98A8 093:767.080 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:767.216 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 093:767.656 Data: 01 00 00 00 -T98A8 093:813.888 - 46.807ms returns 4 (0x4) -T98A8 093:814.192 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:814.376 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 093:814.808 Data: 00 00 00 00 -T98A8 093:814.896 - 0.698ms returns 4 (0x4) -T98A8 093:814.952 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:815.000 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 093:815.312 Data: 00 00 00 00 -T98A8 093:815.384 - 0.434ms returns 4 (0x4) -T98A8 093:815.456 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:815.504 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 093:815.880 Data: 80 56 43 BC -T98A8 093:815.952 - 0.490ms returns 4 (0x4) -T98A8 093:816.016 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:816.080 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 093:816.424 Data: 00 00 00 00 -T98A8 093:816.520 - 0.504ms returns 4 (0x4) -T98A8 093:816.624 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:816.680 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 093:817.000 Data: 01 -T98A8 093:817.104 - 0.481ms returns 1 (0x1) -T98A8 093:817.184 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:817.232 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 093:817.552 Data: 01 -T98A8 093:817.640 - 0.457ms returns 1 (0x1) -T98A8 093:817.696 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:817.744 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 093:818.048 Data: 03 -T98A8 093:818.136 - 0.444ms returns 1 (0x1) -T98A8 093:818.192 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:818.240 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 093:818.536 Data: 01 -T98A8 093:818.608 - 0.415ms returns 1 (0x1) -T98A8 093:818.656 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:818.704 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 093:819.008 Data: 02 -T98A8 093:819.104 - 0.450ms returns 1 (0x1) -T98A8 093:819.152 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:819.200 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 093:819.504 Data: 01 -T98A8 093:819.576 - 0.423ms returns 1 (0x1) -T98A8 093:819.624 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:819.672 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 093:820.008 Data: 01 -T98A8 093:820.080 - 0.455ms returns 1 (0x1) -T98A8 093:820.128 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:820.176 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 093:820.488 Data: 01 -T98A8 093:820.568 - 0.445ms returns 1 (0x1) -T98A8 093:820.624 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:820.664 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 093:821.008 Data: 00 00 00 00 -T98A8 093:821.072 - 0.455ms returns 4 (0x4) -T98A8 093:821.184 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:821.232 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 093:821.536 Data: 00 -T98A8 093:821.600 - 0.418ms returns 1 (0x1) -T98A8 093:821.808 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 093:821.864 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 093:822.160 Data: 00 -T98A8 093:822.232 - 0.423ms returns 1 (0x1) -T98A8 093:822.320 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:822.376 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 093:822.672 Data: 10 CF 01 20 -T98A8 093:822.752 - 0.424ms returns 4 (0x4) -T98A8 093:822.816 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 093:822.864 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 093:823.184 Data: 49 CF 01 20 -T98A8 093:823.344 - 0.531ms returns 4 (0x4) -T358C 093:823.664 JLINK_IsHalted() -T358C 093:824.016 - 0.350ms returns FALSE -T358C 093:925.320 JLINK_HasError() -T358C 093:925.408 JLINK_IsHalted() -T358C 093:925.704 - 0.294ms returns FALSE -T358C 094:026.344 JLINK_HasError() -T358C 094:026.448 JLINK_IsHalted() -T358C 094:026.920 - 0.464ms returns FALSE -T358C 094:129.096 JLINK_HasError() -T358C 094:129.200 JLINK_IsHalted() -T358C 094:129.520 - 0.320ms returns FALSE -T358C 094:229.712 JLINK_HasError() -T358C 094:229.864 JLINK_IsHalted() -T358C 094:230.248 - 0.383ms returns FALSE -T358C 094:331.344 JLINK_HasError() -T358C 094:331.568 JLINK_HasError() -T358C 094:331.720 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 094:331.816 Data: F7 AE 0E 05 -T358C 094:331.912 Debug reg: DWT_CYCCNT -T358C 094:332.016 - 0.292ms returns 1 (0x1) -T98A8 094:332.216 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 094:332.304 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 094:332.792 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 094:332.880 - 0.662ms returns 25 (0x19) -T98A8 094:332.976 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:333.016 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 094:333.336 Data: 02 -T98A8 094:333.488 - 0.517ms returns 1 (0x1) -T98A8 094:333.608 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:333.680 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 094:334.192 Data: 00 00 00 00 -T98A8 094:334.256 - 0.654ms returns 4 (0x4) -T98A8 094:334.312 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:334.352 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 094:334.808 Data: 00 00 00 00 -T98A8 094:334.880 - 0.567ms returns 4 (0x4) -T98A8 094:334.928 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:334.968 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 094:335.456 Data: 80 56 43 BC -T98A8 094:335.576 - 0.651ms returns 4 (0x4) -T98A8 094:335.656 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:335.728 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 094:336.176 Data: 00 00 00 00 -T98A8 094:336.288 - 0.631ms returns 4 (0x4) -T98A8 094:336.344 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:336.392 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 094:336.712 Data: 01 -T98A8 094:336.920 - 0.575ms returns 1 (0x1) -T98A8 094:337.016 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:337.104 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 094:337.480 Data: 01 -T98A8 094:337.568 - 0.552ms returns 1 (0x1) -T98A8 094:337.616 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:337.664 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 094:337.984 Data: 02 -T98A8 094:338.064 - 0.442ms returns 1 (0x1) -T98A8 094:338.104 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:338.152 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 094:338.464 Data: 01 -T98A8 094:338.552 - 0.447ms returns 1 (0x1) -T98A8 094:338.608 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:338.648 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 094:338.944 Data: 03 -T98A8 094:339.024 - 0.424ms returns 1 (0x1) -T98A8 094:339.080 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:339.120 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 094:339.472 Data: 01 -T98A8 094:339.536 - 0.462ms returns 1 (0x1) -T98A8 094:339.584 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:339.632 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 094:339.952 Data: 01 -T98A8 094:340.048 - 0.461ms returns 1 (0x1) -T98A8 094:340.096 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:340.144 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 094:340.456 Data: 02 -T98A8 094:340.528 - 0.426ms returns 1 (0x1) -T98A8 094:341.064 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 094:341.136 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 094:341.528 Data: 00 00 -T98A8 094:341.680 - 0.612ms returns 2 (0x2) -T98A8 094:341.760 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 094:341.848 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 094:342.256 Data: 00 00 -T98A8 094:342.328 - 0.566ms returns 2 (0x2) -T98A8 094:342.448 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:342.488 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 094:342.912 Data: 40 C4 01 20 -T98A8 094:342.984 - 0.535ms returns 4 (0x4) -T98A8 094:343.048 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:343.088 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 094:343.424 Data: 01 00 00 00 -T98A8 094:343.488 - 0.441ms returns 4 (0x4) -T98A8 094:343.544 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:343.592 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 094:343.952 Data: 00 00 00 00 -T98A8 094:344.024 - 0.476ms returns 4 (0x4) -T98A8 094:344.072 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:344.112 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 094:344.496 Data: 00 00 00 00 -T98A8 094:344.560 - 0.484ms returns 4 (0x4) -T98A8 094:344.608 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:344.656 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 094:345.040 Data: 80 56 43 BC -T98A8 094:345.112 - 0.502ms returns 4 (0x4) -T98A8 094:345.160 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:345.200 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 094:345.584 Data: 00 00 00 00 -T98A8 094:345.648 - 0.492ms returns 4 (0x4) -T98A8 094:345.704 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:345.744 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 094:346.128 Data: 01 -T98A8 094:346.232 - 0.525ms returns 1 (0x1) -T98A8 094:346.312 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:346.384 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 094:346.776 Data: 01 -T98A8 094:346.880 - 0.572ms returns 1 (0x1) -T98A8 094:346.952 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:347.024 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 094:347.384 Data: 03 -T98A8 094:347.504 - 0.549ms returns 1 (0x1) -T98A8 094:347.576 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:347.656 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 094:348.040 Data: 01 -T98A8 094:348.160 - 0.581ms returns 1 (0x1) -T98A8 094:348.208 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:348.264 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 094:348.560 Data: 02 -T98A8 094:348.632 - 0.421ms returns 1 (0x1) -T98A8 094:348.680 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:348.720 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 094:349.040 Data: 01 -T98A8 094:349.112 - 0.433ms returns 1 (0x1) -T98A8 094:349.160 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:349.200 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 094:349.536 Data: 01 -T98A8 094:349.712 - 0.554ms returns 1 (0x1) -T98A8 094:349.800 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:349.872 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 094:350.240 Data: 03 -T98A8 094:350.304 - 0.507ms returns 1 (0x1) -T98A8 094:350.704 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:350.768 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 094:351.112 Data: 00 00 00 00 -T98A8 094:351.232 - 0.527ms returns 4 (0x4) -T98A8 094:351.320 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:351.376 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 094:351.776 Data: 00 -T98A8 094:351.936 - 0.613ms returns 1 (0x1) -T98A8 094:352.312 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:352.400 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 094:352.776 Data: 00 -T98A8 094:352.936 - 0.626ms returns 1 (0x1) -T98A8 094:353.112 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:353.208 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 094:353.592 Data: 10 CF 01 20 -T98A8 094:353.744 - 0.628ms returns 4 (0x4) -T98A8 094:353.848 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:353.928 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 094:354.288 Data: 49 CF 01 20 -T98A8 094:354.448 - 0.593ms returns 4 (0x4) -T358C 094:354.688 JLINK_IsHalted() -T358C 094:354.976 - 0.289ms returns FALSE -T358C 094:455.352 JLINK_HasError() -T358C 094:455.560 JLINK_IsHalted() -T358C 094:456.136 - 0.571ms returns FALSE -T358C 094:556.864 JLINK_HasError() -T358C 094:556.968 JLINK_IsHalted() -T358C 094:557.352 - 0.382ms returns FALSE -T358C 094:658.536 JLINK_HasError() -T358C 094:658.696 JLINK_IsHalted() -T358C 094:659.128 - 0.435ms returns FALSE -T358C 094:759.912 JLINK_HasError() -T358C 094:759.992 JLINK_IsHalted() -T358C 094:760.368 - 0.371ms returns FALSE -T358C 094:860.592 JLINK_HasError() -T358C 094:860.768 JLINK_HasError() -T358C 094:860.824 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 094:860.888 Data: F7 AE 0E 05 -T358C 094:861.008 Debug reg: DWT_CYCCNT -T358C 094:861.936 - 1.112ms returns 1 (0x1) -T98A8 094:862.656 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 094:862.864 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 094:863.464 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 094:863.568 - 0.910ms returns 25 (0x19) -T98A8 094:863.704 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:863.760 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 094:864.088 Data: 02 -T98A8 094:864.160 - 0.454ms returns 1 (0x1) -T98A8 094:864.248 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:864.296 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 094:864.752 Data: 00 00 00 00 -T98A8 094:864.816 - 0.569ms returns 4 (0x4) -T98A8 094:864.880 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:864.920 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 094:865.360 Data: 00 00 00 00 -T98A8 094:865.424 - 0.551ms returns 4 (0x4) -T98A8 094:865.496 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:865.568 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 094:866.088 Data: 80 56 43 BC -T98A8 094:866.320 - 0.826ms returns 4 (0x4) -T98A8 094:866.432 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:866.528 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 094:867.040 Data: 00 00 00 00 -T98A8 094:867.112 - 0.677ms returns 4 (0x4) -T98A8 094:867.168 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:867.216 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 094:867.560 Data: 01 -T98A8 094:867.656 - 0.486ms returns 1 (0x1) -T98A8 094:867.704 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:867.752 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 094:868.312 Data: 01 -T98A8 094:868.400 - 0.698ms returns 1 (0x1) -T98A8 094:868.456 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:868.496 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 094:868.848 Data: 02 -T98A8 094:868.912 - 0.456ms returns 1 (0x1) -T98A8 094:868.960 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:869.008 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 094:869.344 Data: 01 -T98A8 094:869.456 - 0.491ms returns 1 (0x1) -T98A8 094:869.536 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:869.616 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 094:870.008 Data: 03 -T98A8 094:870.144 - 0.610ms returns 1 (0x1) -T98A8 094:870.232 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:870.304 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 094:870.664 Data: 01 -T98A8 094:870.816 - 0.582ms returns 1 (0x1) -T98A8 094:870.896 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:870.992 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 094:871.376 Data: 01 -T98A8 094:871.496 - 0.593ms returns 1 (0x1) -T98A8 094:871.584 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:871.664 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 094:872.072 Data: 02 -T98A8 094:872.192 - 0.611ms returns 1 (0x1) -T98A8 094:872.920 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 094:872.992 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 094:873.392 Data: 00 00 -T98A8 094:873.464 - 0.546ms returns 2 (0x2) -T98A8 094:873.520 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 094:873.560 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 094:873.952 Data: 00 00 -T98A8 094:874.024 - 0.507ms returns 2 (0x2) -T98A8 094:874.184 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:874.240 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 094:874.800 Data: 40 C4 01 20 -T98A8 094:874.872 - 0.686ms returns 4 (0x4) -T98A8 094:875.056 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:875.120 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 094:875.432 Data: 01 00 00 00 -T98A8 094:875.504 - 0.455ms returns 4 (0x4) -T98A8 094:875.576 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:875.624 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 094:875.952 Data: 00 00 00 00 -T98A8 094:876.104 - 0.524ms returns 4 (0x4) -T98A8 094:876.240 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:876.304 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 094:876.688 Data: 00 00 00 00 -T98A8 094:876.912 - 0.667ms returns 4 (0x4) -T98A8 094:877.056 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:877.224 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 094:878.352 Data: 80 56 43 BC -T98A8 094:878.504 - 1.447ms returns 4 (0x4) -T98A8 094:878.592 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:878.672 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 094:879.096 Data: 00 00 00 00 -T98A8 094:879.232 - 0.637ms returns 4 (0x4) -T98A8 094:879.344 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:879.416 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 094:879.808 Data: 01 -T98A8 094:879.920 - 0.576ms returns 1 (0x1) -T98A8 094:880.000 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:880.048 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 094:880.368 Data: 01 -T98A8 094:880.440 - 0.440ms returns 1 (0x1) -T98A8 094:880.488 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:880.528 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 094:880.848 Data: 03 -T98A8 094:880.920 - 0.437ms returns 1 (0x1) -T98A8 094:880.976 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:881.016 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 094:881.368 Data: 01 -T98A8 094:881.448 - 0.478ms returns 1 (0x1) -T98A8 094:881.496 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:881.544 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 094:881.840 Data: 02 -T98A8 094:881.904 - 0.412ms returns 1 (0x1) -T98A8 094:881.952 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:882.000 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 094:882.384 Data: 01 -T98A8 094:882.576 - 0.621ms returns 1 (0x1) -T98A8 094:882.680 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:882.832 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 094:883.256 Data: 01 -T98A8 094:883.368 - 0.679ms returns 1 (0x1) -T98A8 094:883.424 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:883.520 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 094:884.000 Data: 03 -T98A8 094:884.096 - 0.668ms returns 1 (0x1) -T98A8 094:884.752 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:884.832 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 094:885.144 Data: 00 00 00 00 -T98A8 094:885.216 - 0.461ms returns 4 (0x4) -T98A8 094:885.344 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:885.392 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 094:885.704 Data: 00 -T98A8 094:885.840 - 0.500ms returns 1 (0x1) -T98A8 094:886.224 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 094:886.320 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 094:886.672 Data: 00 -T98A8 094:886.768 - 0.536ms returns 1 (0x1) -T98A8 094:886.880 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:886.928 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 094:887.264 Data: 10 CF 01 20 -T98A8 094:887.344 - 0.457ms returns 4 (0x4) -T98A8 094:887.408 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 094:887.448 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 094:887.760 Data: 49 CF 01 20 -T98A8 094:887.912 - 0.507ms returns 4 (0x4) -T358C 094:888.120 JLINK_IsHalted() -T358C 094:888.432 - 0.304ms returns FALSE -T358C 094:988.992 JLINK_HasError() -T358C 094:989.160 JLINK_IsHalted() -T358C 094:989.568 - 0.403ms returns FALSE -T358C 095:090.768 JLINK_HasError() -T358C 095:091.064 JLINK_IsHalted() -T358C 095:091.624 - 0.554ms returns FALSE -T358C 095:192.328 JLINK_HasError() -T358C 095:192.512 JLINK_IsHalted() -T358C 095:192.984 - 0.471ms returns FALSE -T358C 095:293.864 JLINK_HasError() -T358C 095:294.144 JLINK_IsHalted() -T358C 095:294.752 - 0.605ms returns FALSE -T358C 095:395.696 JLINK_HasError() -T358C 095:395.912 JLINK_HasError() -T358C 095:395.976 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 095:396.064 Data: F7 AE 0E 05 -T358C 095:396.184 Debug reg: DWT_CYCCNT -T358C 095:396.344 - 0.369ms returns 1 (0x1) -T98A8 095:396.816 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 095:397.056 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 095:397.800 Data: 0F 00 04 20 00 F1 17 96 B0 84 05 80 61 F9 74 58 ... -T98A8 095:397.960 - 1.138ms returns 25 (0x19) -T98A8 095:398.072 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:398.152 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 095:398.560 Data: 02 -T98A8 095:398.696 - 0.623ms returns 1 (0x1) -T98A8 095:398.816 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:398.880 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 095:399.416 Data: 00 00 00 00 -T98A8 095:399.568 - 0.755ms returns 4 (0x4) -T98A8 095:399.664 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:399.776 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 095:400.456 Data: 00 00 00 00 -T98A8 095:400.776 - 1.111ms returns 4 (0x4) -T98A8 095:400.928 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:400.992 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 095:401.544 Data: 80 56 43 BC -T98A8 095:401.680 - 0.745ms returns 4 (0x4) -T98A8 095:401.760 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:401.824 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 095:402.352 Data: 00 00 00 00 -T98A8 095:402.480 - 0.718ms returns 4 (0x4) -T98A8 095:402.704 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:402.792 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 095:403.200 Data: 01 -T98A8 095:403.320 - 0.618ms returns 1 (0x1) -T98A8 095:403.416 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:403.496 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 095:404.040 Data: 01 -T98A8 095:404.176 - 0.764ms returns 1 (0x1) -T98A8 095:404.272 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:404.352 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 095:404.856 Data: 02 -T98A8 095:404.992 - 0.718ms returns 1 (0x1) -T98A8 095:405.072 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:405.136 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 095:405.520 Data: 01 -T98A8 095:405.648 - 0.579ms returns 1 (0x1) -T98A8 095:405.792 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:406.000 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 095:406.504 Data: 03 -T98A8 095:406.648 - 0.854ms returns 1 (0x1) -T98A8 095:406.808 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:406.896 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 095:407.248 Data: 01 -T98A8 095:407.344 - 0.537ms returns 1 (0x1) -T98A8 095:407.408 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:407.472 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 095:407.808 Data: 01 -T98A8 095:407.904 - 0.495ms returns 1 (0x1) -T98A8 095:407.968 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:408.032 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 095:408.368 Data: 01 -T98A8 095:408.464 - 0.493ms returns 1 (0x1) -T98A8 095:409.240 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 095:409.336 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 095:409.768 Data: 00 00 -T98A8 095:409.872 - 0.626ms returns 2 (0x2) -T98A8 095:409.936 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 095:410.000 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 095:410.416 Data: 00 00 -T98A8 095:410.512 - 0.575ms returns 2 (0x2) -T98A8 095:410.712 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:410.800 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 095:411.240 Data: 40 C4 01 20 -T98A8 095:411.352 - 0.637ms returns 4 (0x4) -T98A8 095:411.448 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:411.528 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 095:411.976 Data: 01 00 00 00 -T98A8 095:412.072 - 0.616ms returns 4 (0x4) -T98A8 095:412.144 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:412.208 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 095:412.592 Data: 00 00 00 00 -T98A8 095:412.688 - 0.538ms returns 4 (0x4) -T98A8 095:412.752 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:412.824 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 095:413.272 Data: 00 00 00 00 -T98A8 095:413.368 - 0.612ms returns 4 (0x4) -T98A8 095:413.456 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:413.512 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 095:413.984 Data: 80 56 43 BC -T98A8 095:414.072 - 0.622ms returns 4 (0x4) -T98A8 095:414.136 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:414.200 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 095:414.632 Data: 00 00 00 00 -T98A8 095:414.728 - 0.587ms returns 4 (0x4) -T98A8 095:414.800 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:414.864 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 095:415.336 Data: 01 -T98A8 095:415.440 - 0.634ms returns 1 (0x1) -T98A8 095:415.512 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:415.584 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 095:416.032 Data: 01 -T98A8 095:416.304 - 0.791ms returns 1 (0x1) -T98A8 095:416.464 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:416.608 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 095:417.328 Data: 03 -T98A8 095:418.016 - 1.546ms returns 1 (0x1) -T98A8 095:418.416 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:418.696 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 095:419.120 Data: 01 -T98A8 095:419.272 - 0.855ms returns 1 (0x1) -T98A8 095:419.344 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:419.424 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 095:419.856 Data: 02 -T98A8 095:420.016 - 0.667ms returns 1 (0x1) -T98A8 095:420.096 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:420.176 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 095:420.544 Data: 01 -T98A8 095:420.664 - 0.564ms returns 1 (0x1) -T98A8 095:420.744 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:420.816 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 095:421.208 Data: 01 -T98A8 095:421.320 - 0.577ms returns 1 (0x1) -T98A8 095:421.392 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:421.472 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 095:422.000 Data: 01 -T98A8 095:422.184 - 0.785ms returns 1 (0x1) -T98A8 095:423.544 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:423.680 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 095:424.176 Data: 00 00 00 00 -T98A8 095:424.344 - 0.801ms returns 4 (0x4) -T98A8 095:424.576 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:424.688 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 095:425.136 Data: 00 -T98A8 095:425.256 - 0.680ms returns 1 (0x1) -T98A8 095:425.608 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:425.688 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 095:426.136 Data: 00 -T98A8 095:426.272 - 0.663ms returns 1 (0x1) -T98A8 095:426.448 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:426.520 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 095:426.992 Data: 10 CF 01 20 -T98A8 095:427.128 - 0.684ms returns 4 (0x4) -T98A8 095:427.232 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:427.312 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 095:427.696 Data: 49 CF 01 20 -T98A8 095:427.792 - 0.564ms returns 4 (0x4) -T358C 095:428.008 JLINK_IsHalted() -T358C 095:428.400 - 0.395ms returns FALSE -T358C 095:528.656 JLINK_HasError() -T358C 095:528.928 JLINK_IsHalted() -T358C 095:529.520 - 0.585ms returns FALSE -T358C 095:630.720 JLINK_HasError() -T358C 095:630.960 JLINK_IsHalted() -T358C 095:632.176 - 1.222ms returns FALSE -T358C 095:732.944 JLINK_HasError() -T358C 095:733.232 JLINK_IsHalted() -T358C 095:733.752 - 0.518ms returns FALSE -T358C 095:834.504 JLINK_HasError() -T358C 095:834.672 JLINK_IsHalted() -T358C 095:835.096 - 0.423ms returns FALSE -T358C 095:936.368 JLINK_HasError() -T358C 095:936.616 JLINK_HasError() -T358C 095:936.712 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 095:936.808 Data: F7 AE 0E 05 -T358C 095:936.912 Debug reg: DWT_CYCCNT -T358C 095:937.008 - 0.301ms returns 1 (0x1) -T98A8 095:937.648 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 095:937.792 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 095:938.384 Data: 0F 00 04 20 00 F1 F7 E9 B0 84 05 80 61 F9 74 58 ... -T98A8 095:938.512 - 0.867ms returns 25 (0x19) -T98A8 095:938.608 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:938.664 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 095:939.040 Data: 02 -T98A8 095:939.208 - 0.596ms returns 1 (0x1) -T98A8 095:939.344 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:939.424 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 095:939.952 Data: 00 00 00 00 -T98A8 095:940.072 - 0.727ms returns 4 (0x4) -T98A8 095:940.136 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:940.192 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 095:940.648 Data: 00 00 00 00 -T98A8 095:940.728 - 0.595ms returns 4 (0x4) -T98A8 095:940.784 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:940.840 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 095:941.304 Data: 80 56 43 BC -T98A8 095:941.408 - 0.623ms returns 4 (0x4) -T98A8 095:941.472 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:941.528 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 095:942.128 Data: 00 00 00 00 -T98A8 095:942.240 - 0.765ms returns 4 (0x4) -T98A8 095:942.296 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:942.352 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 095:942.672 Data: 01 -T98A8 095:942.824 - 0.522ms returns 1 (0x1) -T98A8 095:942.960 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:943.024 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 095:943.344 Data: 01 -T98A8 095:943.448 - 0.483ms returns 1 (0x1) -T98A8 095:943.512 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:943.568 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 095:944.016 Data: 02 -T98A8 095:944.120 - 0.606ms returns 1 (0x1) -T98A8 095:944.184 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:944.240 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 095:944.560 Data: 01 -T98A8 095:944.664 - 0.477ms returns 1 (0x1) -T98A8 095:944.728 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:944.784 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 095:945.168 Data: 03 -T98A8 095:945.272 - 0.548ms returns 1 (0x1) -T98A8 095:945.336 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:945.392 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 095:945.712 Data: 01 -T98A8 095:945.808 - 0.469ms returns 1 (0x1) -T98A8 095:945.872 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:945.928 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 095:946.272 Data: 02 -T98A8 095:946.448 - 0.573ms returns 1 (0x1) -T98A8 095:947.304 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:947.392 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 095:948.232 Data: 01 -T98A8 095:948.344 - 1.047ms returns 1 (0x1) -T98A8 095:948.848 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 095:948.984 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 095:949.424 Data: 00 00 -T98A8 095:949.552 - 0.699ms returns 2 (0x2) -T98A8 095:949.624 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 095:949.680 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 095:950.208 Data: 00 00 -T98A8 095:950.896 - 1.263ms returns 2 (0x2) -T98A8 095:951.488 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:951.568 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 095:952.016 Data: 40 C4 01 20 -T98A8 095:952.152 - 0.662ms returns 4 (0x4) -T98A8 095:952.240 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:952.328 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 095:952.688 Data: 01 00 00 00 -T98A8 095:952.800 - 0.553ms returns 4 (0x4) -T98A8 095:952.872 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:952.920 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 095:953.272 Data: 00 00 00 00 -T98A8 095:953.376 - 0.505ms returns 4 (0x4) -T98A8 095:953.440 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:953.496 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 095:953.832 Data: 00 00 00 00 -T98A8 095:953.944 - 0.503ms returns 4 (0x4) -T98A8 095:954.016 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:954.064 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 095:954.424 Data: 80 56 43 BC -T98A8 095:954.512 - 0.499ms returns 4 (0x4) -T98A8 095:954.576 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:954.640 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 095:955.032 Data: 00 00 00 00 -T98A8 095:955.112 - 0.536ms returns 4 (0x4) -T98A8 095:955.176 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:955.232 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 095:955.560 Data: 01 -T98A8 095:955.664 - 0.485ms returns 1 (0x1) -T98A8 095:955.728 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:955.776 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 095:956.736 Data: 01 -T98A8 095:956.840 - 1.116ms returns 1 (0x1) -T98A8 095:956.896 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:956.952 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 095:957.272 Data: 03 -T98A8 095:957.376 - 0.475ms returns 1 (0x1) -T98A8 095:957.440 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:957.496 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 095:957.832 Data: 01 -T98A8 095:957.920 - 0.480ms returns 1 (0x1) -T98A8 095:957.976 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:958.032 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 095:958.352 Data: 02 -T98A8 095:958.432 - 0.453ms returns 1 (0x1) -T98A8 095:958.488 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:958.544 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 095:958.872 Data: 01 -T98A8 095:959.000 - 0.512ms returns 1 (0x1) -T98A8 095:959.104 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:959.184 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 095:959.896 Data: 03 -T98A8 095:960.072 - 0.968ms returns 1 (0x1) -T98A8 095:960.880 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:960.992 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 095:961.424 Data: 01 -T98A8 095:961.544 - 0.657ms returns 1 (0x1) -T98A8 095:961.872 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:961.952 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 095:962.288 Data: 00 00 00 00 -T98A8 095:962.392 - 0.517ms returns 4 (0x4) -T98A8 095:962.544 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:962.600 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 095:963.024 Data: 00 -T98A8 095:963.104 - 0.562ms returns 1 (0x1) -T98A8 095:963.376 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 095:963.440 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 095:964.288 Data: 00 -T98A8 095:964.496 - 1.110ms returns 1 (0x1) -T98A8 095:964.744 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:964.880 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 095:965.288 Data: 10 CF 01 20 -T98A8 095:965.392 - 0.654ms returns 4 (0x4) -T98A8 095:965.480 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 095:965.536 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 095:965.888 Data: 49 CF 01 20 -T98A8 095:966.096 - 0.618ms returns 4 (0x4) -T358C 095:966.384 JLINK_IsHalted() -T358C 095:967.304 - 0.919ms returns FALSE -T358C 096:068.792 JLINK_HasError() -T358C 096:068.960 JLINK_IsHalted() -T358C 096:069.360 - 0.396ms returns FALSE -T358C 096:170.408 JLINK_HasError() -T358C 096:170.592 JLINK_IsHalted() -T358C 096:171.056 - 0.457ms returns FALSE -T358C 096:271.936 JLINK_HasError() -T358C 096:272.176 JLINK_IsHalted() -T358C 096:272.792 - 0.606ms returns FALSE -T358C 096:373.552 JLINK_HasError() -T358C 096:373.752 JLINK_IsHalted() -T358C 096:374.224 - 0.468ms returns FALSE -T358C 096:475.760 JLINK_HasError() -T358C 096:475.976 JLINK_HasError() -T358C 096:476.048 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 096:476.136 Data: F7 AE 0E 05 -T358C 096:476.216 Debug reg: DWT_CYCCNT -T358C 096:476.304 - 0.246ms returns 1 (0x1) -T98A8 096:476.600 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 096:476.752 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 096:477.512 Data: 0F 00 04 20 00 F1 F7 E9 B0 84 05 80 61 F9 74 58 ... -T98A8 096:477.648 - 1.047ms returns 25 (0x19) -T98A8 096:477.752 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:477.840 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 096:478.248 Data: 02 -T98A8 096:478.488 - 0.732ms returns 1 (0x1) -T98A8 096:478.688 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:478.768 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 096:479.264 Data: 00 00 00 00 -T98A8 096:479.408 - 0.723ms returns 4 (0x4) -T98A8 096:479.488 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:479.560 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 096:480.056 Data: 00 00 00 00 -T98A8 096:480.192 - 0.704ms returns 4 (0x4) -T98A8 096:480.280 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:480.368 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 096:480.848 Data: 80 56 43 BC -T98A8 096:480.968 - 0.689ms returns 4 (0x4) -T98A8 096:481.080 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:481.200 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 096:481.688 Data: 00 00 00 00 -T98A8 096:481.792 - 0.707ms returns 4 (0x4) -T98A8 096:481.856 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:481.928 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 096:482.280 Data: 01 -T98A8 096:482.384 - 0.519ms returns 1 (0x1) -T98A8 096:482.448 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:482.512 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 096:482.840 Data: 01 -T98A8 096:482.936 - 0.491ms returns 1 (0x1) -T98A8 096:483.016 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:483.080 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 096:483.408 Data: 02 -T98A8 096:483.504 - 0.486ms returns 1 (0x1) -T98A8 096:484.176 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:484.280 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 096:484.616 Data: 01 -T98A8 096:484.712 - 0.532ms returns 1 (0x1) -T98A8 096:484.784 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:484.848 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 096:485.200 Data: 03 -T98A8 096:485.296 - 0.519ms returns 1 (0x1) -T98A8 096:485.360 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:485.424 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 096:485.776 Data: 01 -T98A8 096:485.872 - 0.508ms returns 1 (0x1) -T98A8 096:485.944 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:486.008 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 096:486.352 Data: 02 -T98A8 096:486.512 - 0.562ms returns 1 (0x1) -T98A8 096:487.400 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:487.496 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 096:487.888 Data: 01 -T98A8 096:488.048 - 0.648ms returns 1 (0x1) -T98A8 096:488.128 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 096:488.216 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 096:488.688 Data: 00 00 -T98A8 096:488.816 - 0.689ms returns 2 (0x2) -T98A8 096:488.912 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 096:489.000 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 096:489.472 Data: 00 00 -T98A8 096:489.608 - 0.699ms returns 2 (0x2) -T98A8 096:489.760 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:489.824 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 096:490.192 Data: 40 C4 01 20 -T98A8 096:490.280 - 0.522ms returns 4 (0x4) -T98A8 096:490.368 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:490.432 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 096:491.384 Data: 01 00 00 00 -T98A8 096:491.584 - 1.213ms returns 4 (0x4) -T98A8 096:491.704 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:491.784 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 096:492.136 Data: 00 00 00 00 -T98A8 096:492.232 - 0.528ms returns 4 (0x4) -T98A8 096:492.304 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:492.368 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 096:492.696 Data: 00 00 00 00 -T98A8 096:492.848 - 0.542ms returns 4 (0x4) -T98A8 096:492.952 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:493.040 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 096:493.448 Data: 80 56 43 BC -T98A8 096:493.552 - 0.600ms returns 4 (0x4) -T98A8 096:493.648 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:493.768 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 096:513.088 Data: 00 00 00 00 -T98A8 096:513.280 - 19.631ms returns 4 (0x4) -T98A8 096:513.544 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:513.632 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 096:514.072 Data: 01 -T98A8 096:514.288 - 0.742ms returns 1 (0x1) -T98A8 096:514.416 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:514.536 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 096:515.072 Data: 01 -T98A8 096:515.216 - 0.799ms returns 1 (0x1) -T98A8 096:515.312 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:515.408 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 096:515.904 Data: 03 -T98A8 096:516.016 - 0.704ms returns 1 (0x1) -T98A8 096:516.096 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:516.168 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 096:516.576 Data: 01 -T98A8 096:516.704 - 0.611ms returns 1 (0x1) -T98A8 096:516.784 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:516.856 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 096:517.312 Data: 02 -T98A8 096:517.456 - 0.669ms returns 1 (0x1) -T98A8 096:517.528 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:517.600 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 096:518.056 Data: 01 -T98A8 096:518.160 - 0.634ms returns 1 (0x1) -T98A8 096:518.240 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:518.304 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 096:518.816 Data: 03 -T98A8 096:519.104 - 0.867ms returns 1 (0x1) -T98A8 096:520.032 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:520.128 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 096:520.496 Data: 01 -T98A8 096:520.632 - 0.598ms returns 1 (0x1) -T98A8 096:520.704 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:520.784 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 096:521.192 Data: 00 00 00 00 -T98A8 096:521.312 - 0.607ms returns 4 (0x4) -T98A8 096:521.520 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:521.592 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 096:522.056 Data: 00 -T98A8 096:522.144 - 0.633ms returns 1 (0x1) -T98A8 096:522.464 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 096:522.536 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 096:522.960 Data: 00 -T98A8 096:523.064 - 0.602ms returns 1 (0x1) -T98A8 096:523.208 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:523.288 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 096:523.728 Data: 10 CF 01 20 -T98A8 096:523.848 - 0.637ms returns 4 (0x4) -T98A8 096:523.952 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 096:524.536 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 096:525.104 Data: 49 CF 01 20 -T98A8 096:525.392 - 1.441ms returns 4 (0x4) -T358C 096:525.752 JLINK_IsHalted() -T358C 096:526.208 - 0.454ms returns FALSE -T358C 096:627.296 JLINK_HasError() -T358C 096:627.488 JLINK_IsHalted() -T358C 096:627.904 - 0.410ms returns FALSE -T358C 096:728.928 JLINK_HasError() -T358C 096:729.104 JLINK_IsHalted() -T358C 096:729.552 - 0.441ms returns FALSE -T358C 096:830.008 JLINK_HasError() -T358C 096:830.184 JLINK_IsHalted() -T358C 096:830.720 - 0.532ms returns FALSE -T358C 096:931.856 JLINK_HasError() -T358C 096:932.008 JLINK_IsHalted() -T358C 096:932.928 - 0.921ms returns FALSE -T358C 097:033.640 JLINK_HasError() -T358C 097:033.856 JLINK_HasError() -T358C 097:033.968 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 097:034.104 Data: F7 AE 0E 05 -T358C 097:034.272 Debug reg: DWT_CYCCNT -T358C 097:034.416 - 0.453ms returns 1 (0x1) -T98A8 097:034.824 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 097:035.136 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 097:036.272 Data: 0F 00 04 20 00 F1 07 C0 B0 84 05 80 61 F9 74 58 ... -T98A8 097:036.432 - 1.610ms returns 25 (0x19) -T98A8 097:036.528 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:036.600 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 097:037.040 Data: 02 -T98A8 097:037.168 - 0.632ms returns 1 (0x1) -T98A8 097:037.296 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:037.424 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 097:038.040 Data: 00 00 00 00 -T98A8 097:038.192 - 0.896ms returns 4 (0x4) -T98A8 097:038.304 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:038.384 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 097:038.888 Data: 00 00 00 00 -T98A8 097:039.008 - 0.704ms returns 4 (0x4) -T98A8 097:039.088 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:039.176 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 097:039.672 Data: 80 56 43 BC -T98A8 097:039.824 - 0.737ms returns 4 (0x4) -T98A8 097:039.928 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:040.008 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 097:040.528 Data: 00 00 00 00 -T98A8 097:040.656 - 0.726ms returns 4 (0x4) -T98A8 097:040.720 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:040.816 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 097:041.168 Data: 01 -T98A8 097:041.304 - 0.581ms returns 1 (0x1) -T98A8 097:041.376 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:041.456 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 097:041.832 Data: 01 -T98A8 097:041.936 - 0.553ms returns 1 (0x1) -T98A8 097:042.000 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:042.064 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 097:042.400 Data: 02 -T98A8 097:042.504 - 0.504ms returns 1 (0x1) -T98A8 097:042.576 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:042.632 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 097:043.120 Data: 01 -T98A8 097:043.216 - 0.651ms returns 1 (0x1) -T98A8 097:043.288 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:043.360 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 097:043.696 Data: 03 -T98A8 097:043.800 - 0.513ms returns 1 (0x1) -T98A8 097:043.864 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:043.928 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 097:044.304 Data: 01 -T98A8 097:044.440 - 0.576ms returns 1 (0x1) -T98A8 097:044.512 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:044.584 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 097:044.936 Data: 03 -T98A8 097:045.072 - 0.555ms returns 1 (0x1) -T98A8 097:045.816 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:045.912 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 097:046.288 Data: 01 -T98A8 097:046.448 - 0.634ms returns 1 (0x1) -T98A8 097:046.536 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 097:046.608 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 097:047.136 Data: 00 00 -T98A8 097:047.296 - 0.760ms returns 2 (0x2) -T98A8 097:047.376 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 097:047.456 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 097:047.888 Data: 00 00 -T98A8 097:048.024 - 0.645ms returns 2 (0x2) -T98A8 097:048.176 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:048.248 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 097:048.664 Data: 40 C4 01 20 -T98A8 097:048.800 - 0.615ms returns 4 (0x4) -T98A8 097:048.896 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:048.960 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 097:049.560 Data: 01 00 00 00 -T98A8 097:049.720 - 0.827ms returns 4 (0x4) -T98A8 097:049.928 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:050.040 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 097:050.872 Data: 00 00 00 00 -T98A8 097:051.664 - 1.735ms returns 4 (0x4) -T98A8 097:051.872 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:052.016 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 097:053.040 Data: 00 00 00 00 -T98A8 097:053.200 - 1.326ms returns 4 (0x4) -T98A8 097:053.304 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:053.368 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 097:053.712 Data: 80 56 43 BC -T98A8 097:053.808 - 0.508ms returns 4 (0x4) -T98A8 097:053.880 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:053.960 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 097:054.392 Data: 00 00 00 00 -T98A8 097:054.528 - 0.646ms returns 4 (0x4) -T98A8 097:054.640 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:054.712 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 097:055.088 Data: 01 -T98A8 097:055.208 - 0.564ms returns 1 (0x1) -T98A8 097:055.280 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:055.344 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 097:055.728 Data: 01 -T98A8 097:055.848 - 0.569ms returns 1 (0x1) -T98A8 097:055.928 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:055.992 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 097:056.336 Data: 03 -T98A8 097:056.464 - 0.534ms returns 1 (0x1) -T98A8 097:056.528 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:056.600 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 097:056.952 Data: 01 -T98A8 097:057.064 - 0.527ms returns 1 (0x1) -T98A8 097:057.128 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:057.200 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 097:057.552 Data: 02 -T98A8 097:057.688 - 0.557ms returns 1 (0x1) -T98A8 097:057.768 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:057.848 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 097:058.256 Data: 01 -T98A8 097:058.376 - 0.607ms returns 1 (0x1) -T98A8 097:058.464 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:058.560 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 097:058.936 Data: 02 -T98A8 097:059.184 - 0.721ms returns 1 (0x1) -T98A8 097:060.152 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:060.248 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 097:060.592 Data: 01 -T98A8 097:060.720 - 0.562ms returns 1 (0x1) -T98A8 097:060.792 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:060.880 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 097:061.904 Data: 00 00 00 00 -T98A8 097:062.032 - 1.238ms returns 4 (0x4) -T98A8 097:062.168 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:062.232 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 097:062.568 Data: 00 -T98A8 097:062.664 - 0.497ms returns 1 (0x1) -T98A8 097:062.984 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:063.064 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 097:063.392 Data: 00 -T98A8 097:063.488 - 0.507ms returns 1 (0x1) -T98A8 097:063.624 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:063.688 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 097:064.080 Data: 10 CF 01 20 -T98A8 097:064.176 - 0.559ms returns 4 (0x4) -T98A8 097:064.264 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:064.328 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 097:064.752 Data: 49 CF 01 20 -T98A8 097:064.848 - 0.586ms returns 4 (0x4) -T358C 097:065.008 JLINK_IsHalted() -T358C 097:065.360 - 0.346ms returns FALSE -T358C 097:166.048 JLINK_HasError() -T358C 097:166.392 JLINK_IsHalted() -T358C 097:167.024 - 0.628ms returns FALSE -T358C 097:267.856 JLINK_HasError() -T358C 097:268.080 JLINK_IsHalted() -T358C 097:268.632 - 0.551ms returns FALSE -T358C 097:369.656 JLINK_HasError() -T358C 097:369.856 JLINK_IsHalted() -T358C 097:370.856 - 0.996ms returns FALSE -T358C 097:471.888 JLINK_HasError() -T358C 097:472.080 JLINK_IsHalted() -T358C 097:472.520 - 0.440ms returns FALSE -T358C 097:573.200 JLINK_HasError() -T358C 097:573.448 JLINK_HasError() -T358C 097:573.560 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 097:573.704 Data: F7 AE 0E 05 -T358C 097:573.872 Debug reg: DWT_CYCCNT -T358C 097:574.032 - 0.472ms returns 1 (0x1) -T98A8 097:574.624 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 097:574.784 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 097:575.480 Data: 0F 00 04 20 00 F1 07 C0 B0 84 05 80 61 F9 74 58 ... -T98A8 097:575.624 - 1.000ms returns 25 (0x19) -T98A8 097:575.728 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:575.792 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 097:576.232 Data: 02 -T98A8 097:576.368 - 0.636ms returns 1 (0x1) -T98A8 097:576.488 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:576.552 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 097:577.264 Data: 00 00 00 00 -T98A8 097:577.424 - 0.933ms returns 4 (0x4) -T98A8 097:577.496 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:577.584 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 097:578.160 Data: 00 00 00 00 -T98A8 097:578.288 - 0.793ms returns 4 (0x4) -T98A8 097:578.360 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:578.440 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 097:578.968 Data: 80 56 43 BC -T98A8 097:579.104 - 0.743ms returns 4 (0x4) -T98A8 097:579.184 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:579.272 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 097:579.816 Data: 00 00 00 00 -T98A8 097:579.960 - 0.774ms returns 4 (0x4) -T98A8 097:580.048 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:580.120 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 097:580.544 Data: 01 -T98A8 097:580.672 - 0.628ms returns 1 (0x1) -T98A8 097:580.744 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:580.808 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 097:581.296 Data: 01 -T98A8 097:581.432 - 0.689ms returns 1 (0x1) -T98A8 097:581.512 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:581.592 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 097:582.160 Data: 02 -T98A8 097:582.288 - 0.779ms returns 1 (0x1) -T98A8 097:582.360 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:582.424 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 097:582.896 Data: 01 -T98A8 097:583.024 - 0.666ms returns 1 (0x1) -T98A8 097:583.096 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:583.160 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 097:583.576 Data: 03 -T98A8 097:583.704 - 0.610ms returns 1 (0x1) -T98A8 097:583.776 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:583.840 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 097:584.288 Data: 01 -T98A8 097:584.424 - 0.642ms returns 1 (0x1) -T98A8 097:584.496 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:584.560 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 097:584.936 Data: 03 -T98A8 097:585.064 - 0.573ms returns 1 (0x1) -T98A8 097:585.808 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:585.904 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 097:586.320 Data: 01 -T98A8 097:586.448 - 0.639ms returns 1 (0x1) -T98A8 097:586.512 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 097:586.576 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 097:587.152 Data: 00 00 -T98A8 097:587.280 - 0.768ms returns 2 (0x2) -T98A8 097:587.352 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 097:587.416 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 097:587.848 Data: 00 00 -T98A8 097:587.952 - 0.593ms returns 2 (0x2) -T98A8 097:588.080 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:588.144 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 097:588.512 Data: 40 C4 01 20 -T98A8 097:588.600 - 0.527ms returns 4 (0x4) -T98A8 097:588.688 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:588.752 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 097:589.168 Data: 01 00 00 00 -T98A8 097:589.264 - 0.568ms returns 4 (0x4) -T98A8 097:589.336 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:589.400 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 097:589.744 Data: 00 00 00 00 -T98A8 097:589.840 - 0.497ms returns 4 (0x4) -T98A8 097:589.904 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:589.968 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 097:590.328 Data: 00 00 00 00 -T98A8 097:590.416 - 0.519ms returns 4 (0x4) -T98A8 097:590.496 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:590.560 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 097:590.904 Data: 80 56 43 BC -T98A8 097:591.056 - 0.554ms returns 4 (0x4) -T98A8 097:591.144 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:591.232 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 097:591.880 Data: 00 00 00 00 -T98A8 097:592.592 - 1.451ms returns 4 (0x4) -T98A8 097:593.056 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:593.296 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 097:593.968 Data: 01 -T98A8 097:594.096 - 1.034ms returns 1 (0x1) -T98A8 097:594.176 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:594.240 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 097:594.632 Data: 01 -T98A8 097:594.728 - 0.554ms returns 1 (0x1) -T98A8 097:594.800 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:594.864 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 097:595.264 Data: 03 -T98A8 097:595.376 - 0.578ms returns 1 (0x1) -T98A8 097:595.440 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:595.504 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 097:595.952 Data: 01 -T98A8 097:596.048 - 0.601ms returns 1 (0x1) -T98A8 097:596.112 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:596.176 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 097:596.560 Data: 02 -T98A8 097:596.656 - 0.539ms returns 1 (0x1) -T98A8 097:596.720 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:596.784 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 097:597.160 Data: 01 -T98A8 097:597.256 - 0.530ms returns 1 (0x1) -T98A8 097:597.320 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:597.376 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 097:597.744 Data: 02 -T98A8 097:597.840 - 0.520ms returns 1 (0x1) -T98A8 097:598.416 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:598.512 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 097:598.960 Data: 01 -T98A8 097:599.088 - 0.666ms returns 1 (0x1) -T98A8 097:599.160 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:599.224 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 097:599.640 Data: 00 00 00 00 -T98A8 097:599.760 - 0.603ms returns 4 (0x4) -T98A8 097:599.888 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:599.952 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 097:600.368 Data: 00 -T98A8 097:600.488 - 0.605ms returns 1 (0x1) -T98A8 097:600.840 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 097:600.912 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 097:601.384 Data: 00 -T98A8 097:601.536 - 0.701ms returns 1 (0x1) -T98A8 097:601.728 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:601.808 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 097:602.192 Data: 10 CF 01 20 -T98A8 097:602.328 - 0.601ms returns 4 (0x4) -T98A8 097:602.424 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 097:602.496 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 097:602.856 Data: 49 CF 01 20 -T98A8 097:603.024 - 0.599ms returns 4 (0x4) -T358C 097:603.240 JLINK_IsHalted() -T358C 097:603.624 - 0.383ms returns FALSE -T358C 097:703.824 JLINK_HasError() -T358C 097:704.088 JLINK_IsHalted() -T358C 097:704.704 - 0.609ms returns FALSE -T358C 097:805.936 JLINK_HasError() -T358C 097:806.096 JLINK_IsHalted() -T358C 097:806.544 - 0.436ms returns FALSE -T358C 097:906.816 JLINK_HasError() -T358C 097:907.024 JLINK_IsHalted() -T358C 097:908.072 - 1.040ms returns FALSE -T358C 098:009.072 JLINK_HasError() -T358C 098:009.264 JLINK_IsHalted() -T358C 098:010.392 - 1.130ms returns FALSE -T358C 098:111.328 JLINK_HasError() -T358C 098:111.528 JLINK_HasError() -T358C 098:111.616 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 098:111.704 Data: F7 AE 0E 05 -T358C 098:111.800 Debug reg: DWT_CYCCNT -T358C 098:111.888 - 0.272ms returns 1 (0x1) -T98A8 098:112.200 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 098:112.352 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 098:112.936 Data: 0F 00 04 20 00 F1 07 C0 B0 84 05 80 61 F9 74 58 ... -T98A8 098:113.072 - 0.874ms returns 25 (0x19) -T98A8 098:113.168 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:113.240 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 098:113.616 Data: 02 -T98A8 098:113.712 - 0.538ms returns 1 (0x1) -T98A8 098:113.816 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:113.888 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 098:114.408 Data: 00 00 00 00 -T98A8 098:114.520 - 0.702ms returns 4 (0x4) -T98A8 098:114.608 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:114.688 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 098:115.192 Data: 00 00 00 00 -T98A8 098:115.472 - 0.856ms returns 4 (0x4) -T98A8 098:115.776 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:115.976 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 098:116.936 Data: 80 56 43 BC -T98A8 098:117.072 - 1.305ms returns 4 (0x4) -T98A8 098:117.152 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:117.232 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 098:117.712 Data: 00 00 00 00 -T98A8 098:117.840 - 0.691ms returns 4 (0x4) -T98A8 098:117.920 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:117.984 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 098:118.344 Data: 01 -T98A8 098:118.480 - 0.556ms returns 1 (0x1) -T98A8 098:118.552 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:118.624 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 098:119.024 Data: 01 -T98A8 098:119.120 - 0.573ms returns 1 (0x1) -T98A8 098:119.200 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:119.272 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 098:119.712 Data: 02 -T98A8 098:119.800 - 0.603ms returns 1 (0x1) -T98A8 098:119.864 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:119.928 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 098:120.352 Data: 01 -T98A8 098:120.456 - 0.586ms returns 1 (0x1) -T98A8 098:120.528 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:120.600 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 098:120.976 Data: 03 -T98A8 098:121.104 - 0.576ms returns 1 (0x1) -T98A8 098:121.176 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:121.256 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 098:121.632 Data: 01 -T98A8 098:121.728 - 0.551ms returns 1 (0x1) -T98A8 098:121.792 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:121.856 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 098:122.240 Data: 03 -T98A8 098:122.344 - 0.548ms returns 1 (0x1) -T98A8 098:122.408 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:122.472 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 098:122.840 Data: 01 -T98A8 098:122.928 - 0.523ms returns 1 (0x1) -T98A8 098:122.992 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 098:123.056 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 098:123.480 Data: 00 00 -T98A8 098:123.576 - 0.579ms returns 2 (0x2) -T98A8 098:123.648 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 098:123.712 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 098:124.240 Data: 00 00 -T98A8 098:124.400 - 0.745ms returns 2 (0x2) -T98A8 098:124.568 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:124.656 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 098:125.008 Data: 40 C4 01 20 -T98A8 098:125.232 - 0.667ms returns 4 (0x4) -T98A8 098:125.472 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:125.584 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 098:125.952 Data: 01 00 00 00 -T98A8 098:126.072 - 0.601ms returns 4 (0x4) -T98A8 098:126.160 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:126.224 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 098:126.616 Data: 00 00 00 00 -T98A8 098:126.720 - 0.560ms returns 4 (0x4) -T98A8 098:126.800 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:126.864 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 098:127.240 Data: 00 00 00 00 -T98A8 098:127.328 - 0.532ms returns 4 (0x4) -T98A8 098:127.416 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:127.480 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 098:127.856 Data: 80 56 43 BC -T98A8 098:127.976 - 0.562ms returns 4 (0x4) -T98A8 098:128.048 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:128.112 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 098:128.464 Data: 00 00 00 00 -T98A8 098:128.560 - 0.512ms returns 4 (0x4) -T98A8 098:128.640 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:128.704 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 098:129.048 Data: 01 -T98A8 098:129.152 - 0.513ms returns 1 (0x1) -T98A8 098:129.232 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:129.296 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 098:129.680 Data: 01 -T98A8 098:129.832 - 0.600ms returns 1 (0x1) -T98A8 098:129.920 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:130.000 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 098:130.360 Data: 03 -T98A8 098:130.480 - 0.564ms returns 1 (0x1) -T98A8 098:130.568 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:130.736 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 098:131.312 Data: 01 -T98A8 098:131.440 - 0.872ms returns 1 (0x1) -T98A8 098:131.528 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:131.600 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 098:131.936 Data: 02 -T98A8 098:132.040 - 0.515ms returns 1 (0x1) -T98A8 098:132.112 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:132.176 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 098:132.568 Data: 01 -T98A8 098:132.688 - 0.587ms returns 1 (0x1) -T98A8 098:132.760 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:132.824 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 098:133.168 Data: 02 -T98A8 098:133.272 - 0.507ms returns 1 (0x1) -T98A8 098:133.336 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:133.400 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 098:133.736 Data: 01 -T98A8 098:133.928 - 0.585ms returns 1 (0x1) -T98A8 098:134.016 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:134.128 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 098:134.488 Data: 00 00 00 00 -T98A8 098:134.608 - 0.598ms returns 4 (0x4) -T98A8 098:134.736 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:134.800 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 098:135.176 Data: 00 -T98A8 098:135.280 - 0.545ms returns 1 (0x1) -T98A8 098:135.624 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:135.696 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 098:136.024 Data: 00 -T98A8 098:136.128 - 0.505ms returns 1 (0x1) -T98A8 098:136.264 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:136.328 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 098:136.680 Data: 10 CF 01 20 -T98A8 098:136.768 - 0.510ms returns 4 (0x4) -T98A8 098:136.856 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:136.920 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 098:137.296 Data: 49 CF 01 20 -T98A8 098:137.392 - 0.537ms returns 4 (0x4) -T358C 098:137.552 JLINK_IsHalted() -T358C 098:137.920 - 0.364ms returns FALSE -T358C 098:238.152 JLINK_HasError() -T358C 098:238.344 JLINK_IsHalted() -T358C 098:238.760 - 0.414ms returns FALSE -T358C 098:339.648 JLINK_HasError() -T358C 098:339.896 JLINK_IsHalted() -T358C 098:340.496 - 0.595ms returns FALSE -T358C 098:440.752 JLINK_HasError() -T358C 098:440.976 JLINK_IsHalted() -T358C 098:441.496 - 0.526ms returns FALSE -T358C 098:541.656 JLINK_HasError() -T358C 098:541.816 JLINK_IsHalted() -T358C 098:542.192 - 0.368ms returns FALSE -T358C 098:642.784 JLINK_HasError() -T358C 098:642.976 JLINK_HasError() -T358C 098:643.040 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 098:643.120 Data: F7 AE 0E 05 -T358C 098:643.232 Debug reg: DWT_CYCCNT -T358C 098:643.320 - 0.279ms returns 1 (0x1) -T98A8 098:643.632 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 098:643.792 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 098:644.376 Data: 0F 00 04 20 00 F1 07 C0 4F 87 05 80 61 F9 74 58 ... -T98A8 098:644.520 - 0.880ms returns 25 (0x19) -T98A8 098:644.616 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:644.688 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 098:645.008 Data: 02 -T98A8 098:645.104 - 0.494ms returns 1 (0x1) -T98A8 098:645.232 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:645.296 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 098:645.760 Data: 00 00 00 00 -T98A8 098:645.848 - 0.626ms returns 4 (0x4) -T98A8 098:645.928 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:646.000 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 098:646.472 Data: 00 00 00 00 -T98A8 098:646.568 - 0.642ms returns 4 (0x4) -T98A8 098:646.632 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:646.696 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 098:647.200 Data: 80 56 43 BC -T98A8 098:647.352 - 0.721ms returns 4 (0x4) -T98A8 098:647.440 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:647.520 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 098:647.992 Data: 00 00 00 00 -T98A8 098:648.096 - 0.653ms returns 4 (0x4) -T98A8 098:648.224 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:648.296 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 098:648.656 Data: 02 -T98A8 098:648.784 - 0.565ms returns 1 (0x1) -T98A8 098:648.920 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:649.008 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 098:649.496 Data: 01 -T98A8 098:649.672 - 0.751ms returns 1 (0x1) -T98A8 098:649.768 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:649.936 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 098:650.400 Data: 02 -T98A8 098:650.520 - 0.757ms returns 1 (0x1) -T98A8 098:650.592 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:650.656 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 098:651.040 Data: 01 -T98A8 098:651.160 - 0.572ms returns 1 (0x1) -T98A8 098:651.240 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:651.304 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 098:651.664 Data: 03 -T98A8 098:651.760 - 0.528ms returns 1 (0x1) -T98A8 098:651.832 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:651.896 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 098:652.264 Data: 01 -T98A8 098:652.352 - 0.522ms returns 1 (0x1) -T98A8 098:652.424 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:652.496 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 098:652.840 Data: 03 -T98A8 098:653.008 - 0.593ms returns 1 (0x1) -T98A8 098:653.104 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:653.176 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 098:653.584 Data: 01 -T98A8 098:653.712 - 0.618ms returns 1 (0x1) -T98A8 098:653.784 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 098:653.848 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 098:654.248 Data: 00 00 -T98A8 098:654.368 - 0.580ms returns 2 (0x2) -T98A8 098:654.440 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 098:654.504 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 098:654.896 Data: 00 00 -T98A8 098:655.032 - 0.596ms returns 2 (0x2) -T98A8 098:655.168 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:655.272 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 098:655.632 Data: 40 C4 01 20 -T98A8 098:655.744 - 0.577ms returns 4 (0x4) -T98A8 098:655.856 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:655.928 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 098:656.272 Data: 01 00 00 00 -T98A8 098:656.432 - 0.577ms returns 4 (0x4) -T98A8 098:656.528 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:656.624 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 098:657.016 Data: 00 00 00 00 -T98A8 098:657.160 - 0.624ms returns 4 (0x4) -T98A8 098:657.304 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:657.408 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 098:657.824 Data: 00 00 00 00 -T98A8 098:657.944 - 0.641ms returns 4 (0x4) -T98A8 098:658.032 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:658.096 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 098:658.568 Data: 80 56 43 BC -T98A8 098:658.856 - 0.822ms returns 4 (0x4) -T98A8 098:659.040 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:659.184 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 098:659.608 Data: 00 00 00 00 -T98A8 098:659.752 - 0.714ms returns 4 (0x4) -T98A8 098:659.856 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:659.936 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 098:660.336 Data: 03 -T98A8 098:660.464 - 0.612ms returns 1 (0x1) -T98A8 098:661.224 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:661.320 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 098:661.672 Data: 01 -T98A8 098:661.816 - 0.594ms returns 1 (0x1) -T98A8 098:661.904 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:661.984 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 098:662.368 Data: 03 -T98A8 098:662.480 - 0.581ms returns 1 (0x1) -T98A8 098:662.568 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:662.640 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 098:663.032 Data: 01 -T98A8 098:663.184 - 0.626ms returns 1 (0x1) -T98A8 098:663.280 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:663.352 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 098:663.728 Data: 02 -T98A8 098:663.864 - 0.594ms returns 1 (0x1) -T98A8 098:663.952 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:664.024 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 098:664.384 Data: 01 -T98A8 098:664.544 - 0.595ms returns 1 (0x1) -T98A8 098:664.640 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:664.728 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 098:665.088 Data: 02 -T98A8 098:665.192 - 0.548ms returns 1 (0x1) -T98A8 098:665.256 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:665.320 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 098:665.672 Data: 01 -T98A8 098:665.792 - 0.532ms returns 1 (0x1) -T98A8 098:665.872 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:665.944 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 098:666.336 Data: 00 00 00 00 -T98A8 098:666.448 - 0.578ms returns 4 (0x4) -T98A8 098:666.576 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:666.648 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 098:667.112 Data: 00 -T98A8 098:667.728 - 1.144ms returns 1 (0x1) -T98A8 098:668.464 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 098:668.536 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 098:668.952 Data: 00 -T98A8 098:669.080 - 0.619ms returns 1 (0x1) -T98A8 098:669.232 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:669.304 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 098:669.720 Data: 10 CF 01 20 -T98A8 098:669.848 - 0.612ms returns 4 (0x4) -T98A8 098:669.944 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 098:670.016 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 098:670.384 Data: 49 CF 01 20 -T98A8 098:670.480 - 0.537ms returns 4 (0x4) -T358C 098:670.656 JLINK_IsHalted() -T358C 098:671.032 - 0.377ms returns FALSE -T358C 098:772.136 JLINK_HasError() -T358C 098:772.272 JLINK_IsHalted() -T358C 098:772.808 - 0.523ms returns FALSE -T358C 098:873.360 JLINK_HasError() -T358C 098:873.672 JLINK_IsHalted() -T358C 098:874.312 - 0.634ms returns FALSE -T358C 098:975.144 JLINK_HasError() -T358C 098:975.464 JLINK_IsHalted() -T358C 098:976.080 - 0.616ms returns FALSE -T358C 099:076.888 JLINK_HasError() -T358C 099:077.136 JLINK_IsHalted() -T358C 099:077.592 - 0.452ms returns FALSE -T358C 099:177.872 JLINK_HasError() -T358C 099:178.064 JLINK_HasError() -T358C 099:178.120 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 099:178.192 Data: F7 AE 0E 05 -T358C 099:178.280 Debug reg: DWT_CYCCNT -T358C 099:178.360 - 0.241ms returns 1 (0x1) -T98A8 099:178.760 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 099:179.032 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 099:179.736 Data: 0F 00 04 20 00 F1 07 C0 4F 87 05 80 61 F9 74 58 ... -T98A8 099:179.888 - 1.137ms returns 25 (0x19) -T98A8 099:179.992 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:180.080 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 099:180.928 Data: 02 -T98A8 099:181.096 - 1.104ms returns 1 (0x1) -T98A8 099:181.240 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:181.328 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 099:182.328 Data: 00 00 00 00 -T98A8 099:182.480 - 1.240ms returns 4 (0x4) -T98A8 099:182.576 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:182.672 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 099:183.248 Data: 00 00 00 00 -T98A8 099:183.408 - 0.832ms returns 4 (0x4) -T98A8 099:183.504 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:183.576 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 099:184.128 Data: 80 56 43 BC -T98A8 099:184.288 - 0.784ms returns 4 (0x4) -T98A8 099:184.424 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:184.512 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 099:185.048 Data: 00 00 00 00 -T98A8 099:185.168 - 0.753ms returns 4 (0x4) -T98A8 099:185.256 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:185.328 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 099:185.680 Data: 02 -T98A8 099:185.808 - 0.550ms returns 1 (0x1) -T98A8 099:185.904 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:185.976 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 099:186.360 Data: 01 -T98A8 099:186.496 - 0.587ms returns 1 (0x1) -T98A8 099:186.568 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:186.632 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 099:187.000 Data: 02 -T98A8 099:187.120 - 0.553ms returns 1 (0x1) -T98A8 099:187.184 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:187.248 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 099:187.640 Data: 01 -T98A8 099:187.784 - 0.593ms returns 1 (0x1) -T98A8 099:187.864 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:187.944 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 099:188.880 Data: 03 -T98A8 099:189.000 - 1.132ms returns 1 (0x1) -T98A8 099:189.072 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:189.136 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 099:189.472 Data: 01 -T98A8 099:189.568 - 0.501ms returns 1 (0x1) -T98A8 099:189.648 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:189.712 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 099:190.056 Data: 03 -T98A8 099:190.160 - 0.519ms returns 1 (0x1) -T98A8 099:190.232 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:190.304 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 099:190.664 Data: 01 -T98A8 099:190.768 - 0.534ms returns 1 (0x1) -T98A8 099:190.840 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 099:190.912 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 099:191.320 Data: 00 00 -T98A8 099:191.440 - 0.596ms returns 2 (0x2) -T98A8 099:191.512 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 099:191.584 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 099:191.984 Data: 00 00 -T98A8 099:192.096 - 0.581ms returns 2 (0x2) -T98A8 099:192.280 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:192.360 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 099:192.696 Data: 40 C4 01 20 -T98A8 099:192.856 - 0.578ms returns 4 (0x4) -T98A8 099:193.008 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:193.080 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 099:193.720 Data: 01 00 00 00 -T98A8 099:193.824 - 0.817ms returns 4 (0x4) -T98A8 099:193.904 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:193.976 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 099:194.296 Data: 00 00 00 00 -T98A8 099:194.400 - 0.493ms returns 4 (0x4) -T98A8 099:194.480 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:194.552 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 099:194.912 Data: 00 00 00 00 -T98A8 099:195.032 - 0.554ms returns 4 (0x4) -T98A8 099:195.120 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:195.200 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 099:195.560 Data: 80 56 43 BC -T98A8 099:195.696 - 0.564ms returns 4 (0x4) -T98A8 099:195.784 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:195.856 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 099:196.232 Data: 00 00 00 00 -T98A8 099:196.336 - 0.557ms returns 4 (0x4) -T98A8 099:196.432 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:196.520 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 099:196.880 Data: 03 -T98A8 099:197.088 - 0.654ms returns 1 (0x1) -T98A8 099:198.040 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:198.152 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 099:198.512 Data: 01 -T98A8 099:198.648 - 0.606ms returns 1 (0x1) -T98A8 099:198.736 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:198.816 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 099:199.304 Data: 03 -T98A8 099:199.448 - 0.709ms returns 1 (0x1) -T98A8 099:199.632 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:199.744 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 099:200.384 Data: 01 -T98A8 099:201.440 - 1.811ms returns 1 (0x1) -T98A8 099:201.608 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:201.696 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 099:202.456 Data: 02 -T98A8 099:202.584 - 0.984ms returns 1 (0x1) -T98A8 099:202.656 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:202.720 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 099:203.072 Data: 01 -T98A8 099:203.168 - 0.511ms returns 1 (0x1) -T98A8 099:203.232 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:203.304 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 099:203.664 Data: 02 -T98A8 099:203.784 - 0.547ms returns 1 (0x1) -T98A8 099:203.856 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:203.936 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 099:204.304 Data: 01 -T98A8 099:204.400 - 0.534ms returns 1 (0x1) -T98A8 099:204.464 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:204.528 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 099:204.872 Data: 00 00 00 00 -T98A8 099:204.968 - 0.496ms returns 4 (0x4) -T98A8 099:205.080 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:205.144 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 099:205.488 Data: 00 -T98A8 099:205.584 - 0.498ms returns 1 (0x1) -T98A8 099:205.904 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:205.976 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 099:206.368 Data: 00 -T98A8 099:206.464 - 0.560ms returns 1 (0x1) -T98A8 099:206.600 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:206.672 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 099:207.120 Data: 10 CF 01 20 -T98A8 099:207.288 - 0.693ms returns 4 (0x4) -T98A8 099:207.424 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:207.520 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 099:207.968 Data: 49 CF 01 20 -T98A8 099:208.088 - 0.667ms returns 4 (0x4) -T358C 099:208.272 JLINK_IsHalted() -T358C 099:208.616 - 0.340ms returns FALSE -T358C 099:309.368 JLINK_HasError() -T358C 099:310.120 JLINK_IsHalted() -T358C 099:310.592 - 0.471ms returns FALSE -T358C 099:411.112 JLINK_HasError() -T358C 099:411.280 JLINK_IsHalted() -T358C 099:411.784 - 0.506ms returns FALSE -T358C 099:512.296 JLINK_HasError() -T358C 099:512.440 JLINK_IsHalted() -T358C 099:512.832 - 0.387ms returns FALSE -T358C 099:613.200 JLINK_HasError() -T358C 099:613.424 JLINK_IsHalted() -T358C 099:613.856 - 0.425ms returns FALSE -T358C 099:715.032 JLINK_HasError() -T358C 099:715.184 JLINK_HasError() -T358C 099:715.256 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 099:715.344 Data: F7 AE 0E 05 -T358C 099:715.440 Debug reg: DWT_CYCCNT -T358C 099:715.520 - 0.263ms returns 1 (0x1) -T98A8 099:715.792 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 099:715.928 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 099:716.592 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 74 58 ... -T98A8 099:716.752 - 0.968ms returns 25 (0x19) -T98A8 099:716.864 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:716.944 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 099:717.408 Data: 02 -T98A8 099:717.536 - 0.675ms returns 1 (0x1) -T98A8 099:717.680 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:717.760 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 099:718.272 Data: 00 00 00 00 -T98A8 099:718.368 - 0.687ms returns 4 (0x4) -T98A8 099:718.440 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:718.504 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 099:718.992 Data: 00 00 00 00 -T98A8 099:719.104 - 0.664ms returns 4 (0x4) -T98A8 099:719.216 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:719.312 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 099:719.872 Data: 80 56 43 BC -T98A8 099:719.968 - 0.749ms returns 4 (0x4) -T98A8 099:720.040 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:720.104 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 099:720.608 Data: 00 00 00 00 -T98A8 099:720.704 - 0.663ms returns 4 (0x4) -T98A8 099:720.768 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:720.832 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 099:721.272 Data: 03 -T98A8 099:721.384 - 0.610ms returns 1 (0x1) -T98A8 099:721.504 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:721.584 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 099:722.024 Data: 01 -T98A8 099:722.152 - 0.648ms returns 1 (0x1) -T98A8 099:722.232 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:722.304 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 099:722.720 Data: 02 -T98A8 099:722.816 - 0.584ms returns 1 (0x1) -T98A8 099:722.880 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:722.952 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 099:723.312 Data: 01 -T98A8 099:723.408 - 0.530ms returns 1 (0x1) -T98A8 099:723.472 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:723.536 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 099:723.920 Data: 03 -T98A8 099:724.016 - 0.542ms returns 1 (0x1) -T98A8 099:724.128 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:724.232 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 099:724.712 Data: 01 -T98A8 099:724.912 - 0.786ms returns 1 (0x1) -T98A8 099:725.008 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:725.128 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 099:725.560 Data: 03 -T98A8 099:725.704 - 0.689ms returns 1 (0x1) -T98A8 099:725.776 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:725.840 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 099:726.272 Data: 01 -T98A8 099:726.416 - 0.642ms returns 1 (0x1) -T98A8 099:726.496 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 099:726.576 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 099:727.024 Data: 00 00 -T98A8 099:727.144 - 0.643ms returns 2 (0x2) -T98A8 099:727.216 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 099:727.296 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 099:727.688 Data: 00 00 -T98A8 099:727.784 - 0.566ms returns 2 (0x2) -T98A8 099:727.960 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:728.024 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 099:728.424 Data: 40 C4 01 20 -T98A8 099:728.528 - 0.561ms returns 4 (0x4) -T98A8 099:728.672 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:728.800 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 099:729.288 Data: 01 00 00 00 -T98A8 099:729.408 - 0.737ms returns 4 (0x4) -T98A8 099:729.504 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:729.584 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 099:729.952 Data: 00 00 00 00 -T98A8 099:730.048 - 0.543ms returns 4 (0x4) -T98A8 099:730.120 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:730.224 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 099:730.560 Data: 00 00 00 00 -T98A8 099:730.720 - 0.600ms returns 4 (0x4) -T98A8 099:730.824 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:730.896 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 099:731.280 Data: 80 56 43 BC -T98A8 099:731.416 - 0.600ms returns 4 (0x4) -T98A8 099:731.504 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:731.584 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 099:731.952 Data: 00 00 00 00 -T98A8 099:732.064 - 0.558ms returns 4 (0x4) -T98A8 099:732.160 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:732.240 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 099:732.712 Data: 02 -T98A8 099:732.880 - 0.724ms returns 1 (0x1) -T98A8 099:733.696 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:733.800 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 099:734.168 Data: 01 -T98A8 099:734.304 - 0.607ms returns 1 (0x1) -T98A8 099:734.376 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:734.448 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 099:734.816 Data: 03 -T98A8 099:734.936 - 0.562ms returns 1 (0x1) -T98A8 099:735.008 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:735.072 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 099:735.520 Data: 01 -T98A8 099:735.616 - 0.610ms returns 1 (0x1) -T98A8 099:735.680 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:735.744 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 099:736.152 Data: 02 -T98A8 099:736.304 - 0.618ms returns 1 (0x1) -T98A8 099:736.384 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:736.464 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 099:737.472 Data: 01 -T98A8 099:737.648 - 1.261ms returns 1 (0x1) -T98A8 099:737.728 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:737.808 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 099:738.280 Data: 02 -T98A8 099:738.440 - 0.709ms returns 1 (0x1) -T98A8 099:738.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:738.600 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 099:739.168 Data: 01 -T98A8 099:739.352 - 0.832ms returns 1 (0x1) -T98A8 099:739.440 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:739.576 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 099:740.128 Data: 00 00 00 00 -T98A8 099:740.272 - 0.830ms returns 4 (0x4) -T98A8 099:740.384 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:740.472 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 099:741.584 Data: 00 -T98A8 099:741.720 - 1.336ms returns 1 (0x1) -T98A8 099:742.096 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 099:742.184 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 099:743.152 Data: 00 -T98A8 099:743.760 - 1.663ms returns 1 (0x1) -T98A8 099:743.960 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:744.048 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 099:744.424 Data: 10 CF 01 20 -T98A8 099:744.576 - 0.616ms returns 4 (0x4) -T98A8 099:744.696 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 099:744.776 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 099:745.312 Data: 49 CF 01 20 -T98A8 099:745.456 - 0.763ms returns 4 (0x4) -T358C 099:745.656 JLINK_IsHalted() -T358C 099:746.624 - 0.960ms returns FALSE -T358C 099:847.720 JLINK_HasError() -T358C 099:847.904 JLINK_IsHalted() -T358C 099:848.368 - 0.467ms returns FALSE -T358C 099:948.944 JLINK_HasError() -T358C 099:949.136 JLINK_IsHalted() -T358C 099:949.712 - 0.578ms returns FALSE -T358C 100:050.272 JLINK_HasError() -T358C 100:050.480 JLINK_IsHalted() -T358C 100:050.944 - 0.463ms returns FALSE -T358C 100:152.232 JLINK_HasError() -T358C 100:152.448 JLINK_IsHalted() -T358C 100:152.864 - 0.414ms returns FALSE -T358C 100:253.200 JLINK_HasError() -T358C 100:253.400 JLINK_HasError() -T358C 100:253.464 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 100:253.552 Data: F7 AE 0E 05 -T358C 100:253.648 Debug reg: DWT_CYCCNT -T358C 100:253.744 - 0.278ms returns 1 (0x1) -T98A8 100:254.000 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 100:254.144 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 100:254.784 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 74 58 ... -T98A8 100:254.936 - 0.939ms returns 25 (0x19) -T98A8 100:255.048 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:255.128 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 100:255.552 Data: 02 -T98A8 100:255.664 - 0.615ms returns 1 (0x1) -T98A8 100:255.792 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:255.856 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 100:256.336 Data: 00 00 00 00 -T98A8 100:256.464 - 0.680ms returns 4 (0x4) -T98A8 100:256.544 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:256.616 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 100:257.136 Data: 00 00 00 00 -T98A8 100:257.296 - 0.747ms returns 4 (0x4) -T98A8 100:257.384 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:257.456 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 100:257.968 Data: 80 56 43 BC -T98A8 100:258.088 - 0.705ms returns 4 (0x4) -T98A8 100:258.192 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:258.288 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 100:258.800 Data: 00 00 00 00 -T98A8 100:259.024 - 0.824ms returns 4 (0x4) -T98A8 100:259.152 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:259.224 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 100:259.576 Data: 03 -T98A8 100:259.720 - 0.567ms returns 1 (0x1) -T98A8 100:259.816 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:259.888 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 100:260.304 Data: 01 -T98A8 100:260.432 - 0.614ms returns 1 (0x1) -T98A8 100:260.528 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:260.600 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 100:260.952 Data: 02 -T98A8 100:261.072 - 0.548ms returns 1 (0x1) -T98A8 100:261.144 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:261.224 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 100:261.608 Data: 01 -T98A8 100:261.832 - 0.683ms returns 1 (0x1) -T98A8 100:261.936 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:262.040 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 100:262.448 Data: 03 -T98A8 100:262.552 - 0.613ms returns 1 (0x1) -T98A8 100:262.632 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:262.696 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 100:263.056 Data: 01 -T98A8 100:263.176 - 0.544ms returns 1 (0x1) -T98A8 100:263.264 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:263.344 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 100:263.696 Data: 03 -T98A8 100:263.816 - 0.547ms returns 1 (0x1) -T98A8 100:263.896 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:263.976 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 100:264.328 Data: 01 -T98A8 100:264.432 - 0.537ms returns 1 (0x1) -T98A8 100:264.512 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 100:264.584 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 100:264.976 Data: 00 00 -T98A8 100:265.152 - 0.641ms returns 2 (0x2) -T98A8 100:265.328 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 100:265.392 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 100:265.776 Data: 00 00 -T98A8 100:265.872 - 0.540ms returns 2 (0x2) -T98A8 100:266.032 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:266.096 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 100:266.440 Data: 40 C4 01 20 -T98A8 100:266.528 - 0.501ms returns 4 (0x4) -T98A8 100:266.616 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:266.672 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 100:267.016 Data: 01 00 00 00 -T98A8 100:267.152 - 0.531ms returns 4 (0x4) -T98A8 100:267.256 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:267.336 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 100:267.696 Data: 00 00 00 00 -T98A8 100:267.824 - 0.564ms returns 4 (0x4) -T98A8 100:267.888 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:268.016 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 100:268.432 Data: 00 00 00 00 -T98A8 100:268.528 - 0.637ms returns 4 (0x4) -T98A8 100:268.608 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:268.672 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 100:269.056 Data: 80 56 43 BC -T98A8 100:269.208 - 0.604ms returns 4 (0x4) -T98A8 100:269.296 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:269.392 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 100:269.776 Data: 00 00 00 00 -T98A8 100:269.904 - 0.600ms returns 4 (0x4) -T98A8 100:270.000 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:270.080 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 100:270.440 Data: 02 -T98A8 100:270.552 - 0.557ms returns 1 (0x1) -T98A8 100:271.320 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:271.416 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 100:271.808 Data: 01 -T98A8 100:271.936 - 0.615ms returns 1 (0x1) -T98A8 100:272.016 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:272.080 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 100:272.464 Data: 03 -T98A8 100:272.592 - 0.576ms returns 1 (0x1) -T98A8 100:272.664 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:272.728 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 100:273.072 Data: 01 -T98A8 100:273.168 - 0.500ms returns 1 (0x1) -T98A8 100:273.232 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:273.296 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 100:273.688 Data: 02 -T98A8 100:273.792 - 0.561ms returns 1 (0x1) -T98A8 100:273.864 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:273.920 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 100:274.288 Data: 01 -T98A8 100:274.384 - 0.527ms returns 1 (0x1) -T98A8 100:274.448 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:274.512 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 100:274.896 Data: 02 -T98A8 100:274.992 - 0.536ms returns 1 (0x1) -T98A8 100:275.056 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:275.120 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 100:275.456 Data: 01 -T98A8 100:275.560 - 0.508ms returns 1 (0x1) -T98A8 100:275.632 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:275.688 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 100:276.616 Data: 00 00 00 00 -T98A8 100:276.792 - 1.167ms returns 4 (0x4) -T98A8 100:276.960 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:277.088 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 100:278.160 Data: 00 -T98A8 100:278.288 - 1.321ms returns 1 (0x1) -T98A8 100:278.640 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:278.728 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 100:279.120 Data: 00 -T98A8 100:279.264 - 0.623ms returns 1 (0x1) -T98A8 100:279.440 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:279.536 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 100:279.872 Data: 10 CF 01 20 -T98A8 100:279.976 - 0.528ms returns 4 (0x4) -T98A8 100:280.056 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:280.120 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 100:280.464 Data: 49 CF 01 20 -T98A8 100:280.560 - 0.500ms returns 4 (0x4) -T358C 100:280.728 JLINK_IsHalted() -T358C 100:281.104 - 0.372ms returns FALSE -T358C 100:382.256 JLINK_HasError() -T358C 100:382.576 JLINK_IsHalted() -T358C 100:383.376 - 0.799ms returns FALSE -T358C 100:484.176 JLINK_HasError() -T358C 100:484.376 JLINK_IsHalted() -T358C 100:485.296 - 0.911ms returns FALSE -T358C 100:586.320 JLINK_HasError() -T358C 100:601.568 JLINK_IsHalted() -T358C 100:601.968 - 0.408ms returns FALSE -T358C 100:702.656 JLINK_HasError() -T358C 100:702.824 JLINK_IsHalted() -T358C 100:703.216 - 0.393ms returns FALSE -T358C 100:803.968 JLINK_HasError() -T358C 100:804.168 JLINK_HasError() -T358C 100:804.224 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 100:804.304 Data: F7 AE 0E 05 -T358C 100:804.392 Debug reg: DWT_CYCCNT -T358C 100:804.480 - 0.251ms returns 1 (0x1) -T98A8 100:804.792 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 100:804.968 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 100:805.656 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 74 58 ... -T98A8 100:805.816 - 1.025ms returns 25 (0x19) -T98A8 100:805.936 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:806.016 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 100:806.504 Data: 02 -T98A8 100:806.664 - 0.723ms returns 1 (0x1) -T98A8 100:806.808 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:806.896 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 100:807.424 Data: 00 00 00 00 -T98A8 100:807.560 - 0.746ms returns 4 (0x4) -T98A8 100:807.736 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:807.808 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 100:808.552 Data: 00 00 00 00 -T98A8 100:808.688 - 0.950ms returns 4 (0x4) -T98A8 100:808.752 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:808.824 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 100:809.344 Data: 80 56 43 BC -T98A8 100:809.464 - 0.708ms returns 4 (0x4) -T98A8 100:809.544 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:809.616 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 100:810.776 Data: 00 00 00 00 -T98A8 100:810.920 - 1.370ms returns 4 (0x4) -T98A8 100:810.992 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:811.056 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 100:811.456 Data: 03 -T98A8 100:811.736 - 0.748ms returns 1 (0x1) -T98A8 100:811.888 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:812.032 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 100:812.544 Data: 01 -T98A8 100:812.672 - 0.780ms returns 1 (0x1) -T98A8 100:812.744 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:812.808 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 100:813.312 Data: 02 -T98A8 100:813.632 - 0.889ms returns 1 (0x1) -T98A8 100:813.792 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:813.944 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 100:814.448 Data: 01 -T98A8 100:814.632 - 0.837ms returns 1 (0x1) -T98A8 100:814.736 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:814.832 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 100:815.344 Data: 03 -T98A8 100:815.464 - 0.721ms returns 1 (0x1) -T98A8 100:815.544 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:815.648 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 100:816.384 Data: 01 -T98A8 100:816.592 - 1.049ms returns 1 (0x1) -T98A8 100:816.712 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:816.816 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 100:817.808 Data: 03 -T98A8 100:817.968 - 1.262ms returns 1 (0x1) -T98A8 100:818.064 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:818.152 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 100:818.520 Data: 01 -T98A8 100:818.664 - 0.599ms returns 1 (0x1) -T98A8 100:818.736 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 100:818.800 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 100:819.192 Data: 00 00 -T98A8 100:819.312 - 0.582ms returns 2 (0x2) -T98A8 100:819.384 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 100:819.456 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 100:819.848 Data: 00 00 -T98A8 100:819.952 - 0.558ms returns 2 (0x2) -T98A8 100:820.176 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:820.240 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 100:820.584 Data: 40 C4 01 20 -T98A8 100:820.680 - 0.508ms returns 4 (0x4) -T98A8 100:820.784 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:820.848 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 100:821.200 Data: 01 00 00 00 -T98A8 100:821.304 - 0.519ms returns 4 (0x4) -T98A8 100:821.416 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:821.488 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 100:821.848 Data: 00 00 00 00 -T98A8 100:821.960 - 0.548ms returns 4 (0x4) -T98A8 100:822.040 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:822.112 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 100:822.464 Data: 00 00 00 00 -T98A8 100:822.576 - 0.532ms returns 4 (0x4) -T98A8 100:822.680 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:822.752 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 100:823.120 Data: 80 56 43 BC -T98A8 100:823.248 - 0.565ms returns 4 (0x4) -T98A8 100:823.328 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:823.408 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 100:823.808 Data: 00 00 00 00 -T98A8 100:823.920 - 0.596ms returns 4 (0x4) -T98A8 100:824.048 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:824.120 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 100:824.488 Data: 02 -T98A8 100:824.584 - 0.537ms returns 1 (0x1) -T98A8 100:824.656 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:824.720 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 100:825.048 Data: 01 -T98A8 100:825.136 - 0.490ms returns 1 (0x1) -T98A8 100:825.208 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:825.280 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 100:825.624 Data: 03 -T98A8 100:825.784 - 0.579ms returns 1 (0x1) -T98A8 100:825.872 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:825.952 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 100:826.328 Data: 01 -T98A8 100:826.688 - 0.815ms returns 1 (0x1) -T98A8 100:826.792 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:826.872 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 100:827.736 Data: 02 -T98A8 100:827.904 - 1.108ms returns 1 (0x1) -T98A8 100:827.984 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:828.072 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 100:829.192 Data: 01 -T98A8 100:829.416 - 1.426ms returns 1 (0x1) -T98A8 100:829.544 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:829.616 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 100:829.976 Data: 02 -T98A8 100:830.080 - 0.542ms returns 1 (0x1) -T98A8 100:830.152 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:830.224 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 100:830.576 Data: 01 -T98A8 100:830.736 - 0.586ms returns 1 (0x1) -T98A8 100:830.832 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:830.920 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 100:831.344 Data: 00 00 00 00 -T98A8 100:831.440 - 0.607ms returns 4 (0x4) -T98A8 100:831.632 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:831.704 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 100:832.064 Data: 00 -T98A8 100:832.192 - 0.565ms returns 1 (0x1) -T98A8 100:832.592 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 100:832.672 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 100:833.024 Data: 00 -T98A8 100:833.128 - 0.531ms returns 1 (0x1) -T98A8 100:833.264 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:833.336 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 100:833.720 Data: 10 CF 01 20 -T98A8 100:833.832 - 0.561ms returns 4 (0x4) -T98A8 100:833.968 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 100:834.032 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 100:834.400 Data: 49 CF 01 20 -T98A8 100:834.504 - 0.536ms returns 4 (0x4) -T358C 100:834.712 JLINK_IsHalted() -T358C 100:835.304 - 0.584ms returns FALSE -T358C 100:936.016 JLINK_HasError() -T358C 100:936.208 JLINK_IsHalted() -T358C 100:936.688 - 0.479ms returns FALSE -T358C 101:037.072 JLINK_HasError() -T358C 101:037.328 JLINK_IsHalted() -T358C 101:038.232 - 0.901ms returns FALSE -T358C 101:139.888 JLINK_HasError() -T358C 101:140.144 JLINK_IsHalted() -T358C 101:140.576 - 0.436ms returns FALSE -T358C 101:241.232 JLINK_HasError() -T358C 101:241.432 JLINK_IsHalted() -T358C 101:241.944 - 0.506ms returns FALSE -T358C 101:342.296 JLINK_HasError() -T358C 101:342.544 JLINK_HasError() -T358C 101:342.696 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 101:342.928 Data: F7 AE 0E 05 -T358C 101:343.048 Debug reg: DWT_CYCCNT -T358C 101:343.168 - 0.475ms returns 1 (0x1) -T98A8 101:343.448 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 101:343.568 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 101:344.176 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 74 58 ... -T98A8 101:344.344 - 0.897ms returns 25 (0x19) -T98A8 101:344.480 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:344.568 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 101:344.936 Data: 02 -T98A8 101:345.080 - 0.602ms returns 1 (0x1) -T98A8 101:345.216 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:345.288 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 101:345.816 Data: 00 00 00 00 -T98A8 101:345.960 - 0.742ms returns 4 (0x4) -T98A8 101:346.120 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:346.192 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 101:346.672 Data: 00 00 00 00 -T98A8 101:346.816 - 0.695ms returns 4 (0x4) -T98A8 101:346.888 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:346.960 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 101:347.480 Data: 80 56 43 BC -T98A8 101:347.608 - 0.721ms returns 4 (0x4) -T98A8 101:347.680 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:347.760 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 101:348.264 Data: 00 00 00 00 -T98A8 101:348.368 - 0.685ms returns 4 (0x4) -T98A8 101:348.432 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:348.496 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 101:349.600 Data: 03 -T98A8 101:349.848 - 1.414ms returns 1 (0x1) -T98A8 101:349.976 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:350.088 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 101:350.512 Data: 01 -T98A8 101:350.640 - 0.660ms returns 1 (0x1) -T98A8 101:350.704 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:350.768 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 101:351.128 Data: 02 -T98A8 101:351.280 - 0.571ms returns 1 (0x1) -T98A8 101:351.400 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:351.480 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 101:351.872 Data: 01 -T98A8 101:352.048 - 0.649ms returns 1 (0x1) -T98A8 101:352.152 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:352.232 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 101:352.744 Data: 03 -T98A8 101:352.912 - 0.759ms returns 1 (0x1) -T98A8 101:352.976 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:353.056 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 101:353.424 Data: 01 -T98A8 101:353.592 - 0.611ms returns 1 (0x1) -T98A8 101:353.688 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:353.792 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 101:354.160 Data: 03 -T98A8 101:354.312 - 0.615ms returns 1 (0x1) -T98A8 101:354.392 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:354.496 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 101:354.864 Data: 01 -T98A8 101:355.024 - 0.634ms returns 1 (0x1) -T98A8 101:355.096 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 101:355.168 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 101:355.856 Data: 00 00 -T98A8 101:355.984 - 0.881ms returns 2 (0x2) -T98A8 101:356.048 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 101:356.112 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 101:356.624 Data: 00 00 -T98A8 101:356.784 - 0.741ms returns 2 (0x2) -T98A8 101:357.008 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:357.072 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 101:357.416 Data: 40 C4 01 20 -T98A8 101:357.520 - 0.509ms returns 4 (0x4) -T98A8 101:357.608 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:357.688 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 101:358.128 Data: 01 00 00 00 -T98A8 101:358.288 - 0.685ms returns 4 (0x4) -T98A8 101:358.416 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:358.512 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 101:358.976 Data: 00 00 00 00 -T98A8 101:359.088 - 0.675ms returns 4 (0x4) -T98A8 101:359.160 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:359.232 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 101:359.576 Data: 00 00 00 00 -T98A8 101:359.736 - 0.571ms returns 4 (0x4) -T98A8 101:359.856 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:359.992 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 101:360.440 Data: 80 56 43 BC -T98A8 101:360.560 - 0.703ms returns 4 (0x4) -T98A8 101:360.640 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:360.704 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 101:361.192 Data: 00 00 00 00 -T98A8 101:361.328 - 0.686ms returns 4 (0x4) -T98A8 101:361.416 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:361.480 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 101:361.816 Data: 02 -T98A8 101:361.936 - 0.529ms returns 1 (0x1) -T98A8 101:362.008 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:362.088 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 101:362.744 Data: 01 -T98A8 101:362.928 - 0.911ms returns 1 (0x1) -T98A8 101:363.008 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:363.088 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 101:364.240 Data: 03 -T98A8 101:364.400 - 1.392ms returns 1 (0x1) -T98A8 101:364.528 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:364.640 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 101:365.080 Data: 01 -T98A8 101:365.280 - 0.750ms returns 1 (0x1) -T98A8 101:365.392 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:365.488 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 101:366.592 Data: 02 -T98A8 101:366.832 - 1.441ms returns 1 (0x1) -T98A8 101:366.984 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:367.088 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 101:367.528 Data: 01 -T98A8 101:367.704 - 0.724ms returns 1 (0x1) -T98A8 101:367.800 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:367.872 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 101:368.240 Data: 02 -T98A8 101:368.360 - 0.555ms returns 1 (0x1) -T98A8 101:368.432 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:368.496 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 101:368.864 Data: 01 -T98A8 101:369.000 - 0.567ms returns 1 (0x1) -T98A8 101:369.104 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:369.224 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 101:369.608 Data: 00 00 00 00 -T98A8 101:369.768 - 0.666ms returns 4 (0x4) -T98A8 101:369.992 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:370.072 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 101:370.448 Data: 00 -T98A8 101:370.544 - 0.552ms returns 1 (0x1) -T98A8 101:370.936 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:371.032 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 101:371.400 Data: 00 -T98A8 101:371.528 - 0.588ms returns 1 (0x1) -T98A8 101:371.688 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:371.768 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 101:372.816 Data: 10 CF 01 20 -T98A8 101:372.944 - 1.256ms returns 4 (0x4) -T98A8 101:373.040 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:373.120 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 101:373.544 Data: 49 CF 01 20 -T98A8 101:373.664 - 0.624ms returns 4 (0x4) -T358C 101:373.872 JLINK_IsHalted() -T358C 101:374.568 - 0.699ms returns FALSE -T358C 101:475.384 JLINK_HasError() -T358C 101:475.560 JLINK_IsHalted() -T358C 101:476.056 - 0.495ms returns FALSE -T358C 101:577.424 JLINK_HasError() -T358C 101:577.648 JLINK_IsHalted() -T358C 101:578.136 - 0.488ms returns FALSE -T358C 101:678.576 JLINK_HasError() -T358C 101:678.864 JLINK_IsHalted() -T358C 101:679.408 - 0.546ms returns FALSE -T358C 101:780.440 JLINK_HasError() -T358C 101:780.760 JLINK_IsHalted() -T358C 101:781.416 - 0.655ms returns FALSE -T358C 101:881.952 JLINK_HasError() -T358C 101:882.144 JLINK_HasError() -T358C 101:882.208 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 101:882.296 Data: F7 AE 0E 05 -T358C 101:882.392 Debug reg: DWT_CYCCNT -T358C 101:882.488 - 0.280ms returns 1 (0x1) -T98A8 101:882.888 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 101:883.024 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 101:883.768 Data: 0F 00 04 20 00 F1 07 C0 4F 87 05 80 61 F9 74 58 ... -T98A8 101:884.048 - 1.166ms returns 25 (0x19) -T98A8 101:884.296 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:884.560 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 101:885.432 Data: 02 -T98A8 101:885.568 - 1.275ms returns 1 (0x1) -T98A8 101:885.688 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:885.760 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 101:886.224 Data: 00 00 00 00 -T98A8 101:886.384 - 0.691ms returns 4 (0x4) -T98A8 101:886.472 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:886.544 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 101:887.024 Data: 00 00 00 00 -T98A8 101:887.120 - 0.655ms returns 4 (0x4) -T98A8 101:887.192 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:887.256 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 101:887.824 Data: 80 56 43 BC -T98A8 101:888.056 - 0.861ms returns 4 (0x4) -T98A8 101:888.240 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:888.344 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 101:888.872 Data: 00 00 00 00 -T98A8 101:889.072 - 0.836ms returns 4 (0x4) -T98A8 101:889.168 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:889.232 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 101:889.584 Data: 02 -T98A8 101:889.720 - 0.553ms returns 1 (0x1) -T98A8 101:889.856 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:889.944 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 101:890.832 Data: 01 -T98A8 101:891.112 - 1.253ms returns 1 (0x1) -T98A8 101:891.248 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:891.352 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 101:891.768 Data: 02 -T98A8 101:891.920 - 0.672ms returns 1 (0x1) -T98A8 101:892.000 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:892.080 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 101:892.464 Data: 01 -T98A8 101:892.592 - 0.591ms returns 1 (0x1) -T98A8 101:892.672 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:892.752 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 101:893.136 Data: 03 -T98A8 101:893.264 - 0.585ms returns 1 (0x1) -T98A8 101:893.336 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:893.416 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 101:893.776 Data: 01 -T98A8 101:893.872 - 0.539ms returns 1 (0x1) -T98A8 101:893.944 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:894.008 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 101:894.400 Data: 03 -T98A8 101:894.496 - 0.552ms returns 1 (0x1) -T98A8 101:894.568 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:894.624 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 101:894.976 Data: 01 -T98A8 101:895.080 - 0.514ms returns 1 (0x1) -T98A8 101:895.144 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 101:895.208 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 101:895.592 Data: 00 00 -T98A8 101:895.744 - 0.601ms returns 2 (0x2) -T98A8 101:895.824 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 101:895.904 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 101:896.400 Data: 00 00 -T98A8 101:896.520 - 0.692ms returns 2 (0x2) -T98A8 101:896.744 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:896.816 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 101:897.200 Data: 40 C4 01 20 -T98A8 101:897.304 - 0.568ms returns 4 (0x4) -T98A8 101:897.408 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:897.488 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 101:897.872 Data: 01 00 00 00 -T98A8 101:897.976 - 0.567ms returns 4 (0x4) -T98A8 101:898.064 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:898.136 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 101:898.544 Data: 00 00 00 00 -T98A8 101:898.648 - 0.586ms returns 4 (0x4) -T98A8 101:898.736 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:898.840 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 101:899.192 Data: 00 00 00 00 -T98A8 101:899.304 - 0.564ms returns 4 (0x4) -T98A8 101:899.384 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:899.448 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 101:899.824 Data: 80 56 43 BC -T98A8 101:899.936 - 0.548ms returns 4 (0x4) -T98A8 101:900.008 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:900.072 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 101:901.080 Data: 00 00 00 00 -T98A8 101:901.200 - 1.193ms returns 4 (0x4) -T98A8 101:901.296 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:901.360 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 101:901.704 Data: 03 -T98A8 101:901.800 - 0.509ms returns 1 (0x1) -T98A8 101:902.576 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:902.672 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 101:903.024 Data: 01 -T98A8 101:903.128 - 0.556ms returns 1 (0x1) -T98A8 101:903.200 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:903.264 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 101:903.712 Data: 03 -T98A8 101:903.976 - 0.777ms returns 1 (0x1) -T98A8 101:904.112 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:904.296 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 101:904.720 Data: 01 -T98A8 101:904.816 - 0.716ms returns 1 (0x1) -T98A8 101:904.896 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:904.960 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 101:905.304 Data: 02 -T98A8 101:905.424 - 0.535ms returns 1 (0x1) -T98A8 101:905.496 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:905.560 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 101:905.912 Data: 01 -T98A8 101:906.016 - 0.519ms returns 1 (0x1) -T98A8 101:906.088 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:906.152 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 101:906.472 Data: 02 -T98A8 101:906.568 - 0.482ms returns 1 (0x1) -T98A8 101:906.632 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:906.696 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 101:907.024 Data: 01 -T98A8 101:907.120 - 0.489ms returns 1 (0x1) -T98A8 101:907.184 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:907.248 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 101:907.624 Data: 00 00 00 00 -T98A8 101:907.720 - 0.533ms returns 4 (0x4) -T98A8 101:907.840 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:907.904 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 101:908.272 Data: 00 -T98A8 101:908.368 - 0.533ms returns 1 (0x1) -T98A8 101:908.688 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 101:908.776 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 101:909.136 Data: 00 -T98A8 101:909.232 - 0.541ms returns 1 (0x1) -T98A8 101:909.464 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:909.584 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 101:910.024 Data: 10 CF 01 20 -T98A8 101:910.120 - 0.653ms returns 4 (0x4) -T98A8 101:910.216 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 101:910.288 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 101:910.616 Data: 49 CF 01 20 -T98A8 101:910.736 - 0.522ms returns 4 (0x4) -T358C 101:910.936 JLINK_IsHalted() -T358C 101:911.408 - 0.471ms returns FALSE -T358C 102:012.232 JLINK_HasError() -T358C 102:012.432 JLINK_IsHalted() -T358C 102:012.816 - 0.380ms returns FALSE -T358C 102:113.744 JLINK_HasError() -T358C 102:113.904 JLINK_IsHalted() -T358C 102:114.328 - 0.425ms returns FALSE -T358C 102:215.792 JLINK_HasError() -T358C 102:215.984 JLINK_IsHalted() -T358C 102:216.336 - 0.345ms returns FALSE -T358C 102:317.400 JLINK_HasError() -T358C 102:317.544 JLINK_IsHalted() -T358C 102:318.512 - 0.966ms returns FALSE -T358C 102:419.056 JLINK_HasError() -T358C 102:419.200 JLINK_HasError() -T358C 102:419.264 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 102:419.352 Data: F7 AE 0E 05 -T358C 102:419.456 Debug reg: DWT_CYCCNT -T358C 102:419.568 - 0.307ms returns 1 (0x1) -T98A8 102:419.952 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 102:420.208 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 102:420.952 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 74 58 ... -T98A8 102:421.128 - 1.174ms returns 25 (0x19) -T98A8 102:421.248 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:421.328 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 102:421.744 Data: 02 -T98A8 102:421.880 - 0.636ms returns 1 (0x1) -T98A8 102:422.048 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:422.176 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 102:422.696 Data: 00 00 00 00 -T98A8 102:422.832 - 0.775ms returns 4 (0x4) -T98A8 102:422.912 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:422.976 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 102:423.448 Data: 00 00 00 00 -T98A8 102:423.560 - 0.645ms returns 4 (0x4) -T98A8 102:423.624 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:423.688 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 102:424.160 Data: 80 56 43 BC -T98A8 102:424.256 - 0.632ms returns 4 (0x4) -T98A8 102:424.328 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:424.392 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 102:424.840 Data: 00 00 00 00 -T98A8 102:424.976 - 0.648ms returns 4 (0x4) -T98A8 102:425.056 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:425.144 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 102:425.488 Data: 03 -T98A8 102:425.584 - 0.532ms returns 1 (0x1) -T98A8 102:425.696 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:425.760 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 102:426.240 Data: 01 -T98A8 102:426.384 - 0.694ms returns 1 (0x1) -T98A8 102:426.488 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:426.560 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 102:426.968 Data: 02 -T98A8 102:427.112 - 0.617ms returns 1 (0x1) -T98A8 102:427.192 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:427.272 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 102:427.640 Data: 01 -T98A8 102:427.768 - 0.575ms returns 1 (0x1) -T98A8 102:427.856 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:427.944 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 102:428.320 Data: 03 -T98A8 102:428.440 - 0.584ms returns 1 (0x1) -T98A8 102:428.528 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:428.600 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 102:428.992 Data: 01 -T98A8 102:429.168 - 0.641ms returns 1 (0x1) -T98A8 102:429.296 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:429.424 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 102:429.872 Data: 03 -T98A8 102:430.024 - 0.727ms returns 1 (0x1) -T98A8 102:430.128 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:430.200 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 102:431.000 Data: 01 -T98A8 102:431.128 - 0.999ms returns 1 (0x1) -T98A8 102:431.200 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 102:431.264 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 102:431.648 Data: 00 00 -T98A8 102:431.760 - 0.557ms returns 2 (0x2) -T98A8 102:431.824 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 102:431.888 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 102:432.272 Data: 00 00 -T98A8 102:432.376 - 0.551ms returns 2 (0x2) -T98A8 102:432.520 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:432.584 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 102:432.912 Data: 40 C4 01 20 -T98A8 102:433.040 - 0.521ms returns 4 (0x4) -T98A8 102:433.152 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:433.232 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 102:433.608 Data: 01 00 00 00 -T98A8 102:433.720 - 0.566ms returns 4 (0x4) -T98A8 102:433.808 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:433.872 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 102:434.216 Data: 00 00 00 00 -T98A8 102:434.320 - 0.505ms returns 4 (0x4) -T98A8 102:434.384 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:434.456 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 102:434.808 Data: 00 00 00 00 -T98A8 102:434.928 - 0.540ms returns 4 (0x4) -T98A8 102:435.016 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:435.088 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 102:435.472 Data: 80 56 43 BC -T98A8 102:435.648 - 0.635ms returns 4 (0x4) -T98A8 102:435.760 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:435.856 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 102:436.784 Data: 00 00 00 00 -T98A8 102:436.944 - 1.187ms returns 4 (0x4) -T98A8 102:437.040 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:437.120 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 102:437.520 Data: 02 -T98A8 102:437.680 - 0.638ms returns 1 (0x1) -T98A8 102:438.504 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:438.608 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 102:439.216 Data: 01 -T98A8 102:439.376 - 0.881ms returns 1 (0x1) -T98A8 102:439.472 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:439.544 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 102:439.920 Data: 03 -T98A8 102:440.040 - 0.569ms returns 1 (0x1) -T98A8 102:440.112 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:440.184 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 102:440.512 Data: 01 -T98A8 102:440.664 - 0.556ms returns 1 (0x1) -T98A8 102:440.752 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:440.824 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 102:441.168 Data: 02 -T98A8 102:441.264 - 0.522ms returns 1 (0x1) -T98A8 102:441.336 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:441.400 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 102:442.360 Data: 01 -T98A8 102:443.008 - 1.669ms returns 1 (0x1) -T98A8 102:443.368 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:443.704 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 102:444.136 Data: 02 -T98A8 102:444.296 - 0.925ms returns 1 (0x1) -T98A8 102:444.392 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:444.504 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 102:445.264 Data: 01 -T98A8 102:445.392 - 0.999ms returns 1 (0x1) -T98A8 102:445.456 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:445.528 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 102:445.864 Data: 00 00 00 00 -T98A8 102:445.960 - 0.494ms returns 4 (0x4) -T98A8 102:446.064 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:446.128 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 102:446.480 Data: 00 -T98A8 102:446.600 - 0.530ms returns 1 (0x1) -T98A8 102:446.928 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:447.008 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 102:447.440 Data: 00 -T98A8 102:447.544 - 0.612ms returns 1 (0x1) -T98A8 102:447.696 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:447.768 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 102:448.112 Data: 10 CF 01 20 -T98A8 102:448.224 - 0.521ms returns 4 (0x4) -T98A8 102:448.312 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:448.384 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 102:448.720 Data: 49 CF 01 20 -T98A8 102:448.816 - 0.502ms returns 4 (0x4) -T358C 102:449.008 JLINK_IsHalted() -T358C 102:449.520 - 0.513ms returns FALSE -T358C 102:550.608 JLINK_HasError() -T358C 102:550.816 JLINK_IsHalted() -T358C 102:552.040 - 1.218ms returns FALSE -T358C 102:652.608 JLINK_HasError() -T358C 102:652.792 JLINK_IsHalted() -T358C 102:653.216 - 0.423ms returns FALSE -T358C 102:754.544 JLINK_HasError() -T358C 102:754.736 JLINK_IsHalted() -T358C 102:755.184 - 0.452ms returns FALSE -T358C 102:855.976 JLINK_HasError() -T358C 102:856.200 JLINK_IsHalted() -T358C 102:856.720 - 0.518ms returns FALSE -T358C 102:957.416 JLINK_HasError() -T358C 102:957.592 JLINK_HasError() -T358C 102:957.664 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 102:957.752 Data: F7 AE 0E 05 -T358C 102:957.840 Debug reg: DWT_CYCCNT -T358C 102:957.936 - 0.275ms returns 1 (0x1) -T98A8 102:958.272 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 102:958.440 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 102:959.120 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 34 00 ... -T98A8 102:959.416 - 1.140ms returns 25 (0x19) -T98A8 102:959.536 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:959.640 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 102:960.040 Data: 02 -T98A8 102:960.144 - 0.603ms returns 1 (0x1) -T98A8 102:960.264 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:960.328 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 102:960.792 Data: 00 00 00 00 -T98A8 102:960.904 - 0.641ms returns 4 (0x4) -T98A8 102:960.976 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:961.088 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 102:961.584 Data: 00 00 00 00 -T98A8 102:961.760 - 0.779ms returns 4 (0x4) -T98A8 102:961.840 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:961.904 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 102:962.480 Data: 80 56 43 BC -T98A8 102:962.624 - 0.781ms returns 4 (0x4) -T98A8 102:962.776 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:962.864 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 102:963.336 Data: 00 00 00 00 -T98A8 102:963.456 - 0.679ms returns 4 (0x4) -T98A8 102:963.536 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:963.616 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 102:963.968 Data: 03 -T98A8 102:964.080 - 0.547ms returns 1 (0x1) -T98A8 102:964.200 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:964.280 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 102:964.648 Data: 03 -T98A8 102:964.752 - 0.549ms returns 1 (0x1) -T98A8 102:964.848 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:964.912 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 102:965.240 Data: 02 -T98A8 102:965.360 - 0.514ms returns 1 (0x1) -T98A8 102:965.424 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:965.488 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 102:965.936 Data: 01 -T98A8 102:966.144 - 0.714ms returns 1 (0x1) -T98A8 102:966.256 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:966.384 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 102:967.440 Data: 03 -T98A8 102:967.616 - 1.351ms returns 1 (0x1) -T98A8 102:967.752 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:967.896 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 102:969.776 Data: 01 -T98A8 102:970.008 - 2.258ms returns 1 (0x1) -T98A8 102:970.096 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:970.176 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 102:970.560 Data: 03 -T98A8 102:970.704 - 0.611ms returns 1 (0x1) -T98A8 102:970.792 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:970.872 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 102:971.248 Data: 01 -T98A8 102:971.384 - 0.593ms returns 1 (0x1) -T98A8 102:971.464 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 102:971.528 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 102:971.920 Data: 00 00 -T98A8 102:972.016 - 0.552ms returns 2 (0x2) -T98A8 102:972.088 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 102:972.152 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 102:972.528 Data: 00 00 -T98A8 102:972.624 - 0.530ms returns 2 (0x2) -T98A8 102:972.784 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:972.848 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 102:973.184 Data: 40 C4 01 20 -T98A8 102:973.272 - 0.496ms returns 4 (0x4) -T98A8 102:973.360 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:973.432 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 102:973.776 Data: 01 00 00 00 -T98A8 102:973.872 - 0.508ms returns 4 (0x4) -T98A8 102:973.952 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:974.016 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 102:974.352 Data: 00 00 00 00 -T98A8 102:974.448 - 0.493ms returns 4 (0x4) -T98A8 102:974.520 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:974.584 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 102:974.928 Data: 00 00 00 00 -T98A8 102:975.024 - 0.508ms returns 4 (0x4) -T98A8 102:975.112 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:975.176 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 102:975.872 Data: 80 56 43 BC -T98A8 102:976.048 - 0.937ms returns 4 (0x4) -T98A8 102:976.160 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:976.264 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 102:976.616 Data: 00 00 00 00 -T98A8 102:976.744 - 0.579ms returns 4 (0x4) -T98A8 102:976.824 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:976.888 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 102:977.224 Data: 02 -T98A8 102:977.328 - 0.504ms returns 1 (0x1) -T98A8 102:978.112 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:978.216 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 102:978.608 Data: 02 -T98A8 102:978.712 - 0.608ms returns 1 (0x1) -T98A8 102:979.088 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:979.184 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 102:979.536 Data: 03 -T98A8 102:979.728 - 0.634ms returns 1 (0x1) -T98A8 102:979.816 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:979.888 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 102:980.240 Data: 01 -T98A8 102:980.352 - 0.535ms returns 1 (0x1) -T98A8 102:980.424 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:980.488 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 102:980.848 Data: 02 -T98A8 102:980.944 - 0.526ms returns 1 (0x1) -T98A8 102:981.016 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:981.096 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 102:981.480 Data: 01 -T98A8 102:981.592 - 0.580ms returns 1 (0x1) -T98A8 102:981.672 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:981.744 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 102:982.128 Data: 02 -T98A8 102:982.272 - 0.600ms returns 1 (0x1) -T98A8 102:982.368 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:982.464 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 102:982.928 Data: 01 -T98A8 102:983.104 - 0.736ms returns 1 (0x1) -T98A8 102:983.256 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:983.384 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 102:984.720 Data: 00 00 00 00 -T98A8 102:985.408 - 2.149ms returns 4 (0x4) -T98A8 102:985.632 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:985.728 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 102:986.184 Data: 00 -T98A8 102:986.352 - 0.717ms returns 1 (0x1) -T98A8 102:986.856 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 102:986.968 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 102:987.576 Data: 00 -T98A8 102:987.752 - 0.896ms returns 1 (0x1) -T98A8 102:987.984 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:988.088 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 102:988.528 Data: 10 CF 01 20 -T98A8 102:988.656 - 0.665ms returns 4 (0x4) -T98A8 102:988.816 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 102:988.944 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 102:989.336 Data: 49 CF 01 20 -T98A8 102:989.456 - 0.637ms returns 4 (0x4) -T358C 102:989.648 JLINK_IsHalted() -T358C 102:990.032 - 0.372ms returns FALSE -T358C 103:090.760 JLINK_HasError() -T358C 103:090.992 JLINK_IsHalted() -T358C 103:091.528 - 0.533ms returns FALSE -T358C 103:191.936 JLINK_HasError() -T358C 103:192.144 JLINK_IsHalted() -T358C 103:192.552 - 0.399ms returns FALSE -T358C 103:293.552 JLINK_HasError() -T358C 103:293.776 JLINK_IsHalted() -T358C 103:294.192 - 0.415ms returns FALSE -T358C 103:395.104 JLINK_HasError() -T358C 103:395.248 JLINK_IsHalted() -T358C 103:395.640 - 0.396ms returns FALSE -T358C 103:497.040 JLINK_HasError() -T358C 103:497.208 JLINK_HasError() -T358C 103:497.272 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 103:497.360 Data: F7 AE 0E 05 -T358C 103:497.472 Debug reg: DWT_CYCCNT -T358C 103:497.568 - 0.292ms returns 1 (0x1) -T98A8 103:497.976 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 103:498.208 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 103:498.928 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 F9 34 00 ... -T98A8 103:499.080 - 1.108ms returns 25 (0x19) -T98A8 103:499.184 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:499.264 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 103:499.656 Data: 02 -T98A8 103:499.752 - 0.564ms returns 1 (0x1) -T98A8 103:499.864 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:499.928 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 103:500.560 Data: 00 00 00 00 -T98A8 103:500.712 - 0.846ms returns 4 (0x4) -T98A8 103:500.888 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:500.976 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 103:501.528 Data: 00 00 00 00 -T98A8 103:501.648 - 0.756ms returns 4 (0x4) -T98A8 103:501.720 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:501.784 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 103:502.280 Data: 80 56 43 BC -T98A8 103:502.376 - 0.655ms returns 4 (0x4) -T98A8 103:502.448 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:502.512 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 103:502.992 Data: 00 00 00 00 -T98A8 103:503.096 - 0.645ms returns 4 (0x4) -T98A8 103:503.176 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:503.248 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 103:503.640 Data: 03 -T98A8 103:503.824 - 0.652ms returns 1 (0x1) -T98A8 103:503.984 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:504.096 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 103:504.816 Data: 03 -T98A8 103:504.936 - 0.948ms returns 1 (0x1) -T98A8 103:505.096 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:505.168 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 103:505.520 Data: 02 -T98A8 103:505.664 - 0.569ms returns 1 (0x1) -T98A8 103:505.736 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:505.808 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 103:506.136 Data: 01 -T98A8 103:506.272 - 0.535ms returns 1 (0x1) -T98A8 103:506.344 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:506.416 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 103:506.768 Data: 03 -T98A8 103:506.888 - 0.542ms returns 1 (0x1) -T98A8 103:506.960 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:507.032 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 103:507.376 Data: 01 -T98A8 103:507.504 - 0.535ms returns 1 (0x1) -T98A8 103:507.568 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:507.632 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 103:507.960 Data: 03 -T98A8 103:508.064 - 0.492ms returns 1 (0x1) -T98A8 103:508.128 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:508.192 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 103:508.584 Data: 01 -T98A8 103:508.688 - 0.559ms returns 1 (0x1) -T98A8 103:508.752 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 103:508.816 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 103:509.192 Data: 00 00 -T98A8 103:509.288 - 0.531ms returns 2 (0x2) -T98A8 103:509.352 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 103:509.424 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 103:509.832 Data: 00 00 -T98A8 103:509.936 - 0.584ms returns 2 (0x2) -T98A8 103:510.128 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:510.192 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 103:510.784 Data: 40 C4 01 20 -T98A8 103:510.896 - 0.772ms returns 4 (0x4) -T98A8 103:510.992 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:511.056 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 103:511.400 Data: 01 00 00 00 -T98A8 103:511.504 - 0.508ms returns 4 (0x4) -T98A8 103:511.584 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:511.656 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 103:512.032 Data: 00 00 00 00 -T98A8 103:512.144 - 0.558ms returns 4 (0x4) -T98A8 103:512.216 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:512.304 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 103:512.656 Data: 00 00 00 00 -T98A8 103:512.760 - 0.542ms returns 4 (0x4) -T98A8 103:512.848 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:512.912 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 103:513.256 Data: 80 56 43 BC -T98A8 103:513.352 - 0.501ms returns 4 (0x4) -T98A8 103:513.416 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:513.480 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 103:513.816 Data: 00 00 00 00 -T98A8 103:513.912 - 0.493ms returns 4 (0x4) -T98A8 103:513.992 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:514.048 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 103:514.512 Data: 02 -T98A8 103:514.608 - 0.624ms returns 1 (0x1) -T98A8 103:514.680 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:514.736 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 103:515.088 Data: 02 -T98A8 103:515.184 - 0.506ms returns 1 (0x1) -T98A8 103:515.984 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:516.080 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 103:516.512 Data: 03 -T98A8 103:516.688 - 0.699ms returns 1 (0x1) -T98A8 103:516.768 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:516.848 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 103:517.336 Data: 01 -T98A8 103:517.496 - 0.731ms returns 1 (0x1) -T98A8 103:517.576 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:517.640 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 103:518.128 Data: 02 -T98A8 103:518.256 - 0.678ms returns 1 (0x1) -T98A8 103:518.320 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:518.384 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 103:518.752 Data: 01 -T98A8 103:518.864 - 0.544ms returns 1 (0x1) -T98A8 103:518.928 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:518.992 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 103:519.336 Data: 02 -T98A8 103:519.432 - 0.495ms returns 1 (0x1) -T98A8 103:519.496 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:519.560 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 103:519.920 Data: 01 -T98A8 103:520.168 - 0.672ms returns 1 (0x1) -T98A8 103:520.304 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:520.408 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 103:521.152 Data: 00 00 00 00 -T98A8 103:521.328 - 1.024ms returns 4 (0x4) -T98A8 103:521.488 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:521.592 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 103:521.960 Data: 00 -T98A8 103:522.104 - 0.610ms returns 1 (0x1) -T98A8 103:522.456 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 103:522.528 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 103:522.872 Data: 00 -T98A8 103:522.968 - 0.517ms returns 1 (0x1) -T98A8 103:523.112 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:523.176 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 103:523.536 Data: 10 CF 01 20 -T98A8 103:523.632 - 0.523ms returns 4 (0x4) -T98A8 103:523.728 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 103:523.792 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 103:524.176 Data: 49 CF 01 20 -T98A8 103:524.272 - 0.542ms returns 4 (0x4) -T358C 103:524.456 JLINK_IsHalted() -T358C 103:524.912 - 0.459ms returns FALSE -T358C 103:625.328 JLINK_HasError() -T358C 103:625.600 JLINK_IsHalted() -T358C 103:626.128 - 0.520ms returns FALSE -T358C 103:727.080 JLINK_HasError() -T358C 103:727.296 JLINK_IsHalted() -T358C 103:727.776 - 0.481ms returns FALSE -T358C 103:829.104 JLINK_HasError() -T358C 103:829.296 JLINK_IsHalted() -T358C 103:829.784 - 0.493ms returns FALSE -T358C 103:930.968 JLINK_HasError() -T358C 103:931.184 JLINK_IsHalted() -T358C 103:931.656 - 0.467ms returns FALSE -T358C 104:032.040 JLINK_HasError() -T358C 104:032.200 JLINK_HasError() -T358C 104:032.600 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 104:032.688 Data: F7 AE 0E 05 -T358C 104:032.768 Debug reg: DWT_CYCCNT -T358C 104:032.848 - 0.246ms returns 1 (0x1) -T98A8 104:033.176 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 104:033.320 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 104:033.944 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 01 20 00 ... -T98A8 104:034.096 - 0.920ms returns 25 (0x19) -T98A8 104:034.208 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:034.288 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 104:034.752 Data: 02 -T98A8 104:034.912 - 0.704ms returns 1 (0x1) -T98A8 104:035.056 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:035.144 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 104:035.680 Data: 00 00 00 00 -T98A8 104:035.808 - 0.760ms returns 4 (0x4) -T98A8 104:035.984 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:036.128 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 104:036.680 Data: 00 00 00 00 -T98A8 104:036.832 - 0.851ms returns 4 (0x4) -T98A8 104:036.920 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:037.000 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 104:037.584 Data: 80 56 43 BC -T98A8 104:037.720 - 0.801ms returns 4 (0x4) -T98A8 104:037.792 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:037.864 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 104:038.384 Data: 00 00 00 00 -T98A8 104:038.544 - 0.748ms returns 4 (0x4) -T98A8 104:038.736 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:038.848 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 104:039.344 Data: 03 -T98A8 104:039.504 - 0.759ms returns 1 (0x1) -T98A8 104:039.576 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:039.656 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 104:040.080 Data: 03 -T98A8 104:040.208 - 0.633ms returns 1 (0x1) -T98A8 104:040.280 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:040.352 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 104:040.760 Data: 03 -T98A8 104:040.888 - 0.607ms returns 1 (0x1) -T98A8 104:041.000 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:041.072 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 104:041.472 Data: 01 -T98A8 104:041.608 - 0.604ms returns 1 (0x1) -T98A8 104:041.680 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:041.744 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 104:042.128 Data: 03 -T98A8 104:042.264 - 0.587ms returns 1 (0x1) -T98A8 104:042.328 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:042.400 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 104:042.856 Data: 01 -T98A8 104:042.992 - 0.654ms returns 1 (0x1) -T98A8 104:043.056 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:043.120 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 104:043.560 Data: 03 -T98A8 104:043.688 - 0.629ms returns 1 (0x1) -T98A8 104:043.760 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:043.824 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 104:044.248 Data: 01 -T98A8 104:044.344 - 0.592ms returns 1 (0x1) -T98A8 104:044.424 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 104:044.496 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 104:044.968 Data: 00 00 -T98A8 104:045.088 - 0.664ms returns 2 (0x2) -T98A8 104:045.160 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 104:045.232 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 104:045.776 Data: 00 00 -T98A8 104:045.936 - 0.772ms returns 2 (0x2) -T98A8 104:046.064 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:046.144 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 104:046.552 Data: 40 C4 01 20 -T98A8 104:046.672 - 0.608ms returns 4 (0x4) -T98A8 104:046.768 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:046.832 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 104:047.192 Data: 01 00 00 00 -T98A8 104:047.296 - 0.530ms returns 4 (0x4) -T98A8 104:047.376 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:047.544 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 104:047.928 Data: 00 00 00 00 -T98A8 104:048.024 - 0.650ms returns 4 (0x4) -T98A8 104:048.096 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:048.160 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 104:048.544 Data: 00 00 00 00 -T98A8 104:048.640 - 0.543ms returns 4 (0x4) -T98A8 104:048.720 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:048.784 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 104:049.136 Data: 80 56 43 BC -T98A8 104:049.232 - 0.520ms returns 4 (0x4) -T98A8 104:049.304 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:049.368 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 104:049.776 Data: 00 00 00 00 -T98A8 104:049.928 - 0.624ms returns 4 (0x4) -T98A8 104:050.032 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:050.112 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 104:050.552 Data: 02 -T98A8 104:050.696 - 0.665ms returns 1 (0x1) -T98A8 104:050.776 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:050.864 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 104:051.264 Data: 02 -T98A8 104:051.376 - 0.596ms returns 1 (0x1) -T98A8 104:051.464 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:051.536 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 104:052.032 Data: 02 -T98A8 104:052.184 - 0.727ms returns 1 (0x1) -T98A8 104:052.952 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:053.040 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 104:053.424 Data: 01 -T98A8 104:053.584 - 0.632ms returns 1 (0x1) -T98A8 104:053.672 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:053.744 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 104:054.248 Data: 02 -T98A8 104:054.440 - 0.768ms returns 1 (0x1) -T98A8 104:054.528 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:054.624 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 104:055.104 Data: 01 -T98A8 104:055.256 - 0.729ms returns 1 (0x1) -T98A8 104:055.344 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:055.424 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 104:055.800 Data: 02 -T98A8 104:055.928 - 0.583ms returns 1 (0x1) -T98A8 104:056.000 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:056.064 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 104:056.448 Data: 01 -T98A8 104:056.544 - 0.543ms returns 1 (0x1) -T98A8 104:056.608 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:056.672 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 104:057.040 Data: 00 00 00 00 -T98A8 104:057.136 - 0.523ms returns 4 (0x4) -T98A8 104:057.232 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:057.296 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 104:057.704 Data: 00 -T98A8 104:057.800 - 0.566ms returns 1 (0x1) -T98A8 104:058.096 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:058.160 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 104:058.568 Data: 00 -T98A8 104:058.672 - 0.573ms returns 1 (0x1) -T98A8 104:058.816 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:058.888 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 104:059.800 Data: 10 CF 01 20 -T98A8 104:060.472 - 1.656ms returns 4 (0x4) -T98A8 104:060.752 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:060.832 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 104:061.424 Data: 49 CF 01 20 -T98A8 104:061.576 - 0.814ms returns 4 (0x4) -T358C 104:061.808 JLINK_IsHalted() -T358C 104:062.200 - 0.402ms returns FALSE -T358C 104:162.544 JLINK_HasError() -T358C 104:162.696 JLINK_IsHalted() -T358C 104:163.096 - 0.402ms returns FALSE -T358C 104:263.472 JLINK_HasError() -T358C 104:263.696 JLINK_IsHalted() -T358C 104:264.152 - 0.458ms returns FALSE -T358C 104:364.872 JLINK_HasError() -T358C 104:365.072 JLINK_IsHalted() -T358C 104:365.472 - 0.398ms returns FALSE -T358C 104:465.960 JLINK_HasError() -T358C 104:466.416 JLINK_IsHalted() -T358C 104:467.208 - 0.786ms returns FALSE -T358C 104:568.952 JLINK_HasError() -T358C 104:569.136 JLINK_HasError() -T358C 104:569.200 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 104:569.296 Data: F7 AE 0E 05 -T358C 104:569.392 Debug reg: DWT_CYCCNT -T358C 104:569.488 - 0.284ms returns 1 (0x1) -T98A8 104:569.872 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 104:570.096 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 104:571.352 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 61 01 20 00 ... -T98A8 104:571.536 - 1.665ms returns 25 (0x19) -T98A8 104:571.640 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:571.720 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 104:572.120 Data: 02 -T98A8 104:572.272 - 0.627ms returns 1 (0x1) -T98A8 104:572.400 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:572.528 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 104:573.160 Data: 00 00 00 00 -T98A8 104:573.352 - 0.945ms returns 4 (0x4) -T98A8 104:573.496 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:573.656 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 104:574.248 Data: 00 00 00 00 -T98A8 104:574.344 - 0.845ms returns 4 (0x4) -T98A8 104:574.416 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:574.472 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 104:575.040 Data: 80 56 43 BC -T98A8 104:575.152 - 0.745ms returns 4 (0x4) -T98A8 104:575.232 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:575.296 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 104:575.760 Data: 00 00 00 00 -T98A8 104:576.040 - 0.804ms returns 4 (0x4) -T98A8 104:576.112 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:576.176 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 104:576.592 Data: 03 -T98A8 104:576.712 - 0.602ms returns 1 (0x1) -T98A8 104:576.792 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:576.864 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 104:577.256 Data: 03 -T98A8 104:577.352 - 0.559ms returns 1 (0x1) -T98A8 104:577.416 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:577.480 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 104:577.928 Data: 03 -T98A8 104:578.112 - 0.692ms returns 1 (0x1) -T98A8 104:578.296 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:578.368 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 104:578.736 Data: 01 -T98A8 104:578.848 - 0.548ms returns 1 (0x1) -T98A8 104:578.912 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:578.976 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 104:579.344 Data: 03 -T98A8 104:579.440 - 0.521ms returns 1 (0x1) -T98A8 104:579.504 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:579.568 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 104:579.920 Data: 01 -T98A8 104:580.040 - 0.535ms returns 1 (0x1) -T98A8 104:580.104 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:580.168 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 104:580.712 Data: 03 -T98A8 104:580.824 - 0.718ms returns 1 (0x1) -T98A8 104:580.904 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:580.976 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 104:581.336 Data: 01 -T98A8 104:581.448 - 0.546ms returns 1 (0x1) -T98A8 104:581.528 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 104:581.600 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 104:582.024 Data: 00 00 -T98A8 104:582.120 - 0.592ms returns 2 (0x2) -T98A8 104:582.184 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 104:582.248 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 104:582.656 Data: 00 00 -T98A8 104:582.752 - 0.565ms returns 2 (0x2) -T98A8 104:582.904 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:582.968 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 104:583.328 Data: 40 C4 01 20 -T98A8 104:583.424 - 0.522ms returns 4 (0x4) -T98A8 104:583.512 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:583.576 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 104:584.152 Data: 01 00 00 00 -T98A8 104:584.304 - 0.791ms returns 4 (0x4) -T98A8 104:584.424 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:584.496 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 104:584.880 Data: 00 00 00 00 -T98A8 104:585.168 - 0.743ms returns 4 (0x4) -T98A8 104:585.328 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:585.464 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 104:585.928 Data: 00 00 00 00 -T98A8 104:586.072 - 0.752ms returns 4 (0x4) -T98A8 104:586.168 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:586.256 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 104:586.640 Data: 80 56 43 BC -T98A8 104:586.760 - 0.583ms returns 4 (0x4) -T98A8 104:586.840 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:586.904 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 104:587.280 Data: 00 00 00 00 -T98A8 104:587.368 - 0.527ms returns 4 (0x4) -T98A8 104:587.440 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:587.504 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 104:587.872 Data: 02 -T98A8 104:587.968 - 0.521ms returns 1 (0x1) -T98A8 104:588.040 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:588.112 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 104:588.488 Data: 02 -T98A8 104:588.592 - 0.554ms returns 1 (0x1) -T98A8 104:588.664 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:588.736 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 104:589.160 Data: 02 -T98A8 104:589.264 - 0.601ms returns 1 (0x1) -T98A8 104:590.064 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:590.176 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 104:590.600 Data: 01 -T98A8 104:590.704 - 0.638ms returns 1 (0x1) -T98A8 104:590.776 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:590.832 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 104:591.208 Data: 02 -T98A8 104:591.304 - 0.529ms returns 1 (0x1) -T98A8 104:591.376 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:591.440 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 104:591.792 Data: 01 -T98A8 104:592.088 - 0.716ms returns 1 (0x1) -T98A8 104:592.496 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:592.832 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 104:594.376 Data: 02 -T98A8 104:594.512 - 2.017ms returns 1 (0x1) -T98A8 104:594.664 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:594.744 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 104:595.136 Data: 01 -T98A8 104:595.248 - 0.587ms returns 1 (0x1) -T98A8 104:595.344 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:595.424 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 104:595.808 Data: 00 00 00 00 -T98A8 104:595.920 - 0.569ms returns 4 (0x4) -T98A8 104:596.048 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:596.128 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 104:596.616 Data: 00 -T98A8 104:596.776 - 0.725ms returns 1 (0x1) -T98A8 104:597.128 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 104:597.208 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 104:597.600 Data: 00 -T98A8 104:597.712 - 0.586ms returns 1 (0x1) -T98A8 104:597.864 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:597.928 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 104:598.288 Data: 10 CF 01 20 -T98A8 104:598.424 - 0.562ms returns 4 (0x4) -T98A8 104:598.520 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 104:598.600 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 104:598.952 Data: 49 CF 01 20 -T98A8 104:599.080 - 0.551ms returns 4 (0x4) -T358C 104:599.296 JLINK_IsHalted() -T358C 104:599.688 - 0.392ms returns FALSE -T358C 104:700.384 JLINK_HasError() -T358C 104:700.592 JLINK_IsHalted() -T358C 104:701.032 - 0.444ms returns FALSE -T358C 104:801.600 JLINK_HasError() -T358C 104:801.736 JLINK_IsHalted() -T358C 104:802.176 - 0.438ms returns FALSE -T358C 104:903.120 JLINK_HasError() -T358C 104:903.456 JLINK_IsHalted() -T358C 104:904.264 - 0.804ms returns FALSE -T358C 105:005.744 JLINK_HasError() -T358C 105:005.976 JLINK_IsHalted() -T358C 105:006.896 - 0.923ms returns FALSE -T358C 105:107.824 JLINK_HasError() -T358C 105:108.176 JLINK_HasError() -T358C 105:108.288 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 105:108.432 Data: F7 AE 0E 05 -T358C 105:108.592 Debug reg: DWT_CYCCNT -T358C 105:108.752 - 0.469ms returns 1 (0x1) -T98A8 105:109.248 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 105:109.488 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 105:110.320 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 00 04 20 00 ... -T98A8 105:110.624 - 1.381ms returns 25 (0x19) -T98A8 105:110.824 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:110.984 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 105:111.664 Data: 02 -T98A8 105:111.824 - 1.008ms returns 1 (0x1) -T98A8 105:111.968 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:112.056 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 105:112.656 Data: 00 00 00 00 -T98A8 105:112.824 - 0.861ms returns 4 (0x4) -T98A8 105:112.912 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:113.000 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 105:113.536 Data: 00 00 00 00 -T98A8 105:113.688 - 0.772ms returns 4 (0x4) -T98A8 105:113.776 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:113.840 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 105:114.360 Data: 80 56 43 BC -T98A8 105:114.496 - 0.715ms returns 4 (0x4) -T98A8 105:114.568 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:114.640 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 105:115.216 Data: 00 00 00 00 -T98A8 105:115.352 - 0.782ms returns 4 (0x4) -T98A8 105:115.440 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:115.504 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 105:115.960 Data: 03 -T98A8 105:116.096 - 0.659ms returns 1 (0x1) -T98A8 105:116.176 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:116.248 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 105:116.656 Data: 03 -T98A8 105:116.808 - 0.631ms returns 1 (0x1) -T98A8 105:116.880 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:116.960 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 105:117.440 Data: 03 -T98A8 105:117.568 - 0.685ms returns 1 (0x1) -T98A8 105:117.648 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:117.712 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 105:118.096 Data: 03 -T98A8 105:118.232 - 0.589ms returns 1 (0x1) -T98A8 105:133.576 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:133.792 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 105:134.288 Data: 03 -T98A8 105:134.424 - 0.853ms returns 1 (0x1) -T98A8 105:134.504 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:134.576 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 105:135.072 Data: 01 -T98A8 105:135.328 - 0.826ms returns 1 (0x1) -T98A8 105:135.424 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:135.496 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 105:136.024 Data: 03 -T98A8 105:136.200 - 0.773ms returns 1 (0x1) -T98A8 105:136.312 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:136.384 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 105:136.784 Data: 01 -T98A8 105:136.912 - 0.593ms returns 1 (0x1) -T98A8 105:136.992 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 105:137.056 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 105:137.520 Data: 00 00 -T98A8 105:137.680 - 0.685ms returns 2 (0x2) -T98A8 105:137.752 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 105:137.832 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 105:138.288 Data: 00 00 -T98A8 105:138.448 - 0.689ms returns 2 (0x2) -T98A8 105:138.688 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:138.768 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 105:139.192 Data: 40 C4 01 20 -T98A8 105:139.328 - 0.638ms returns 4 (0x4) -T98A8 105:139.424 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:139.616 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 105:140.048 Data: 01 00 00 00 -T98A8 105:140.184 - 0.762ms returns 4 (0x4) -T98A8 105:140.288 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:140.352 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 105:140.824 Data: 00 00 00 00 -T98A8 105:140.984 - 0.697ms returns 4 (0x4) -T98A8 105:141.064 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:141.144 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 105:141.640 Data: 00 00 00 00 -T98A8 105:141.776 - 0.718ms returns 4 (0x4) -T98A8 105:141.872 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:141.936 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 105:142.320 Data: 80 56 43 BC -T98A8 105:142.448 - 0.578ms returns 4 (0x4) -T98A8 105:142.528 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:142.600 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 105:143.024 Data: 00 00 00 00 -T98A8 105:143.184 - 0.654ms returns 4 (0x4) -T98A8 105:143.288 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:143.368 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 105:143.848 Data: 02 -T98A8 105:144.128 - 0.840ms returns 1 (0x1) -T98A8 105:144.280 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:144.424 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 105:144.952 Data: 02 -T98A8 105:145.096 - 0.814ms returns 1 (0x1) -T98A8 105:145.168 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:145.232 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 105:145.696 Data: 02 -T98A8 105:145.832 - 0.667ms returns 1 (0x1) -T98A8 105:145.904 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:145.968 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 105:146.432 Data: 02 -T98A8 105:146.560 - 0.657ms returns 1 (0x1) -T98A8 105:147.264 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:147.352 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 105:147.792 Data: 02 -T98A8 105:147.920 - 0.663ms returns 1 (0x1) -T98A8 105:147.992 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:148.064 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 105:148.504 Data: 01 -T98A8 105:148.640 - 0.641ms returns 1 (0x1) -T98A8 105:148.712 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:148.776 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 105:149.200 Data: 02 -T98A8 105:149.368 - 0.664ms returns 1 (0x1) -T98A8 105:149.456 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:149.592 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 105:150.056 Data: 01 -T98A8 105:150.192 - 0.739ms returns 1 (0x1) -T98A8 105:150.304 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:150.376 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 105:150.768 Data: 00 00 00 00 -T98A8 105:150.872 - 0.570ms returns 4 (0x4) -T98A8 105:151.016 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:151.152 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 105:151.656 Data: 00 -T98A8 105:151.824 - 0.811ms returns 1 (0x1) -T98A8 105:152.760 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:152.880 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 105:153.256 Data: 00 -T98A8 105:153.352 - 0.584ms returns 1 (0x1) -T98A8 105:153.488 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:153.552 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 105:153.968 Data: 10 CF 01 20 -T98A8 105:154.096 - 0.605ms returns 4 (0x4) -T98A8 105:154.240 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:154.312 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 105:154.672 Data: 49 CF 01 20 -T98A8 105:154.800 - 0.568ms returns 4 (0x4) -T358C 105:155.024 JLINK_IsHalted() -T358C 105:155.440 - 0.422ms returns FALSE -T358C 105:256.400 JLINK_HasError() -T358C 105:256.568 JLINK_IsHalted() -T358C 105:257.104 - 0.532ms returns FALSE -T358C 105:357.392 JLINK_HasError() -T358C 105:357.552 JLINK_IsHalted() -T358C 105:357.944 - 0.391ms returns FALSE -T358C 105:458.736 JLINK_HasError() -T358C 105:459.120 JLINK_IsHalted() -T358C 105:459.816 - 0.689ms returns FALSE -T358C 105:560.120 JLINK_HasError() -T358C 105:560.296 JLINK_IsHalted() -T358C 105:560.816 - 0.527ms returns FALSE -T358C 105:661.160 JLINK_HasError() -T358C 105:661.360 JLINK_HasError() -T358C 105:661.424 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 105:661.528 Data: F7 AE 0E 05 -T358C 105:661.624 Debug reg: DWT_CYCCNT -T358C 105:661.720 - 0.296ms returns 1 (0x1) -T98A8 105:662.152 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 105:662.288 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 105:662.832 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 00 04 20 00 ... -T98A8 105:662.960 - 0.810ms returns 25 (0x19) -T98A8 105:663.056 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:663.136 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 105:663.472 Data: 02 -T98A8 105:663.608 - 0.548ms returns 1 (0x1) -T98A8 105:663.728 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:663.808 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 105:664.272 Data: 00 00 00 00 -T98A8 105:664.392 - 0.663ms returns 4 (0x4) -T98A8 105:664.464 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:664.536 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 105:664.984 Data: 00 00 00 00 -T98A8 105:665.080 - 0.615ms returns 4 (0x4) -T98A8 105:665.144 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:665.208 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 105:665.744 Data: 80 56 43 BC -T98A8 105:665.872 - 0.727ms returns 4 (0x4) -T98A8 105:665.968 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:666.032 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 105:666.544 Data: 00 00 00 00 -T98A8 105:666.656 - 0.688ms returns 4 (0x4) -T98A8 105:666.736 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:666.800 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 105:667.768 Data: 03 -T98A8 105:667.928 - 1.194ms returns 1 (0x1) -T98A8 105:668.096 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:668.192 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 105:668.656 Data: 03 -T98A8 105:668.808 - 0.712ms returns 1 (0x1) -T98A8 105:668.896 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:668.976 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 105:669.352 Data: 03 -T98A8 105:669.456 - 0.561ms returns 1 (0x1) -T98A8 105:669.520 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:669.584 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 105:669.960 Data: 03 -T98A8 105:670.048 - 0.530ms returns 1 (0x1) -T98A8 105:685.120 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:685.640 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 105:686.112 Data: 03 -T98A8 105:686.248 - 1.131ms returns 1 (0x1) -T98A8 105:686.344 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:686.416 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 105:686.808 Data: 01 -T98A8 105:686.944 - 0.602ms returns 1 (0x1) -T98A8 105:687.016 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:687.080 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 105:687.552 Data: 03 -T98A8 105:687.688 - 0.671ms returns 1 (0x1) -T98A8 105:687.752 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:687.824 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 105:688.192 Data: 01 -T98A8 105:688.320 - 0.569ms returns 1 (0x1) -T98A8 105:688.392 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 105:688.480 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 105:688.944 Data: 00 00 -T98A8 105:689.080 - 0.688ms returns 2 (0x2) -T98A8 105:689.152 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 105:689.216 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 105:689.688 Data: 00 00 -T98A8 105:689.824 - 0.675ms returns 2 (0x2) -T98A8 105:690.096 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:690.248 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 105:690.736 Data: 40 C4 01 20 -T98A8 105:690.896 - 0.806ms returns 4 (0x4) -T98A8 105:691.024 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:691.120 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 105:691.528 Data: 01 00 00 00 -T98A8 105:691.752 - 0.720ms returns 4 (0x4) -T98A8 105:691.920 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:692.016 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 105:692.400 Data: 00 00 00 00 -T98A8 105:692.536 - 0.614ms returns 4 (0x4) -T98A8 105:692.616 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:692.688 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 105:693.024 Data: 00 00 00 00 -T98A8 105:693.136 - 0.519ms returns 4 (0x4) -T98A8 105:693.216 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:693.280 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 105:693.680 Data: 80 56 43 BC -T98A8 105:693.776 - 0.562ms returns 4 (0x4) -T98A8 105:693.920 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:693.984 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 105:694.328 Data: 00 00 00 00 -T98A8 105:694.464 - 0.539ms returns 4 (0x4) -T98A8 105:694.552 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:694.624 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 105:694.976 Data: 02 -T98A8 105:695.096 - 0.545ms returns 1 (0x1) -T98A8 105:695.184 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:695.256 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 105:695.648 Data: 02 -T98A8 105:695.760 - 0.575ms returns 1 (0x1) -T98A8 105:695.824 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:695.888 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 105:696.240 Data: 02 -T98A8 105:696.368 - 0.536ms returns 1 (0x1) -T98A8 105:696.440 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:696.520 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 105:696.880 Data: 02 -T98A8 105:696.984 - 0.546ms returns 1 (0x1) -T98A8 105:697.600 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:697.688 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 105:698.040 Data: 02 -T98A8 105:698.144 - 0.542ms returns 1 (0x1) -T98A8 105:698.208 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:698.272 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 105:698.656 Data: 01 -T98A8 105:698.784 - 0.573ms returns 1 (0x1) -T98A8 105:698.856 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:698.928 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 105:699.272 Data: 02 -T98A8 105:699.376 - 0.514ms returns 1 (0x1) -T98A8 105:699.440 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:699.592 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 105:700.000 Data: 01 -T98A8 105:700.144 - 0.704ms returns 1 (0x1) -T98A8 105:700.232 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:700.336 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 105:700.808 Data: 00 00 00 00 -T98A8 105:700.920 - 0.691ms returns 4 (0x4) -T98A8 105:701.040 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:701.112 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 105:701.664 Data: 00 -T98A8 105:701.768 - 0.722ms returns 1 (0x1) -T98A8 105:702.096 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 105:702.184 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 105:702.568 Data: 00 -T98A8 105:702.696 - 0.594ms returns 1 (0x1) -T98A8 105:702.848 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:702.920 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 105:703.264 Data: 10 CF 01 20 -T98A8 105:703.368 - 0.518ms returns 4 (0x4) -T98A8 105:703.456 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 105:703.520 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 105:703.920 Data: 49 CF 01 20 -T98A8 105:704.080 - 0.620ms returns 4 (0x4) -T358C 105:704.312 JLINK_IsHalted() -T358C 105:704.712 - 0.392ms returns FALSE -T358C 105:805.680 JLINK_HasError() -T358C 105:806.040 JLINK_IsHalted() -T358C 105:806.480 - 0.437ms returns FALSE -T358C 105:907.504 JLINK_HasError() -T358C 105:907.664 JLINK_IsHalted() -T358C 105:908.160 - 0.503ms returns FALSE -T358C 106:008.616 JLINK_HasError() -T358C 106:008.904 JLINK_IsHalted() -T358C 106:009.456 - 0.554ms returns FALSE -T358C 106:110.192 JLINK_HasError() -T358C 106:110.488 JLINK_IsHalted() -T358C 106:111.144 - 0.648ms returns FALSE -T358C 106:212.336 JLINK_HasError() -T358C 106:212.608 JLINK_HasError() -T358C 106:212.720 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 106:212.856 Data: F7 AE 0E 05 -T358C 106:213.024 Debug reg: DWT_CYCCNT -T358C 106:213.184 - 0.464ms returns 1 (0x1) -T98A8 106:213.656 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 106:213.888 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 106:215.096 Data: 0F 00 04 20 00 F1 07 40 00 86 05 80 00 04 20 00 ... -T98A8 106:215.264 - 1.611ms returns 25 (0x19) -T98A8 106:215.384 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:215.520 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 106:216.128 Data: 02 -T98A8 106:216.288 - 0.905ms returns 1 (0x1) -T98A8 106:216.432 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:216.544 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 106:217.104 Data: 00 00 00 00 -T98A8 106:217.240 - 0.816ms returns 4 (0x4) -T98A8 106:217.320 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:217.392 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 106:217.904 Data: 00 00 00 00 -T98A8 106:218.032 - 0.710ms returns 4 (0x4) -T98A8 106:218.096 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:218.168 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 106:218.704 Data: 80 56 43 BC -T98A8 106:218.864 - 0.764ms returns 4 (0x4) -T98A8 106:218.960 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:219.088 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 106:219.704 Data: 00 00 00 00 -T98A8 106:219.840 - 0.884ms returns 4 (0x4) -T98A8 106:219.920 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:219.984 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 106:220.368 Data: 03 -T98A8 106:220.464 - 0.551ms returns 1 (0x1) -T98A8 106:220.536 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:220.600 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 106:220.952 Data: 03 -T98A8 106:221.048 - 0.512ms returns 1 (0x1) -T98A8 106:221.112 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:221.176 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 106:221.536 Data: 03 -T98A8 106:221.792 - 0.676ms returns 1 (0x1) -T98A8 106:221.944 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:222.088 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 106:222.576 Data: 03 -T98A8 106:222.704 - 0.764ms returns 1 (0x1) -T98A8 106:222.776 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:222.848 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 106:223.184 Data: 03 -T98A8 106:223.280 - 0.503ms returns 1 (0x1) -T98A8 106:223.344 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:223.416 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 106:223.744 Data: 01 -T98A8 106:223.848 - 0.492ms returns 1 (0x1) -T98A8 106:223.912 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:223.976 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 106:224.304 Data: 03 -T98A8 106:224.400 - 0.497ms returns 1 (0x1) -T98A8 106:224.472 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:224.528 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 106:224.896 Data: 01 -T98A8 106:225.040 - 0.565ms returns 1 (0x1) -T98A8 106:225.184 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 106:225.328 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 106:225.888 Data: 00 00 -T98A8 106:226.008 - 0.827ms returns 2 (0x2) -T98A8 106:226.080 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 106:226.152 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 106:226.544 Data: 00 00 -T98A8 106:226.672 - 0.584ms returns 2 (0x2) -T98A8 106:226.936 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:227.024 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 106:227.376 Data: 40 C4 01 20 -T98A8 106:227.512 - 0.579ms returns 4 (0x4) -T98A8 106:227.632 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:227.712 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 106:228.088 Data: 01 00 00 00 -T98A8 106:228.200 - 0.569ms returns 4 (0x4) -T98A8 106:228.296 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:228.360 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 106:228.728 Data: 00 00 00 00 -T98A8 106:228.864 - 0.572ms returns 4 (0x4) -T98A8 106:228.960 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:229.040 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 106:229.424 Data: 00 00 00 00 -T98A8 106:229.544 - 0.581ms returns 4 (0x4) -T98A8 106:229.640 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:229.712 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 106:230.064 Data: 80 56 43 BC -T98A8 106:230.160 - 0.517ms returns 4 (0x4) -T98A8 106:230.224 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:230.288 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 106:230.864 Data: 00 00 00 00 -T98A8 106:231.048 - 0.819ms returns 4 (0x4) -T98A8 106:231.256 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:231.376 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 106:231.760 Data: 02 -T98A8 106:231.888 - 0.630ms returns 1 (0x1) -T98A8 106:231.976 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:232.056 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 106:232.640 Data: 02 -T98A8 106:232.752 - 0.783ms returns 1 (0x1) -T98A8 106:232.832 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:232.904 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 106:233.240 Data: 02 -T98A8 106:233.400 - 0.570ms returns 1 (0x1) -T98A8 106:233.488 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:233.568 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 106:233.960 Data: 02 -T98A8 106:234.128 - 0.637ms returns 1 (0x1) -T98A8 106:234.216 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:234.304 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 106:234.720 Data: 02 -T98A8 106:234.856 - 0.639ms returns 1 (0x1) -T98A8 106:234.928 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:234.992 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 106:235.352 Data: 01 -T98A8 106:235.504 - 0.575ms returns 1 (0x1) -T98A8 106:235.568 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:235.664 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 106:236.016 Data: 02 -T98A8 106:236.168 - 0.593ms returns 1 (0x1) -T98A8 106:236.256 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:236.344 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 106:236.744 Data: 01 -T98A8 106:236.936 - 0.678ms returns 1 (0x1) -T98A8 106:237.040 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:237.144 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 106:237.560 Data: 00 00 00 00 -T98A8 106:237.680 - 0.640ms returns 4 (0x4) -T98A8 106:237.904 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:237.984 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 106:238.328 Data: 00 -T98A8 106:238.448 - 0.546ms returns 1 (0x1) -T98A8 106:238.840 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:238.920 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 106:239.280 Data: 00 -T98A8 106:239.408 - 0.561ms returns 1 (0x1) -T98A8 106:239.608 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:239.712 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 106:240.072 Data: 10 CF 01 20 -T98A8 106:240.176 - 0.571ms returns 4 (0x4) -T98A8 106:240.288 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:240.376 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 106:240.752 Data: 49 CF 01 20 -T98A8 106:240.904 - 0.615ms returns 4 (0x4) -T358C 106:241.112 JLINK_IsHalted() -T358C 106:241.552 - 0.436ms returns FALSE -T358C 106:342.200 JLINK_HasError() -T358C 106:342.416 JLINK_IsHalted() -T358C 106:342.848 - 0.433ms returns FALSE -T358C 106:443.168 JLINK_HasError() -T358C 106:443.424 JLINK_IsHalted() -T358C 106:443.928 - 0.503ms returns FALSE -T358C 106:544.952 JLINK_HasError() -T358C 106:545.160 JLINK_IsHalted() -T358C 106:545.688 - 0.531ms returns FALSE -T358C 106:646.248 JLINK_HasError() -T358C 106:646.432 JLINK_IsHalted() -T358C 106:647.072 - 0.632ms returns FALSE -T358C 106:747.880 JLINK_HasError() -T358C 106:748.112 JLINK_HasError() -T358C 106:748.200 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 106:748.304 Data: F7 AE 0E 05 -T358C 106:748.400 Debug reg: DWT_CYCCNT -T358C 106:748.496 - 0.293ms returns 1 (0x1) -T98A8 106:748.928 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 106:749.088 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 106:750.312 Data: 0F 00 04 20 00 F1 07 40 00 86 E5 D3 00 04 20 00 ... -T98A8 106:750.472 - 1.542ms returns 25 (0x19) -T98A8 106:750.584 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:750.680 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 106:751.088 Data: 02 -T98A8 106:751.272 - 0.684ms returns 1 (0x1) -T98A8 106:751.472 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:751.544 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 106:752.080 Data: 00 00 00 00 -T98A8 106:752.280 - 0.812ms returns 4 (0x4) -T98A8 106:752.392 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:752.496 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 106:753.016 Data: 00 00 00 00 -T98A8 106:753.144 - 0.753ms returns 4 (0x4) -T98A8 106:753.232 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:753.328 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 106:753.792 Data: 80 56 43 BC -T98A8 106:753.920 - 0.692ms returns 4 (0x4) -T98A8 106:754.000 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:754.064 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 106:754.568 Data: 00 00 00 00 -T98A8 106:754.752 - 0.747ms returns 4 (0x4) -T98A8 106:754.840 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:754.928 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 106:755.352 Data: 03 -T98A8 106:755.496 - 0.656ms returns 1 (0x1) -T98A8 106:755.600 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:755.688 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 106:756.112 Data: 03 -T98A8 106:756.240 - 0.639ms returns 1 (0x1) -T98A8 106:756.320 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:756.392 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 106:756.784 Data: 03 -T98A8 106:756.896 - 0.577ms returns 1 (0x1) -T98A8 106:757.024 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:757.096 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 106:757.840 Data: 03 -T98A8 106:757.992 - 0.969ms returns 1 (0x1) -T98A8 106:758.072 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:758.160 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 106:758.544 Data: 02 -T98A8 106:758.688 - 0.613ms returns 1 (0x1) -T98A8 106:760.256 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:760.360 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 106:760.744 Data: 01 -T98A8 106:760.904 - 0.645ms returns 1 (0x1) -T98A8 106:760.984 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:761.072 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 106:761.440 Data: 03 -T98A8 106:761.576 - 0.587ms returns 1 (0x1) -T98A8 106:761.648 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:761.712 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 106:762.064 Data: 01 -T98A8 106:762.192 - 0.550ms returns 1 (0x1) -T98A8 106:762.280 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 106:762.344 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 106:762.760 Data: 00 00 -T98A8 106:762.896 - 0.621ms returns 2 (0x2) -T98A8 106:762.984 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 106:763.056 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 106:763.472 Data: 00 00 -T98A8 106:763.632 - 0.656ms returns 2 (0x2) -T98A8 106:763.848 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:763.928 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 106:764.272 Data: 40 C4 01 20 -T98A8 106:764.400 - 0.559ms returns 4 (0x4) -T98A8 106:764.584 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:764.744 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 106:765.280 Data: 01 00 00 00 -T98A8 106:765.376 - 0.795ms returns 4 (0x4) -T98A8 106:765.456 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:765.520 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 106:765.872 Data: 00 00 00 00 -T98A8 106:765.992 - 0.532ms returns 4 (0x4) -T98A8 106:766.064 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:766.128 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 106:766.976 Data: 00 00 00 00 -T98A8 106:767.120 - 1.052ms returns 4 (0x4) -T98A8 106:767.224 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:767.296 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 106:767.728 Data: 80 56 43 BC -T98A8 106:768.240 - 1.012ms returns 4 (0x4) -T98A8 106:768.608 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:768.936 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 106:769.528 Data: 00 00 00 00 -T98A8 106:769.632 - 1.028ms returns 4 (0x4) -T98A8 106:769.720 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:769.784 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 106:770.128 Data: 02 -T98A8 106:770.256 - 0.533ms returns 1 (0x1) -T98A8 106:770.320 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:770.392 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 106:770.752 Data: 02 -T98A8 106:770.888 - 0.561ms returns 1 (0x1) -T98A8 106:770.976 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:771.080 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 106:771.512 Data: 02 -T98A8 106:771.640 - 0.663ms returns 1 (0x1) -T98A8 106:771.712 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:771.776 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 106:772.136 Data: 02 -T98A8 106:772.240 - 0.527ms returns 1 (0x1) -T98A8 106:772.304 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:772.384 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 106:772.768 Data: 03 -T98A8 106:772.936 - 0.631ms returns 1 (0x1) -T98A8 106:773.680 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:773.776 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 106:774.128 Data: 01 -T98A8 106:774.272 - 0.591ms returns 1 (0x1) -T98A8 106:774.352 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:774.440 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 106:774.904 Data: 02 -T98A8 106:775.072 - 0.711ms returns 1 (0x1) -T98A8 106:775.152 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:775.240 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 106:775.744 Data: 01 -T98A8 106:775.896 - 0.741ms returns 1 (0x1) -T98A8 106:775.976 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:776.048 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 106:776.400 Data: 00 00 00 00 -T98A8 106:776.504 - 0.531ms returns 4 (0x4) -T98A8 106:776.688 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:776.768 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 106:777.320 Data: 00 -T98A8 106:777.448 - 0.754ms returns 1 (0x1) -T98A8 106:777.968 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 106:778.072 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 106:778.448 Data: 00 -T98A8 106:778.568 - 0.592ms returns 1 (0x1) -T98A8 106:778.768 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:778.840 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 106:779.232 Data: 10 CF 01 20 -T98A8 106:779.344 - 0.578ms returns 4 (0x4) -T98A8 106:779.448 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 106:779.520 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 106:779.888 Data: 49 CF 01 20 -T98A8 106:780.000 - 0.554ms returns 4 (0x4) -T358C 106:780.232 JLINK_IsHalted() -T358C 106:781.296 - 1.063ms returns FALSE -T358C 106:881.496 JLINK_HasError() -T358C 106:881.648 JLINK_IsHalted() -T358C 106:882.064 - 0.418ms returns FALSE -T358C 106:982.328 JLINK_HasError() -T358C 106:982.608 JLINK_IsHalted() -T358C 106:983.320 - 0.711ms returns FALSE -T358C 107:084.152 JLINK_HasError() -T358C 107:084.304 JLINK_IsHalted() -T358C 107:084.760 - 0.453ms returns FALSE -T358C 107:185.712 JLINK_HasError() -T358C 107:185.928 JLINK_IsHalted() -T358C 107:186.336 - 0.411ms returns FALSE -T358C 107:287.304 JLINK_HasError() -T358C 107:287.504 JLINK_HasError() -T358C 107:287.568 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 107:287.664 Data: F7 AE 0E 05 -T358C 107:287.760 Debug reg: DWT_CYCCNT -T358C 107:287.856 - 0.288ms returns 1 (0x1) -T98A8 107:288.200 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 107:288.392 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 107:288.968 Data: 0F 00 04 20 00 F1 07 40 00 86 E5 D3 00 04 20 00 ... -T98A8 107:289.072 - 0.873ms returns 25 (0x19) -T98A8 107:289.160 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:289.248 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 107:289.616 Data: 02 -T98A8 107:289.712 - 0.550ms returns 1 (0x1) -T98A8 107:289.824 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:289.888 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 107:290.368 Data: 00 00 00 00 -T98A8 107:290.464 - 0.639ms returns 4 (0x4) -T98A8 107:290.536 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:290.600 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 107:291.088 Data: 00 00 00 00 -T98A8 107:291.184 - 0.644ms returns 4 (0x4) -T98A8 107:291.248 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:291.312 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 107:291.792 Data: 80 56 43 BC -T98A8 107:291.896 - 0.648ms returns 4 (0x4) -T98A8 107:292.032 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:292.104 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 107:292.576 Data: 00 00 00 00 -T98A8 107:292.680 - 0.642ms returns 4 (0x4) -T98A8 107:292.744 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:292.824 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 107:293.224 Data: 03 -T98A8 107:293.360 - 0.611ms returns 1 (0x1) -T98A8 107:293.424 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:293.488 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 107:293.832 Data: 03 -T98A8 107:293.952 - 0.526ms returns 1 (0x1) -T98A8 107:294.024 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:294.096 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 107:294.432 Data: 03 -T98A8 107:294.528 - 0.503ms returns 1 (0x1) -T98A8 107:294.592 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:294.656 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 107:295.016 Data: 03 -T98A8 107:295.176 - 0.579ms returns 1 (0x1) -T98A8 107:295.288 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:295.360 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 107:295.760 Data: 02 -T98A8 107:295.856 - 0.572ms returns 1 (0x1) -T98A8 107:297.232 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:297.328 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 107:298.160 Data: 01 -T98A8 107:298.304 - 1.072ms returns 1 (0x1) -T98A8 107:298.496 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:298.608 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 107:299.632 Data: 03 -T98A8 107:299.776 - 1.279ms returns 1 (0x1) -T98A8 107:299.856 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:299.944 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 107:300.304 Data: 01 -T98A8 107:300.424 - 0.561ms returns 1 (0x1) -T98A8 107:300.496 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 107:300.560 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 107:300.960 Data: 00 00 -T98A8 107:301.072 - 0.578ms returns 2 (0x2) -T98A8 107:301.144 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 107:301.232 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 107:302.136 Data: 00 00 -T98A8 107:302.248 - 1.096ms returns 2 (0x2) -T98A8 107:302.432 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:302.496 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 107:302.848 Data: 40 C4 01 20 -T98A8 107:302.960 - 0.533ms returns 4 (0x4) -T98A8 107:303.056 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:303.120 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 107:303.464 Data: 01 00 00 00 -T98A8 107:303.560 - 0.505ms returns 4 (0x4) -T98A8 107:303.640 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:303.704 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 107:304.040 Data: 00 00 00 00 -T98A8 107:304.136 - 0.496ms returns 4 (0x4) -T98A8 107:304.208 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:304.272 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 107:304.608 Data: 00 00 00 00 -T98A8 107:304.704 - 0.499ms returns 4 (0x4) -T98A8 107:304.784 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:304.848 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 107:305.184 Data: 80 56 43 BC -T98A8 107:305.328 - 0.538ms returns 4 (0x4) -T98A8 107:305.416 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:305.504 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 107:305.904 Data: 00 00 00 00 -T98A8 107:306.024 - 0.607ms returns 4 (0x4) -T98A8 107:306.128 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:306.208 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 107:306.584 Data: 02 -T98A8 107:306.728 - 0.603ms returns 1 (0x1) -T98A8 107:306.816 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:306.896 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 107:307.264 Data: 02 -T98A8 107:307.416 - 0.597ms returns 1 (0x1) -T98A8 107:307.504 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:307.576 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 107:307.920 Data: 02 -T98A8 107:308.032 - 0.535ms returns 1 (0x1) -T98A8 107:308.104 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:308.168 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 107:308.512 Data: 02 -T98A8 107:308.656 - 0.546ms returns 1 (0x1) -T98A8 107:308.736 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:308.808 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 107:309.136 Data: 03 -T98A8 107:309.264 - 0.526ms returns 1 (0x1) -T98A8 107:310.256 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:310.424 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 107:310.896 Data: 01 -T98A8 107:311.024 - 0.760ms returns 1 (0x1) -T98A8 107:311.088 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:311.160 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 107:311.520 Data: 02 -T98A8 107:311.664 - 0.575ms returns 1 (0x1) -T98A8 107:311.752 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:311.824 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 107:312.192 Data: 01 -T98A8 107:312.304 - 0.557ms returns 1 (0x1) -T98A8 107:312.384 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:312.448 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 107:312.784 Data: 00 00 00 00 -T98A8 107:312.904 - 0.516ms returns 4 (0x4) -T98A8 107:313.056 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:313.120 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 107:313.464 Data: 00 -T98A8 107:313.576 - 0.519ms returns 1 (0x1) -T98A8 107:313.936 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:314.016 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 107:314.376 Data: 00 -T98A8 107:314.488 - 0.558ms returns 1 (0x1) -T98A8 107:314.640 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:314.720 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 107:315.080 Data: 10 CF 01 20 -T98A8 107:315.184 - 0.541ms returns 4 (0x4) -T98A8 107:315.272 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:315.336 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 107:315.776 Data: 49 CF 01 20 -T98A8 107:315.920 - 0.648ms returns 4 (0x4) -T358C 107:316.104 JLINK_IsHalted() -T358C 107:316.560 - 0.454ms returns FALSE -T358C 107:416.808 JLINK_HasError() -T358C 107:416.936 JLINK_IsHalted() -T358C 107:417.344 - 0.408ms returns FALSE -T358C 107:517.672 JLINK_HasError() -T358C 107:517.808 JLINK_IsHalted() -T358C 107:518.192 - 0.391ms returns FALSE -T358C 107:619.304 JLINK_HasError() -T358C 107:619.440 JLINK_IsHalted() -T358C 107:619.928 - 0.476ms returns FALSE -T358C 107:720.344 JLINK_HasError() -T358C 107:720.536 JLINK_IsHalted() -T358C 107:721.088 - 0.557ms returns FALSE -T358C 107:822.352 JLINK_HasError() -T358C 107:822.512 JLINK_HasError() -T358C 107:822.592 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 107:822.696 Data: F7 AE 0E 05 -T358C 107:822.800 Debug reg: DWT_CYCCNT -T358C 107:822.912 - 0.318ms returns 1 (0x1) -T98A8 107:823.280 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 107:823.408 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 107:824.112 Data: 0F 00 04 20 00 F1 07 40 00 86 E5 D3 00 04 20 00 ... -T98A8 107:824.368 - 1.093ms returns 25 (0x19) -T98A8 107:824.536 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:824.664 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 107:825.280 Data: 02 -T98A8 107:825.584 - 1.050ms returns 1 (0x1) -T98A8 107:825.808 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:825.944 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 107:826.536 Data: 00 00 00 00 -T98A8 107:826.832 - 1.029ms returns 4 (0x4) -T98A8 107:826.984 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:827.136 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 107:827.840 Data: 00 00 00 00 -T98A8 107:828.016 - 1.032ms returns 4 (0x4) -T98A8 107:828.112 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:828.184 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 107:828.696 Data: 80 56 43 BC -T98A8 107:828.824 - 0.722ms returns 4 (0x4) -T98A8 107:828.904 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:828.976 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 107:829.440 Data: 00 00 00 00 -T98A8 107:829.544 - 0.638ms returns 4 (0x4) -T98A8 107:829.608 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:829.672 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 107:830.040 Data: 03 -T98A8 107:830.144 - 0.533ms returns 1 (0x1) -T98A8 107:830.208 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:830.288 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 107:830.672 Data: 03 -T98A8 107:830.824 - 0.610ms returns 1 (0x1) -T98A8 107:830.912 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:831.024 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 107:831.408 Data: 03 -T98A8 107:831.536 - 0.617ms returns 1 (0x1) -T98A8 107:831.616 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:831.680 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 107:832.040 Data: 03 -T98A8 107:832.152 - 0.538ms returns 1 (0x1) -T98A8 107:832.216 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:832.280 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 107:832.616 Data: 02 -T98A8 107:832.704 - 0.490ms returns 1 (0x1) -T98A8 107:832.768 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:832.832 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 107:833.232 Data: 01 -T98A8 107:833.432 - 0.669ms returns 1 (0x1) -T98A8 107:833.552 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:833.648 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 107:834.096 Data: 03 -T98A8 107:834.256 - 0.705ms returns 1 (0x1) -T98A8 107:834.432 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:834.576 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 107:835.160 Data: 01 -T98A8 107:835.328 - 0.888ms returns 1 (0x1) -T98A8 107:835.432 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 107:835.496 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 107:835.888 Data: 00 00 -T98A8 107:836.008 - 0.576ms returns 2 (0x2) -T98A8 107:836.080 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 107:836.144 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 107:837.080 Data: 00 00 -T98A8 107:837.296 - 1.219ms returns 2 (0x2) -T98A8 107:837.544 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:837.632 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 107:838.032 Data: 40 C4 01 20 -T98A8 107:838.128 - 0.585ms returns 4 (0x4) -T98A8 107:838.224 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:838.288 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 107:838.656 Data: 01 00 00 00 -T98A8 107:838.808 - 0.589ms returns 4 (0x4) -T98A8 107:838.928 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:839.000 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 107:839.360 Data: 00 00 00 00 -T98A8 107:839.464 - 0.539ms returns 4 (0x4) -T98A8 107:839.528 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:839.592 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 107:839.920 Data: 00 00 00 00 -T98A8 107:840.024 - 0.492ms returns 4 (0x4) -T98A8 107:840.104 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:840.168 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 107:840.512 Data: 80 56 43 BC -T98A8 107:840.600 - 0.501ms returns 4 (0x4) -T98A8 107:840.680 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:840.744 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 107:841.072 Data: 00 00 00 00 -T98A8 107:841.168 - 0.491ms returns 4 (0x4) -T98A8 107:841.240 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:841.304 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 107:841.680 Data: 02 -T98A8 107:841.840 - 0.599ms returns 1 (0x1) -T98A8 107:841.936 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:842.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 107:842.416 Data: 02 -T98A8 107:842.536 - 0.605ms returns 1 (0x1) -T98A8 107:842.664 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:842.792 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 107:843.200 Data: 02 -T98A8 107:843.344 - 0.679ms returns 1 (0x1) -T98A8 107:843.432 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:843.520 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 107:843.952 Data: 02 -T98A8 107:844.056 - 0.618ms returns 1 (0x1) -T98A8 107:844.120 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:844.184 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 107:844.520 Data: 03 -T98A8 107:844.624 - 0.497ms returns 1 (0x1) -T98A8 107:844.688 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:844.736 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 107:845.592 Data: 01 -T98A8 107:845.776 - 1.088ms returns 1 (0x1) -T98A8 107:845.904 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:846.032 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 107:847.024 Data: 02 -T98A8 107:847.184 - 1.288ms returns 1 (0x1) -T98A8 107:847.272 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:847.360 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 107:847.792 Data: 01 -T98A8 107:847.896 - 0.616ms returns 1 (0x1) -T98A8 107:847.976 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:848.064 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 107:848.656 Data: 00 00 00 00 -T98A8 107:848.808 - 0.831ms returns 4 (0x4) -T98A8 107:849.008 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:849.088 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 107:849.448 Data: 00 -T98A8 107:849.552 - 0.536ms returns 1 (0x1) -T98A8 107:849.904 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 107:849.968 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 107:850.344 Data: 00 -T98A8 107:850.472 - 0.562ms returns 1 (0x1) -T98A8 107:850.608 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:850.672 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 107:851.032 Data: 10 CF 01 20 -T98A8 107:851.152 - 0.532ms returns 4 (0x4) -T98A8 107:851.240 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 107:851.312 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 107:851.672 Data: 49 CF 01 20 -T98A8 107:851.776 - 0.530ms returns 4 (0x4) -T358C 107:851.968 JLINK_IsHalted() -T358C 107:852.352 - 0.383ms returns FALSE -T358C 107:953.128 JLINK_HasError() -T358C 107:953.384 JLINK_IsHalted() -T358C 107:953.880 - 0.492ms returns FALSE -T358C 108:054.784 JLINK_HasError() -T358C 108:055.040 JLINK_IsHalted() -T358C 108:055.512 - 0.471ms returns FALSE -T358C 108:156.368 JLINK_HasError() -T358C 108:156.568 JLINK_IsHalted() -T358C 108:157.072 - 0.498ms returns FALSE -T358C 108:258.264 JLINK_HasError() -T358C 108:258.536 JLINK_IsHalted() -T358C 108:259.648 - 1.112ms returns FALSE -T358C 108:359.920 JLINK_HasError() -T358C 108:360.064 JLINK_HasError() -T358C 108:360.128 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 108:360.208 Data: F7 AE 0E 05 -T358C 108:360.296 Debug reg: DWT_CYCCNT -T358C 108:360.368 - 0.242ms returns 1 (0x1) -T98A8 108:360.752 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 108:360.896 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 108:361.960 Data: 0F 00 04 20 00 F1 07 40 00 86 E5 D3 00 04 20 00 ... -T98A8 108:362.096 - 1.350ms returns 25 (0x19) -T98A8 108:362.192 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:362.256 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 108:362.640 Data: 02 -T98A8 108:362.776 - 0.590ms returns 1 (0x1) -T98A8 108:362.904 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:362.968 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 108:363.496 Data: 00 00 00 00 -T98A8 108:363.632 - 0.737ms returns 4 (0x4) -T98A8 108:363.712 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:363.792 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 108:364.328 Data: 00 00 00 00 -T98A8 108:364.480 - 0.766ms returns 4 (0x4) -T98A8 108:364.568 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:364.656 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 108:365.224 Data: 80 56 43 BC -T98A8 108:365.480 - 0.911ms returns 4 (0x4) -T98A8 108:365.648 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:365.776 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 108:366.376 Data: 00 00 00 00 -T98A8 108:366.512 - 0.875ms returns 4 (0x4) -T98A8 108:366.608 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:366.720 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 108:367.152 Data: 03 -T98A8 108:367.256 - 0.653ms returns 1 (0x1) -T98A8 108:367.320 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:367.384 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 108:367.832 Data: 03 -T98A8 108:367.976 - 0.653ms returns 1 (0x1) -T98A8 108:368.048 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:368.128 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 108:368.488 Data: 03 -T98A8 108:368.616 - 0.563ms returns 1 (0x1) -T98A8 108:368.688 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:368.752 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 108:369.128 Data: 03 -T98A8 108:369.232 - 0.537ms returns 1 (0x1) -T98A8 108:369.296 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:369.360 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 108:369.728 Data: 02 -T98A8 108:369.880 - 0.586ms returns 1 (0x1) -T98A8 108:369.960 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:370.048 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 108:370.432 Data: 01 -T98A8 108:370.544 - 0.588ms returns 1 (0x1) -T98A8 108:370.640 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:370.712 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 108:371.072 Data: 03 -T98A8 108:371.176 - 0.539ms returns 1 (0x1) -T98A8 108:371.240 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:371.304 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 108:371.672 Data: 01 -T98A8 108:371.824 - 0.591ms returns 1 (0x1) -T98A8 108:371.904 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 108:371.984 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 108:372.376 Data: 00 00 -T98A8 108:372.504 - 0.589ms returns 2 (0x2) -T98A8 108:372.584 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 108:372.656 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 108:373.720 Data: 00 00 -T98A8 108:373.872 - 1.296ms returns 2 (0x2) -T98A8 108:374.144 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:374.248 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 108:374.592 Data: 40 C4 01 20 -T98A8 108:374.704 - 0.563ms returns 4 (0x4) -T98A8 108:374.800 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:374.872 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 108:375.248 Data: 01 00 00 00 -T98A8 108:375.344 - 0.542ms returns 4 (0x4) -T98A8 108:375.424 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:375.488 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 108:375.824 Data: 00 00 00 00 -T98A8 108:375.936 - 0.502ms returns 4 (0x4) -T98A8 108:376.000 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:376.064 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 108:376.400 Data: 00 00 00 00 -T98A8 108:376.496 - 0.499ms returns 4 (0x4) -T98A8 108:376.576 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:376.640 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 108:377.024 Data: 80 56 43 BC -T98A8 108:377.128 - 0.542ms returns 4 (0x4) -T98A8 108:377.192 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:377.256 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 108:377.600 Data: 00 00 00 00 -T98A8 108:377.704 - 0.508ms returns 4 (0x4) -T98A8 108:377.776 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:377.840 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 108:378.200 Data: 02 -T98A8 108:378.352 - 0.578ms returns 1 (0x1) -T98A8 108:378.448 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:378.520 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 108:378.864 Data: 02 -T98A8 108:378.984 - 0.539ms returns 1 (0x1) -T98A8 108:379.048 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:379.112 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 108:379.480 Data: 02 -T98A8 108:379.584 - 0.529ms returns 1 (0x1) -T98A8 108:379.648 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:379.712 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 108:380.096 Data: 02 -T98A8 108:380.184 - 0.537ms returns 1 (0x1) -T98A8 108:380.248 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:380.312 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 108:380.672 Data: 03 -T98A8 108:380.776 - 0.528ms returns 1 (0x1) -T98A8 108:380.848 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:380.912 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 108:381.272 Data: 01 -T98A8 108:381.376 - 0.523ms returns 1 (0x1) -T98A8 108:381.456 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:381.520 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 108:381.904 Data: 02 -T98A8 108:381.992 - 0.546ms returns 1 (0x1) -T98A8 108:382.056 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:382.120 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 108:382.488 Data: 01 -T98A8 108:382.592 - 0.530ms returns 1 (0x1) -T98A8 108:382.656 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:382.720 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 108:383.120 Data: 00 00 00 00 -T98A8 108:383.216 - 0.571ms returns 4 (0x4) -T98A8 108:383.336 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:383.400 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 108:383.848 Data: 00 -T98A8 108:383.952 - 0.620ms returns 1 (0x1) -T98A8 108:384.296 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:384.384 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 108:384.848 Data: 00 -T98A8 108:384.984 - 0.688ms returns 1 (0x1) -T98A8 108:385.152 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:385.232 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 108:386.216 Data: 10 CF 01 20 -T98A8 108:386.328 - 1.173ms returns 4 (0x4) -T98A8 108:386.432 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:386.512 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 108:386.880 Data: 49 CF 01 20 -T98A8 108:387.048 - 0.617ms returns 4 (0x4) -T358C 108:387.328 JLINK_IsHalted() -T358C 108:387.920 - 0.594ms returns FALSE -T358C 108:489.280 JLINK_HasError() -T358C 108:489.456 JLINK_IsHalted() -T358C 108:490.584 - 1.126ms returns FALSE -T358C 108:591.808 JLINK_HasError() -T358C 108:591.976 JLINK_IsHalted() -T358C 108:592.400 - 0.424ms returns FALSE -T358C 108:693.200 JLINK_HasError() -T358C 108:693.504 JLINK_IsHalted() -T358C 108:694.064 - 0.553ms returns FALSE -T358C 108:795.304 JLINK_HasError() -T358C 108:795.456 JLINK_IsHalted() -T358C 108:795.880 - 0.419ms returns FALSE -T358C 108:896.208 JLINK_HasError() -T358C 108:896.368 JLINK_HasError() -T358C 108:896.424 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 108:896.512 Data: F7 AE 0E 05 -T358C 108:896.600 Debug reg: DWT_CYCCNT -T358C 108:896.688 - 0.269ms returns 1 (0x1) -T98A8 108:897.064 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 108:897.296 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 108:898.192 Data: 0F 00 04 20 00 F1 07 40 00 86 E5 D3 00 04 20 00 ... -T98A8 108:898.392 - 1.334ms returns 25 (0x19) -T98A8 108:898.536 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:898.608 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 108:899.096 Data: 02 -T98A8 108:899.240 - 0.706ms returns 1 (0x1) -T98A8 108:899.368 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:899.440 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 108:899.984 Data: 00 00 00 00 -T98A8 108:900.112 - 0.744ms returns 4 (0x4) -T98A8 108:900.200 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:900.272 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 108:900.784 Data: 00 00 00 00 -T98A8 108:900.944 - 0.743ms returns 4 (0x4) -T98A8 108:901.032 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:901.120 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 108:901.616 Data: 80 56 43 BC -T98A8 108:901.744 - 0.720ms returns 4 (0x4) -T98A8 108:901.824 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:901.904 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 108:902.376 Data: 00 00 00 00 -T98A8 108:902.464 - 0.647ms returns 4 (0x4) -T98A8 108:902.544 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:902.608 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 108:902.928 Data: 03 -T98A8 108:903.024 - 0.490ms returns 1 (0x1) -T98A8 108:903.088 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:903.152 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 108:903.600 Data: 03 -T98A8 108:903.720 - 0.619ms returns 1 (0x1) -T98A8 108:903.784 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:903.848 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 108:904.280 Data: 03 -T98A8 108:904.384 - 0.597ms returns 1 (0x1) -T98A8 108:904.448 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:904.512 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 108:904.936 Data: 03 -T98A8 108:905.024 - 0.578ms returns 1 (0x1) -T98A8 108:905.088 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:905.152 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 108:905.512 Data: 02 -T98A8 108:905.616 - 0.522ms returns 1 (0x1) -T98A8 108:905.680 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:905.744 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 108:906.128 Data: 01 -T98A8 108:906.216 - 0.539ms returns 1 (0x1) -T98A8 108:906.280 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:906.344 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 108:906.712 Data: 03 -T98A8 108:906.800 - 0.522ms returns 1 (0x1) -T98A8 108:906.864 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:906.928 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 108:907.304 Data: 01 -T98A8 108:907.408 - 0.534ms returns 1 (0x1) -T98A8 108:907.472 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 108:907.536 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 108:908.560 Data: 00 00 -T98A8 108:908.840 - 1.370ms returns 2 (0x2) -T98A8 108:909.104 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 108:909.272 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 108:909.864 Data: 00 00 -T98A8 108:910.000 - 0.896ms returns 2 (0x2) -T98A8 108:910.144 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:910.224 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 108:910.640 Data: 40 C4 01 20 -T98A8 108:910.744 - 0.600ms returns 4 (0x4) -T98A8 108:910.848 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:910.912 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 108:911.272 Data: 01 00 00 00 -T98A8 108:911.400 - 0.557ms returns 4 (0x4) -T98A8 108:911.504 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:911.576 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 108:912.000 Data: 00 00 00 00 -T98A8 108:912.112 - 0.615ms returns 4 (0x4) -T98A8 108:912.192 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:912.280 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 108:912.880 Data: 00 00 00 00 -T98A8 108:913.040 - 0.838ms returns 4 (0x4) -T98A8 108:913.128 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:913.232 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 108:913.600 Data: 80 56 43 BC -T98A8 108:913.752 - 0.619ms returns 4 (0x4) -T98A8 108:913.840 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:913.936 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 108:914.288 Data: 00 00 00 00 -T98A8 108:914.392 - 0.556ms returns 4 (0x4) -T98A8 108:914.472 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:914.544 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 108:914.904 Data: 02 -T98A8 108:915.032 - 0.562ms returns 1 (0x1) -T98A8 108:915.120 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:915.184 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 108:915.544 Data: 02 -T98A8 108:915.664 - 0.543ms returns 1 (0x1) -T98A8 108:915.736 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:915.816 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 108:916.144 Data: 02 -T98A8 108:916.240 - 0.503ms returns 1 (0x1) -T98A8 108:916.304 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:916.368 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 108:916.720 Data: 02 -T98A8 108:916.840 - 0.534ms returns 1 (0x1) -T98A8 108:916.928 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:917.032 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 108:917.440 Data: 03 -T98A8 108:917.552 - 0.624ms returns 1 (0x1) -T98A8 108:917.632 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:917.720 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 108:918.064 Data: 01 -T98A8 108:918.192 - 0.572ms returns 1 (0x1) -T98A8 108:918.272 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:918.336 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 108:918.696 Data: 02 -T98A8 108:918.800 - 0.530ms returns 1 (0x1) -T98A8 108:918.872 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:918.936 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 108:919.280 Data: 01 -T98A8 108:919.376 - 0.500ms returns 1 (0x1) -T98A8 108:919.440 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:919.504 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 108:919.872 Data: 00 00 00 00 -T98A8 108:919.960 - 0.524ms returns 4 (0x4) -T98A8 108:920.064 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:920.128 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 108:920.512 Data: 00 -T98A8 108:920.640 - 0.576ms returns 1 (0x1) -T98A8 108:921.024 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 108:921.112 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 108:921.472 Data: 00 -T98A8 108:921.560 - 0.537ms returns 1 (0x1) -T98A8 108:921.712 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:921.792 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 108:922.152 Data: 10 CF 01 20 -T98A8 108:922.304 - 0.585ms returns 4 (0x4) -T98A8 108:922.416 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 108:922.512 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 108:922.864 Data: 49 CF 01 20 -T98A8 108:922.968 - 0.554ms returns 4 (0x4) -T358C 108:923.160 JLINK_IsHalted() -T358C 108:923.472 - 0.309ms returns FALSE -T358C 109:024.816 JLINK_HasError() -T358C 109:025.152 JLINK_IsHalted() -T358C 109:026.176 - 1.021ms returns FALSE -T358C 109:127.104 JLINK_HasError() -T358C 109:127.312 JLINK_IsHalted() -T358C 109:127.792 - 0.491ms returns FALSE -T358C 109:228.736 JLINK_HasError() -T358C 109:228.904 JLINK_IsHalted() -T358C 109:229.440 - 0.531ms returns FALSE -T358C 109:329.904 JLINK_HasError() -T358C 109:330.152 JLINK_IsHalted() -T358C 109:330.608 - 0.467ms returns FALSE -T358C 109:431.536 JLINK_HasError() -T358C 109:431.680 JLINK_HasError() -T358C 109:431.744 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 109:431.832 Data: F7 AE 0E 05 -T358C 109:431.920 Debug reg: DWT_CYCCNT -T358C 109:432.016 - 0.271ms returns 1 (0x1) -T98A8 109:432.424 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 109:432.656 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 109:433.320 Data: 0F 00 04 20 00 F1 07 40 00 86 E5 D3 00 04 20 00 ... -T98A8 109:433.488 - 1.063ms returns 25 (0x19) -T98A8 109:433.584 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:433.704 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 109:434.152 Data: 02 -T98A8 109:434.320 - 0.723ms returns 1 (0x1) -T98A8 109:434.448 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:434.536 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 109:435.160 Data: 00 00 00 00 -T98A8 109:435.312 - 0.869ms returns 4 (0x4) -T98A8 109:435.392 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:435.472 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 109:435.944 Data: 00 00 00 00 -T98A8 109:436.072 - 0.674ms returns 4 (0x4) -T98A8 109:436.144 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:436.224 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 109:436.688 Data: 80 56 43 BC -T98A8 109:436.816 - 0.663ms returns 4 (0x4) -T98A8 109:436.904 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:436.992 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 109:437.488 Data: 00 00 00 00 -T98A8 109:437.616 - 0.724ms returns 4 (0x4) -T98A8 109:437.696 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:437.776 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 109:438.120 Data: 03 -T98A8 109:438.224 - 0.516ms returns 1 (0x1) -T98A8 109:438.288 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:438.352 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 109:438.680 Data: 03 -T98A8 109:438.768 - 0.490ms returns 1 (0x1) -T98A8 109:438.832 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:438.896 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 109:439.248 Data: 03 -T98A8 109:439.336 - 0.499ms returns 1 (0x1) -T98A8 109:439.400 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:439.464 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 109:439.808 Data: 03 -T98A8 109:439.952 - 0.549ms returns 1 (0x1) -T98A8 109:440.040 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:440.112 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 109:440.472 Data: 02 -T98A8 109:440.616 - 0.575ms returns 1 (0x1) -T98A8 109:440.688 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:440.784 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 109:441.168 Data: 01 -T98A8 109:441.280 - 0.580ms returns 1 (0x1) -T98A8 109:441.360 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:441.432 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 109:442.408 Data: 03 -T98A8 109:442.536 - 1.183ms returns 1 (0x1) -T98A8 109:442.624 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:442.712 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 109:443.088 Data: 01 -T98A8 109:443.200 - 0.565ms returns 1 (0x1) -T98A8 109:443.280 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 109:443.352 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 109:443.760 Data: 00 00 -T98A8 109:443.856 - 0.583ms returns 2 (0x2) -T98A8 109:443.928 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 109:443.992 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 109:444.392 Data: 00 00 -T98A8 109:444.544 - 0.608ms returns 2 (0x2) -T98A8 109:444.712 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:444.784 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 109:445.160 Data: 40 C4 01 20 -T98A8 109:445.272 - 0.566ms returns 4 (0x4) -T98A8 109:445.392 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:445.464 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 109:445.912 Data: 01 00 00 00 -T98A8 109:446.032 - 0.638ms returns 4 (0x4) -T98A8 109:446.120 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:446.184 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 109:446.512 Data: 00 00 00 00 -T98A8 109:446.616 - 0.499ms returns 4 (0x4) -T98A8 109:446.680 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:446.744 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 109:447.080 Data: 00 00 00 00 -T98A8 109:447.168 - 0.489ms returns 4 (0x4) -T98A8 109:447.248 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:447.312 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 109:447.720 Data: 80 56 43 BC -T98A8 109:447.824 - 0.579ms returns 4 (0x4) -T98A8 109:447.896 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:447.960 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 109:448.320 Data: 00 00 00 00 -T98A8 109:448.464 - 0.557ms returns 4 (0x4) -T98A8 109:448.552 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:448.616 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 109:448.944 Data: 02 -T98A8 109:449.064 - 0.518ms returns 1 (0x1) -T98A8 109:449.136 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:449.216 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 109:449.584 Data: 02 -T98A8 109:449.688 - 0.548ms returns 1 (0x1) -T98A8 109:449.768 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:449.840 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 109:450.216 Data: 02 -T98A8 109:450.320 - 0.548ms returns 1 (0x1) -T98A8 109:450.392 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:450.472 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 109:450.928 Data: 02 -T98A8 109:451.088 - 0.695ms returns 1 (0x1) -T98A8 109:451.176 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:451.248 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 109:451.632 Data: 03 -T98A8 109:451.776 - 0.600ms returns 1 (0x1) -T98A8 109:451.856 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:451.928 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 109:452.328 Data: 01 -T98A8 109:452.496 - 0.640ms returns 1 (0x1) -T98A8 109:452.592 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:452.696 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 109:453.104 Data: 02 -T98A8 109:453.224 - 0.626ms returns 1 (0x1) -T98A8 109:453.296 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:453.360 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 109:453.864 Data: 01 -T98A8 109:454.056 - 0.759ms returns 1 (0x1) -T98A8 109:454.168 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:454.272 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 109:455.248 Data: 00 00 00 00 -T98A8 109:455.376 - 1.210ms returns 4 (0x4) -T98A8 109:455.512 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:455.592 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 109:455.960 Data: 00 -T98A8 109:456.088 - 0.576ms returns 1 (0x1) -T98A8 109:456.472 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:456.560 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 109:456.936 Data: 00 -T98A8 109:457.048 - 0.580ms returns 1 (0x1) -T98A8 109:457.192 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:457.264 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 109:457.648 Data: 10 CF 01 20 -T98A8 109:457.752 - 0.554ms returns 4 (0x4) -T98A8 109:457.840 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:457.904 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 109:458.368 Data: 49 CF 01 20 -T98A8 109:458.456 - 0.609ms returns 4 (0x4) -T358C 109:458.624 JLINK_IsHalted() -T358C 109:458.984 - 0.365ms returns FALSE -T358C 109:559.680 JLINK_HasError() -T358C 109:560.144 JLINK_IsHalted() -T358C 109:560.792 - 0.650ms returns FALSE -T358C 109:661.096 JLINK_HasError() -T358C 109:661.232 JLINK_IsHalted() -T358C 109:661.760 - 0.529ms returns FALSE -T358C 109:762.320 JLINK_HasError() -T358C 109:762.536 JLINK_IsHalted() -T358C 109:763.264 - 0.735ms returns FALSE -T358C 109:863.976 JLINK_HasError() -T358C 109:864.168 JLINK_IsHalted() -T358C 109:865.152 - 0.984ms returns FALSE -T358C 109:966.336 JLINK_HasError() -T358C 109:966.568 JLINK_HasError() -T358C 109:966.680 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 109:966.824 Data: F7 AE 0E 05 -T358C 109:966.992 Debug reg: DWT_CYCCNT -T358C 109:967.080 - 0.396ms returns 1 (0x1) -T98A8 109:967.448 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 109:967.680 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 109:968.408 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 109:968.560 - 1.119ms returns 25 (0x19) -T98A8 109:968.664 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:968.752 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 109:969.152 Data: 02 -T98A8 109:969.304 - 0.634ms returns 1 (0x1) -T98A8 109:969.448 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:969.520 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 109:970.032 Data: 00 00 00 00 -T98A8 109:970.176 - 0.733ms returns 4 (0x4) -T98A8 109:970.264 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:970.344 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 109:970.840 Data: 00 00 00 00 -T98A8 109:970.984 - 0.712ms returns 4 (0x4) -T98A8 109:971.048 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:971.112 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 109:971.624 Data: 80 56 43 BC -T98A8 109:971.752 - 0.707ms returns 4 (0x4) -T98A8 109:971.824 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:971.904 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 109:972.400 Data: 00 00 00 00 -T98A8 109:972.544 - 0.708ms returns 4 (0x4) -T98A8 109:972.608 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:972.672 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 109:973.104 Data: 03 -T98A8 109:973.232 - 0.626ms returns 1 (0x1) -T98A8 109:973.312 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:973.376 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 109:973.736 Data: 03 -T98A8 109:973.872 - 0.563ms returns 1 (0x1) -T98A8 109:973.936 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:974.016 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 109:974.384 Data: 03 -T98A8 109:974.528 - 0.582ms returns 1 (0x1) -T98A8 109:974.592 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:974.704 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 109:975.152 Data: 03 -T98A8 109:975.424 - 0.823ms returns 1 (0x1) -T98A8 109:975.512 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:975.592 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 109:975.960 Data: 02 -T98A8 109:976.088 - 0.579ms returns 1 (0x1) -T98A8 109:976.152 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:976.216 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 109:976.576 Data: 02 -T98A8 109:976.664 - 0.510ms returns 1 (0x1) -T98A8 109:978.216 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:978.320 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 109:978.704 Data: 03 -T98A8 109:978.960 - 0.744ms returns 1 (0x1) -T98A8 109:979.112 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:979.280 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 109:979.776 Data: 01 -T98A8 109:979.904 - 0.795ms returns 1 (0x1) -T98A8 109:979.984 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 109:980.048 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 109:980.432 Data: 00 00 -T98A8 109:980.528 - 0.551ms returns 2 (0x2) -T98A8 109:980.592 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 109:980.656 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 109:981.016 Data: 00 00 -T98A8 109:981.120 - 0.524ms returns 2 (0x2) -T98A8 109:981.264 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:981.328 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 109:981.680 Data: 40 C4 01 20 -T98A8 109:981.784 - 0.517ms returns 4 (0x4) -T98A8 109:981.952 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:982.016 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 109:982.360 Data: 01 00 00 00 -T98A8 109:982.448 - 0.511ms returns 4 (0x4) -T98A8 109:982.544 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:982.608 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 109:982.960 Data: 00 00 00 00 -T98A8 109:983.064 - 0.535ms returns 4 (0x4) -T98A8 109:983.152 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:983.216 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 109:983.592 Data: 00 00 00 00 -T98A8 109:983.728 - 0.585ms returns 4 (0x4) -T98A8 109:983.856 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:984.024 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 109:984.792 Data: 80 56 43 BC -T98A8 109:985.384 - 1.518ms returns 4 (0x4) -T98A8 109:985.688 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:985.768 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 109:986.128 Data: 00 00 00 00 -T98A8 109:986.256 - 0.562ms returns 4 (0x4) -T98A8 109:986.344 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:986.416 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 109:986.816 Data: 02 -T98A8 109:986.904 - 0.567ms returns 1 (0x1) -T98A8 109:986.984 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:987.032 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 109:987.376 Data: 02 -T98A8 109:987.472 - 0.497ms returns 1 (0x1) -T98A8 109:987.544 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:987.600 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 109:987.944 Data: 02 -T98A8 109:988.032 - 0.494ms returns 1 (0x1) -T98A8 109:988.096 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:988.160 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 109:988.496 Data: 02 -T98A8 109:988.592 - 0.493ms returns 1 (0x1) -T98A8 109:988.656 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:988.720 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 109:989.056 Data: 03 -T98A8 109:989.160 - 0.495ms returns 1 (0x1) -T98A8 109:989.224 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:989.288 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 109:990.096 Data: 03 -T98A8 109:990.272 - 1.054ms returns 1 (0x1) -T98A8 109:991.536 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:991.664 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 109:992.080 Data: 02 -T98A8 109:992.216 - 0.687ms returns 1 (0x1) -T98A8 109:992.304 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:992.368 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 109:992.728 Data: 01 -T98A8 109:992.832 - 0.527ms returns 1 (0x1) -T98A8 109:992.896 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:992.960 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 109:993.328 Data: 00 00 00 00 -T98A8 109:993.488 - 0.587ms returns 4 (0x4) -T98A8 109:993.664 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:993.744 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 109:994.088 Data: 00 -T98A8 109:994.192 - 0.517ms returns 1 (0x1) -T98A8 109:994.520 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 109:994.608 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 109:995.032 Data: 00 -T98A8 109:995.184 - 0.657ms returns 1 (0x1) -T98A8 109:995.368 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:995.456 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 109:995.824 Data: 10 CF 01 20 -T98A8 109:995.944 - 0.580ms returns 4 (0x4) -T98A8 109:996.048 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 109:996.120 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 109:996.480 Data: 49 CF 01 20 -T98A8 109:996.584 - 0.537ms returns 4 (0x4) -T358C 109:996.784 JLINK_IsHalted() -T358C 109:997.136 - 0.346ms returns FALSE -T358C 110:097.552 JLINK_HasError() -T358C 110:097.752 JLINK_IsHalted() -T358C 110:098.192 - 0.441ms returns FALSE -T358C 110:198.808 JLINK_HasError() -T358C 110:199.000 JLINK_IsHalted() -T358C 110:199.512 - 0.510ms returns FALSE -T358C 110:300.928 JLINK_HasError() -T358C 110:301.144 JLINK_IsHalted() -T358C 110:302.104 - 0.953ms returns FALSE -T358C 110:402.576 JLINK_HasError() -T358C 110:402.856 JLINK_IsHalted() -T358C 110:403.288 - 0.430ms returns FALSE -T358C 110:504.280 JLINK_HasError() -T358C 110:504.488 JLINK_HasError() -T358C 110:504.560 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 110:504.680 Data: F7 AE 0E 05 -T358C 110:504.808 Debug reg: DWT_CYCCNT -T358C 110:504.920 - 0.349ms returns 1 (0x1) -T98A8 110:505.296 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 110:505.448 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 110:506.072 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 110:506.216 - 0.917ms returns 25 (0x19) -T98A8 110:506.304 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:506.384 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 110:506.800 Data: 02 -T98A8 110:506.920 - 0.622ms returns 1 (0x1) -T98A8 110:507.032 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:507.096 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 110:507.968 Data: 00 00 00 00 -T98A8 110:508.080 - 1.047ms returns 4 (0x4) -T98A8 110:508.160 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:508.224 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 110:508.712 Data: 00 00 00 00 -T98A8 110:508.888 - 0.725ms returns 4 (0x4) -T98A8 110:509.016 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:509.104 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 110:509.608 Data: 80 56 43 BC -T98A8 110:509.712 - 0.699ms returns 4 (0x4) -T98A8 110:509.824 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:509.888 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 110:510.512 Data: 00 00 00 00 -T98A8 110:510.656 - 0.833ms returns 4 (0x4) -T98A8 110:510.736 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:510.808 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 110:511.184 Data: 03 -T98A8 110:511.320 - 0.582ms returns 1 (0x1) -T98A8 110:511.408 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:511.488 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 110:511.856 Data: 03 -T98A8 110:511.960 - 0.561ms returns 1 (0x1) -T98A8 110:512.040 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:512.088 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 110:512.432 Data: 03 -T98A8 110:512.536 - 0.499ms returns 1 (0x1) -T98A8 110:512.600 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:512.664 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 110:513.008 Data: 03 -T98A8 110:513.112 - 0.512ms returns 1 (0x1) -T98A8 110:513.176 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:513.240 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 110:514.096 Data: 02 -T98A8 110:514.240 - 1.059ms returns 1 (0x1) -T98A8 110:514.320 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:514.384 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 110:514.728 Data: 02 -T98A8 110:514.856 - 0.533ms returns 1 (0x1) -T98A8 110:516.720 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:516.864 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 110:517.528 Data: 03 -T98A8 110:517.808 - 1.094ms returns 1 (0x1) -T98A8 110:517.968 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:518.064 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 110:518.464 Data: 01 -T98A8 110:518.616 - 0.642ms returns 1 (0x1) -T98A8 110:518.784 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 110:518.952 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 110:519.512 Data: 00 00 -T98A8 110:519.680 - 0.899ms returns 2 (0x2) -T98A8 110:519.808 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 110:519.920 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 110:520.424 Data: 00 00 -T98A8 110:520.536 - 0.731ms returns 2 (0x2) -T98A8 110:520.768 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:520.832 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 110:521.744 Data: 40 C4 01 20 -T98A8 110:521.872 - 1.103ms returns 4 (0x4) -T98A8 110:521.968 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:522.032 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 110:522.392 Data: 01 00 00 00 -T98A8 110:522.512 - 0.546ms returns 4 (0x4) -T98A8 110:522.600 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:522.664 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 110:523.024 Data: 00 00 00 00 -T98A8 110:523.152 - 0.551ms returns 4 (0x4) -T98A8 110:523.240 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:523.328 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 110:523.712 Data: 00 00 00 00 -T98A8 110:523.840 - 0.593ms returns 4 (0x4) -T98A8 110:523.928 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:524.008 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 110:524.392 Data: 80 56 43 BC -T98A8 110:524.528 - 0.598ms returns 4 (0x4) -T98A8 110:524.624 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:524.688 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 110:525.136 Data: 00 00 00 00 -T98A8 110:525.248 - 0.637ms returns 4 (0x4) -T98A8 110:525.336 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:525.400 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 110:525.840 Data: 02 -T98A8 110:525.992 - 0.649ms returns 1 (0x1) -T98A8 110:526.056 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:526.128 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 110:526.480 Data: 02 -T98A8 110:526.608 - 0.543ms returns 1 (0x1) -T98A8 110:526.672 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:526.744 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 110:527.184 Data: 02 -T98A8 110:527.280 - 0.606ms returns 1 (0x1) -T98A8 110:527.344 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:527.424 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 110:528.088 Data: 02 -T98A8 110:528.384 - 1.025ms returns 1 (0x1) -T98A8 110:528.536 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:528.680 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 110:529.040 Data: 03 -T98A8 110:529.152 - 0.626ms returns 1 (0x1) -T98A8 110:529.240 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:529.320 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 110:529.704 Data: 03 -T98A8 110:529.808 - 0.573ms returns 1 (0x1) -T98A8 110:530.496 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:530.584 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 110:530.984 Data: 02 -T98A8 110:531.088 - 0.585ms returns 1 (0x1) -T98A8 110:531.160 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:531.224 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 110:531.664 Data: 01 -T98A8 110:531.752 - 0.595ms returns 1 (0x1) -T98A8 110:531.816 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:531.888 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 110:532.312 Data: 00 00 00 00 -T98A8 110:532.456 - 0.634ms returns 4 (0x4) -T98A8 110:532.568 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:532.632 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 110:532.992 Data: 00 -T98A8 110:533.104 - 0.540ms returns 1 (0x1) -T98A8 110:533.456 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 110:533.520 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 110:533.992 Data: 00 -T98A8 110:534.144 - 0.691ms returns 1 (0x1) -T98A8 110:534.352 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:534.440 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 110:534.784 Data: 10 CF 01 20 -T98A8 110:534.872 - 0.526ms returns 4 (0x4) -T98A8 110:534.960 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 110:535.040 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 110:535.464 Data: 49 CF 01 20 -T98A8 110:535.552 - 0.591ms returns 4 (0x4) -T358C 110:536.280 JLINK_IsHalted() -T358C 110:536.688 - 0.411ms returns FALSE -T358C 110:637.616 JLINK_HasError() -T358C 110:637.776 JLINK_IsHalted() -T358C 110:638.184 - 0.402ms returns FALSE -T358C 110:738.512 JLINK_HasError() -T358C 110:738.672 JLINK_IsHalted() -T358C 110:739.072 - 0.398ms returns FALSE -T358C 110:840.168 JLINK_HasError() -T358C 110:840.320 JLINK_IsHalted() -T358C 110:840.768 - 0.442ms returns FALSE -T358C 110:941.808 JLINK_HasError() -T358C 110:941.936 JLINK_IsHalted() -T358C 110:942.352 - 0.412ms returns FALSE -T358C 111:043.136 JLINK_HasError() -T358C 111:043.288 JLINK_HasError() -T358C 111:043.344 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 111:043.432 Data: F7 AE 0E 05 -T358C 111:043.504 Debug reg: DWT_CYCCNT -T358C 111:043.600 - 0.244ms returns 1 (0x1) -T98A8 111:043.992 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 111:044.248 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 111:044.952 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 111:045.104 - 1.120ms returns 25 (0x19) -T98A8 111:045.224 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:045.312 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 111:045.736 Data: 02 -T98A8 111:045.888 - 0.662ms returns 1 (0x1) -T98A8 111:046.032 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:046.104 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 111:046.640 Data: 00 00 00 00 -T98A8 111:046.784 - 0.763ms returns 4 (0x4) -T98A8 111:046.872 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:046.960 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 111:047.552 Data: 00 00 00 00 -T98A8 111:047.832 - 0.954ms returns 4 (0x4) -T98A8 111:047.984 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:048.128 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 111:048.720 Data: 80 56 43 BC -T98A8 111:048.848 - 0.867ms returns 4 (0x4) -T98A8 111:048.920 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:049.000 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 111:049.520 Data: 00 00 00 00 -T98A8 111:049.664 - 0.733ms returns 4 (0x4) -T98A8 111:049.728 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:049.808 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 111:050.200 Data: 03 -T98A8 111:050.328 - 0.599ms returns 1 (0x1) -T98A8 111:050.408 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:050.472 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 111:050.864 Data: 03 -T98A8 111:050.992 - 0.596ms returns 1 (0x1) -T98A8 111:051.072 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:051.136 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 111:051.544 Data: 03 -T98A8 111:051.672 - 0.602ms returns 1 (0x1) -T98A8 111:051.736 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:051.800 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 111:052.208 Data: 03 -T98A8 111:052.336 - 0.602ms returns 1 (0x1) -T98A8 111:052.416 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:052.496 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 111:052.912 Data: 02 -T98A8 111:053.040 - 0.630ms returns 1 (0x1) -T98A8 111:053.120 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:053.200 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 111:053.736 Data: 02 -T98A8 111:053.904 - 0.776ms returns 1 (0x1) -T98A8 111:053.976 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:054.064 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 111:054.544 Data: 03 -T98A8 111:054.672 - 0.689ms returns 1 (0x1) -T98A8 111:054.736 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:054.800 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 111:055.184 Data: 01 -T98A8 111:055.312 - 0.573ms returns 1 (0x1) -T98A8 111:055.384 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 111:055.448 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 111:056.040 Data: 00 00 -T98A8 111:056.176 - 0.786ms returns 2 (0x2) -T98A8 111:056.256 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 111:056.344 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 111:056.832 Data: 00 00 -T98A8 111:056.976 - 0.722ms returns 2 (0x2) -T98A8 111:057.136 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:057.216 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 111:057.584 Data: 40 C4 01 20 -T98A8 111:057.688 - 0.553ms returns 4 (0x4) -T98A8 111:057.776 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:057.840 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 111:058.216 Data: 01 00 00 00 -T98A8 111:058.328 - 0.552ms returns 4 (0x4) -T98A8 111:058.416 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:058.480 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 111:058.856 Data: 00 00 00 00 -T98A8 111:058.968 - 0.547ms returns 4 (0x4) -T98A8 111:059.048 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:059.112 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 111:059.496 Data: 00 00 00 00 -T98A8 111:059.600 - 0.550ms returns 4 (0x4) -T98A8 111:059.712 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:059.792 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 111:060.176 Data: 80 56 43 BC -T98A8 111:060.272 - 0.567ms returns 4 (0x4) -T98A8 111:060.352 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:060.416 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 111:060.752 Data: 00 00 00 00 -T98A8 111:060.848 - 0.497ms returns 4 (0x4) -T98A8 111:060.928 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:060.992 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 111:061.328 Data: 02 -T98A8 111:061.416 - 0.490ms returns 1 (0x1) -T98A8 111:061.488 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:061.552 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 111:061.912 Data: 02 -T98A8 111:062.080 - 0.586ms returns 1 (0x1) -T98A8 111:062.160 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:062.232 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 111:062.592 Data: 02 -T98A8 111:062.704 - 0.552ms returns 1 (0x1) -T98A8 111:062.784 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:062.848 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 111:063.192 Data: 02 -T98A8 111:063.312 - 0.532ms returns 1 (0x1) -T98A8 111:063.384 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:063.448 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 111:063.792 Data: 03 -T98A8 111:063.896 - 0.512ms returns 1 (0x1) -T98A8 111:063.960 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:064.024 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 111:064.360 Data: 03 -T98A8 111:064.464 - 0.503ms returns 1 (0x1) -T98A8 111:064.536 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:064.600 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 111:065.008 Data: 02 -T98A8 111:065.112 - 0.583ms returns 1 (0x1) -T98A8 111:065.192 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:065.264 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 111:065.616 Data: 01 -T98A8 111:065.712 - 0.523ms returns 1 (0x1) -T98A8 111:065.792 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:065.856 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 111:066.216 Data: 00 00 00 00 -T98A8 111:066.320 - 0.534ms returns 4 (0x4) -T98A8 111:066.432 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:066.512 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 111:066.856 Data: 00 -T98A8 111:066.960 - 0.519ms returns 1 (0x1) -T98A8 111:067.328 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:067.408 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 111:067.752 Data: 00 -T98A8 111:067.856 - 0.527ms returns 1 (0x1) -T98A8 111:067.984 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:068.048 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 111:068.376 Data: 10 CF 01 20 -T98A8 111:068.480 - 0.496ms returns 4 (0x4) -T98A8 111:068.560 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:068.624 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 111:069.016 Data: 49 CF 01 20 -T98A8 111:069.136 - 0.564ms returns 4 (0x4) -T358C 111:069.296 JLINK_IsHalted() -T358C 111:070.248 - 0.939ms returns FALSE -T358C 111:171.416 JLINK_HasError() -T358C 111:171.584 JLINK_IsHalted() -T358C 111:172.544 - 0.967ms returns FALSE -T358C 111:273.320 JLINK_HasError() -T358C 111:273.520 JLINK_IsHalted() -T358C 111:274.136 - 0.614ms returns FALSE -T358C 111:375.400 JLINK_HasError() -T358C 111:375.728 JLINK_IsHalted() -T358C 111:376.344 - 0.605ms returns FALSE -T358C 111:476.928 JLINK_HasError() -T358C 111:477.104 JLINK_IsHalted() -T358C 111:478.016 - 0.912ms returns FALSE -T358C 111:578.328 JLINK_HasError() -T358C 111:578.544 JLINK_HasError() -T358C 111:578.648 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 111:578.752 Data: F7 AE 0E 05 -T358C 111:578.856 Debug reg: DWT_CYCCNT -T358C 111:578.968 - 0.320ms returns 1 (0x1) -T98A8 111:579.392 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 111:579.624 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 111:580.392 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 111:580.544 - 1.161ms returns 25 (0x19) -T98A8 111:580.672 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:580.760 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 111:581.296 Data: 02 -T98A8 111:581.440 - 0.766ms returns 1 (0x1) -T98A8 111:581.568 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:581.632 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 111:582.104 Data: 00 00 00 00 -T98A8 111:582.232 - 0.666ms returns 4 (0x4) -T98A8 111:582.312 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:582.376 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 111:582.912 Data: 00 00 00 00 -T98A8 111:583.064 - 0.751ms returns 4 (0x4) -T98A8 111:583.152 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:583.232 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 111:583.784 Data: 80 56 43 BC -T98A8 111:583.912 - 0.756ms returns 4 (0x4) -T98A8 111:583.984 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:584.048 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 111:584.592 Data: 00 00 00 00 -T98A8 111:584.720 - 0.736ms returns 4 (0x4) -T98A8 111:584.792 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:584.872 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 111:585.320 Data: 03 -T98A8 111:585.600 - 0.805ms returns 1 (0x1) -T98A8 111:585.752 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:585.896 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 111:586.416 Data: 03 -T98A8 111:586.544 - 0.796ms returns 1 (0x1) -T98A8 111:586.624 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:586.688 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 111:587.160 Data: 03 -T98A8 111:587.328 - 0.697ms returns 1 (0x1) -T98A8 111:587.408 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:587.480 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 111:587.880 Data: 03 -T98A8 111:587.992 - 0.592ms returns 1 (0x1) -T98A8 111:588.072 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:588.136 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 111:588.520 Data: 02 -T98A8 111:588.608 - 0.540ms returns 1 (0x1) -T98A8 111:588.688 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:588.752 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 111:589.168 Data: 02 -T98A8 111:589.272 - 0.590ms returns 1 (0x1) -T98A8 111:589.336 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:589.400 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 111:589.808 Data: 03 -T98A8 111:589.912 - 0.575ms returns 1 (0x1) -T98A8 111:589.976 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:590.040 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 111:590.464 Data: 01 -T98A8 111:590.552 - 0.580ms returns 1 (0x1) -T98A8 111:590.616 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 111:590.680 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 111:591.120 Data: 00 00 -T98A8 111:591.216 - 0.602ms returns 2 (0x2) -T98A8 111:591.312 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 111:591.376 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 111:591.808 Data: 00 00 -T98A8 111:591.920 - 0.623ms returns 2 (0x2) -T98A8 111:592.104 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:592.176 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 111:592.560 Data: 40 C4 01 20 -T98A8 111:592.720 - 0.620ms returns 4 (0x4) -T98A8 111:593.232 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:593.304 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 111:593.688 Data: 01 00 00 00 -T98A8 111:593.816 - 0.590ms returns 4 (0x4) -T98A8 111:593.920 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:593.984 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 111:594.352 Data: 00 00 00 00 -T98A8 111:594.472 - 0.550ms returns 4 (0x4) -T98A8 111:594.536 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:594.600 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 111:594.944 Data: 00 00 00 00 -T98A8 111:595.048 - 0.506ms returns 4 (0x4) -T98A8 111:595.120 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:595.184 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 111:595.560 Data: 80 56 43 BC -T98A8 111:595.752 - 0.625ms returns 4 (0x4) -T98A8 111:595.840 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:595.920 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 111:596.304 Data: 00 00 00 00 -T98A8 111:596.416 - 0.584ms returns 4 (0x4) -T98A8 111:596.504 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:596.568 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 111:596.928 Data: 02 -T98A8 111:597.056 - 0.557ms returns 1 (0x1) -T98A8 111:597.144 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:597.208 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 111:597.552 Data: 02 -T98A8 111:597.672 - 0.532ms returns 1 (0x1) -T98A8 111:597.744 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:597.808 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 111:598.192 Data: 02 -T98A8 111:598.336 - 0.587ms returns 1 (0x1) -T98A8 111:598.416 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:598.488 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 111:598.864 Data: 02 -T98A8 111:598.976 - 0.560ms returns 1 (0x1) -T98A8 111:599.056 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:599.128 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 111:599.464 Data: 03 -T98A8 111:599.592 - 0.531ms returns 1 (0x1) -T98A8 111:599.664 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:599.744 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 111:600.104 Data: 03 -T98A8 111:600.208 - 0.546ms returns 1 (0x1) -T98A8 111:600.280 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:600.360 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 111:600.704 Data: 02 -T98A8 111:600.816 - 0.526ms returns 1 (0x1) -T98A8 111:600.896 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:600.960 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 111:601.304 Data: 01 -T98A8 111:601.408 - 0.506ms returns 1 (0x1) -T98A8 111:601.472 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:601.536 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 111:601.880 Data: 00 00 00 00 -T98A8 111:602.000 - 0.521ms returns 4 (0x4) -T98A8 111:602.128 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:602.200 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 111:602.544 Data: 00 -T98A8 111:602.664 - 0.536ms returns 1 (0x1) -T98A8 111:603.032 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 111:603.120 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 111:603.480 Data: 00 -T98A8 111:603.584 - 0.551ms returns 1 (0x1) -T98A8 111:603.736 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:603.816 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 111:604.184 Data: 10 CF 01 20 -T98A8 111:604.272 - 0.535ms returns 4 (0x4) -T98A8 111:604.368 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 111:604.432 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 111:604.760 Data: 49 CF 01 20 -T98A8 111:604.912 - 0.550ms returns 4 (0x4) -T358C 111:605.120 JLINK_IsHalted() -T358C 111:605.440 - 0.321ms returns FALSE -T358C 111:705.640 JLINK_HasError() -T358C 111:705.856 JLINK_IsHalted() -T358C 111:706.688 - 0.829ms returns FALSE -T358C 111:807.536 JLINK_HasError() -T358C 111:807.728 JLINK_IsHalted() -T358C 111:808.112 - 0.381ms returns FALSE -T358C 111:908.752 JLINK_HasError() -T358C 111:908.976 JLINK_IsHalted() -T358C 111:910.096 - 1.107ms returns FALSE -T358C 112:010.544 JLINK_HasError() -T358C 112:010.728 JLINK_IsHalted() -T358C 112:011.160 - 0.429ms returns FALSE -T358C 112:111.768 JLINK_HasError() -T358C 112:111.960 JLINK_HasError() -T358C 112:112.024 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 112:112.112 Data: F7 AE 0E 05 -T358C 112:112.208 Debug reg: DWT_CYCCNT -T358C 112:112.296 - 0.267ms returns 1 (0x1) -T98A8 112:112.640 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 112:112.784 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 112:113.488 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 112:113.808 - 1.165ms returns 25 (0x19) -T98A8 112:114.024 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:114.112 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 112:114.520 Data: 02 -T98A8 112:114.648 - 0.634ms returns 1 (0x1) -T98A8 112:114.776 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:114.840 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 112:115.376 Data: 00 00 00 00 -T98A8 112:115.504 - 0.727ms returns 4 (0x4) -T98A8 112:115.584 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:115.648 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 112:116.184 Data: 00 00 00 00 -T98A8 112:116.368 - 0.780ms returns 4 (0x4) -T98A8 112:116.464 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:116.544 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 112:117.168 Data: 80 56 43 BC -T98A8 112:117.328 - 0.860ms returns 4 (0x4) -T98A8 112:117.416 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:117.520 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 112:118.120 Data: 00 00 00 00 -T98A8 112:118.248 - 0.829ms returns 4 (0x4) -T98A8 112:118.336 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:118.400 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 112:118.784 Data: 03 -T98A8 112:118.936 - 0.607ms returns 1 (0x1) -T98A8 112:119.024 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:119.104 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 112:119.512 Data: 03 -T98A8 112:119.656 - 0.632ms returns 1 (0x1) -T98A8 112:119.744 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:119.848 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 112:120.216 Data: 03 -T98A8 112:120.320 - 0.583ms returns 1 (0x1) -T98A8 112:120.384 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:120.448 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 112:120.808 Data: 03 -T98A8 112:120.912 - 0.520ms returns 1 (0x1) -T98A8 112:120.976 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:121.040 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 112:121.408 Data: 02 -T98A8 112:121.496 - 0.524ms returns 1 (0x1) -T98A8 112:121.560 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:121.640 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 112:122.096 Data: 02 -T98A8 112:122.192 - 0.630ms returns 1 (0x1) -T98A8 112:122.256 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:122.320 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 112:122.736 Data: 03 -T98A8 112:122.856 - 0.589ms returns 1 (0x1) -T98A8 112:122.920 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:122.992 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 112:123.432 Data: 02 -T98A8 112:123.536 - 0.608ms returns 1 (0x1) -T98A8 112:124.312 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 112:124.400 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 112:124.928 Data: 00 00 -T98A8 112:125.056 - 0.753ms returns 2 (0x2) -T98A8 112:125.136 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 112:125.200 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 112:125.712 Data: 00 00 -T98A8 112:125.840 - 0.706ms returns 2 (0x2) -T98A8 112:126.016 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:126.096 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 112:126.480 Data: 40 C4 01 20 -T98A8 112:126.632 - 0.612ms returns 4 (0x4) -T98A8 112:126.744 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:126.824 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 112:127.232 Data: 01 00 00 00 -T98A8 112:127.320 - 0.583ms returns 4 (0x4) -T98A8 112:127.400 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:127.464 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 112:127.808 Data: 00 00 00 00 -T98A8 112:127.912 - 0.510ms returns 4 (0x4) -T98A8 112:127.984 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:128.048 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 112:128.408 Data: 00 00 00 00 -T98A8 112:128.496 - 0.513ms returns 4 (0x4) -T98A8 112:128.576 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:128.640 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 112:129.088 Data: 80 56 43 BC -T98A8 112:129.176 - 0.603ms returns 4 (0x4) -T98A8 112:129.256 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:129.320 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 112:129.744 Data: 00 00 00 00 -T98A8 112:129.840 - 0.583ms returns 4 (0x4) -T98A8 112:129.920 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:130.000 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 112:130.368 Data: 02 -T98A8 112:130.536 - 0.610ms returns 1 (0x1) -T98A8 112:130.624 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:130.712 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 112:131.096 Data: 02 -T98A8 112:131.288 - 0.655ms returns 1 (0x1) -T98A8 112:131.456 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:131.600 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 112:132.120 Data: 02 -T98A8 112:132.288 - 0.839ms returns 1 (0x1) -T98A8 112:132.392 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:132.464 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 112:132.824 Data: 02 -T98A8 112:132.928 - 0.546ms returns 1 (0x1) -T98A8 112:133.008 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:133.072 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 112:133.568 Data: 03 -T98A8 112:133.712 - 0.703ms returns 1 (0x1) -T98A8 112:133.776 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:133.840 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 112:134.208 Data: 03 -T98A8 112:134.312 - 0.535ms returns 1 (0x1) -T98A8 112:134.376 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:134.440 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 112:134.928 Data: 02 -T98A8 112:135.056 - 0.671ms returns 1 (0x1) -T98A8 112:135.128 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:135.192 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 112:135.568 Data: 03 -T98A8 112:135.696 - 0.564ms returns 1 (0x1) -T98A8 112:136.336 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:136.432 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 112:137.024 Data: 00 00 00 00 -T98A8 112:137.320 - 0.995ms returns 4 (0x4) -T98A8 112:137.600 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:137.744 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 112:138.264 Data: 00 -T98A8 112:138.416 - 0.823ms returns 1 (0x1) -T98A8 112:138.928 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:139.056 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 112:139.504 Data: 00 -T98A8 112:139.648 - 0.716ms returns 1 (0x1) -T98A8 112:139.816 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:139.904 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 112:140.336 Data: 10 CF 01 20 -T98A8 112:140.480 - 0.662ms returns 4 (0x4) -T98A8 112:140.584 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:140.648 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 112:141.080 Data: 49 CF 01 20 -T98A8 112:141.232 - 0.653ms returns 4 (0x4) -T358C 112:141.464 JLINK_IsHalted() -T358C 112:141.952 - 0.496ms returns FALSE -T358C 112:242.992 JLINK_HasError() -T358C 112:243.344 JLINK_IsHalted() -T358C 112:243.920 - 0.580ms returns FALSE -T358C 112:345.392 JLINK_HasError() -T358C 112:345.560 JLINK_IsHalted() -T358C 112:346.000 - 0.436ms returns FALSE -T358C 112:447.248 JLINK_HasError() -T358C 112:447.448 JLINK_IsHalted() -T358C 112:447.912 - 0.463ms returns FALSE -T358C 112:548.688 JLINK_HasError() -T358C 112:548.888 JLINK_IsHalted() -T358C 112:549.400 - 0.514ms returns FALSE -T358C 112:650.152 JLINK_HasError() -T358C 112:650.432 JLINK_HasError() -T358C 112:650.576 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 112:650.664 Data: F7 AE 0E 05 -T358C 112:650.752 Debug reg: DWT_CYCCNT -T358C 112:650.832 - 0.262ms returns 1 (0x1) -T98A8 112:651.176 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 112:651.368 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 112:651.928 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 112:652.056 - 0.889ms returns 25 (0x19) -T98A8 112:652.176 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:652.240 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 112:653.224 Data: 02 -T98A8 112:653.360 - 1.198ms returns 1 (0x1) -T98A8 112:653.488 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:653.552 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 112:654.016 Data: 00 00 00 00 -T98A8 112:654.128 - 0.637ms returns 4 (0x4) -T98A8 112:654.224 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:654.296 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 112:654.768 Data: 00 00 00 00 -T98A8 112:654.888 - 0.663ms returns 4 (0x4) -T98A8 112:654.960 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:655.040 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 112:655.504 Data: 80 56 43 BC -T98A8 112:655.656 - 0.689ms returns 4 (0x4) -T98A8 112:655.760 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:655.832 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 112:656.336 Data: 00 00 00 00 -T98A8 112:656.448 - 0.693ms returns 4 (0x4) -T98A8 112:656.528 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:656.592 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 112:656.936 Data: 03 -T98A8 112:657.088 - 0.564ms returns 1 (0x1) -T98A8 112:657.240 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:657.328 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 112:657.704 Data: 03 -T98A8 112:657.792 - 0.552ms returns 1 (0x1) -T98A8 112:657.872 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:657.936 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 112:658.280 Data: 03 -T98A8 112:658.432 - 0.561ms returns 1 (0x1) -T98A8 112:658.512 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:658.584 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 112:658.984 Data: 03 -T98A8 112:659.088 - 0.581ms returns 1 (0x1) -T98A8 112:659.160 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:659.216 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 112:659.600 Data: 02 -T98A8 112:659.696 - 0.546ms returns 1 (0x1) -T98A8 112:659.760 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:659.824 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 112:660.440 Data: 02 -T98A8 112:660.592 - 0.825ms returns 1 (0x1) -T98A8 112:660.672 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:660.736 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 112:661.120 Data: 03 -T98A8 112:661.232 - 0.566ms returns 1 (0x1) -T98A8 112:661.328 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:661.400 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 112:661.744 Data: 01 -T98A8 112:661.864 - 0.533ms returns 1 (0x1) -T98A8 112:662.632 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 112:662.720 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 112:663.104 Data: 00 00 -T98A8 112:663.208 - 0.588ms returns 2 (0x2) -T98A8 112:663.280 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 112:663.344 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 112:663.728 Data: 00 00 -T98A8 112:663.888 - 0.610ms returns 2 (0x2) -T98A8 112:664.048 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:664.128 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 112:664.512 Data: 40 C4 01 20 -T98A8 112:664.640 - 0.599ms returns 4 (0x4) -T98A8 112:664.744 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:664.808 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 112:665.168 Data: 01 00 00 00 -T98A8 112:665.280 - 0.535ms returns 4 (0x4) -T98A8 112:665.368 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:665.432 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 112:665.768 Data: 00 00 00 00 -T98A8 112:665.872 - 0.502ms returns 4 (0x4) -T98A8 112:665.936 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:666.064 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 112:666.544 Data: 00 00 00 00 -T98A8 112:666.688 - 0.757ms returns 4 (0x4) -T98A8 112:666.792 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:666.864 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 112:667.280 Data: 80 56 43 BC -T98A8 112:667.376 - 0.583ms returns 4 (0x4) -T98A8 112:667.456 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:667.520 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 112:668.112 Data: 00 00 00 00 -T98A8 112:668.776 - 1.314ms returns 4 (0x4) -T98A8 112:669.144 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:669.224 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 112:669.648 Data: 02 -T98A8 112:669.808 - 0.665ms returns 1 (0x1) -T98A8 112:669.976 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:670.064 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 112:670.424 Data: 02 -T98A8 112:670.512 - 0.539ms returns 1 (0x1) -T98A8 112:670.592 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:670.656 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 112:670.992 Data: 02 -T98A8 112:671.080 - 0.496ms returns 1 (0x1) -T98A8 112:671.152 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:671.208 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 112:671.552 Data: 02 -T98A8 112:671.640 - 0.493ms returns 1 (0x1) -T98A8 112:671.704 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:671.768 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 112:672.112 Data: 03 -T98A8 112:672.216 - 0.505ms returns 1 (0x1) -T98A8 112:672.280 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:672.344 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 112:672.720 Data: 03 -T98A8 112:672.816 - 0.540ms returns 1 (0x1) -T98A8 112:672.880 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:672.944 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 112:673.320 Data: 02 -T98A8 112:673.424 - 0.528ms returns 1 (0x1) -T98A8 112:673.488 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:673.536 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 112:673.904 Data: 01 -T98A8 112:674.008 - 0.526ms returns 1 (0x1) -T98A8 112:674.520 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:674.648 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 112:675.032 Data: 00 00 00 00 -T98A8 112:675.248 - 0.719ms returns 4 (0x4) -T98A8 112:675.368 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:675.560 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 112:676.336 Data: 00 -T98A8 112:676.504 - 1.134ms returns 1 (0x1) -T98A8 112:676.880 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 112:676.952 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 112:677.328 Data: 00 -T98A8 112:677.440 - 0.572ms returns 1 (0x1) -T98A8 112:677.608 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:677.672 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 112:678.128 Data: 10 CF 01 20 -T98A8 112:678.224 - 0.621ms returns 4 (0x4) -T98A8 112:678.312 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 112:678.384 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 112:678.760 Data: 49 CF 01 20 -T98A8 112:678.864 - 0.541ms returns 4 (0x4) -T358C 112:679.024 JLINK_IsHalted() -T358C 112:679.936 - 0.918ms returns FALSE -T358C 112:780.336 JLINK_HasError() -T358C 112:780.544 JLINK_IsHalted() -T358C 112:780.944 - 0.397ms returns FALSE -T358C 112:882.280 JLINK_HasError() -T358C 112:882.576 JLINK_IsHalted() -T358C 112:883.160 - 0.586ms returns FALSE -T358C 112:983.704 JLINK_HasError() -T358C 112:983.976 JLINK_IsHalted() -T358C 112:984.496 - 0.514ms returns FALSE -T358C 113:085.504 JLINK_HasError() -T358C 113:085.712 JLINK_IsHalted() -T358C 113:086.184 - 0.465ms returns FALSE -T358C 113:186.584 JLINK_HasError() -T358C 113:186.800 JLINK_HasError() -T358C 113:186.864 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 113:186.992 Data: F7 AE 0E 05 -T358C 113:187.160 Debug reg: DWT_CYCCNT -T358C 113:187.328 - 0.458ms returns 1 (0x1) -T98A8 113:187.856 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 113:188.120 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 113:188.848 Data: 0F 00 04 20 00 F1 F7 69 00 7E FA D3 00 04 20 00 ... -T98A8 113:188.976 - 1.126ms returns 25 (0x19) -T98A8 113:189.096 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:189.160 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 113:189.608 Data: 02 -T98A8 113:189.736 - 0.645ms returns 1 (0x1) -T98A8 113:189.864 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:189.928 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 113:190.424 Data: 00 00 00 00 -T98A8 113:190.576 - 0.718ms returns 4 (0x4) -T98A8 113:190.736 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:190.832 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 113:191.336 Data: 00 00 00 00 -T98A8 113:191.472 - 0.743ms returns 4 (0x4) -T98A8 113:191.536 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:191.632 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 113:192.168 Data: 80 56 43 BC -T98A8 113:192.304 - 0.757ms returns 4 (0x4) -T98A8 113:192.384 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:192.448 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 113:193.024 Data: 00 00 00 00 -T98A8 113:193.168 - 0.782ms returns 4 (0x4) -T98A8 113:193.232 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:193.304 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 113:194.224 Data: 03 -T98A8 113:194.368 - 1.134ms returns 1 (0x1) -T98A8 113:194.456 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:194.536 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 113:194.896 Data: 03 -T98A8 113:195.024 - 0.561ms returns 1 (0x1) -T98A8 113:195.096 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:195.176 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 113:195.544 Data: 03 -T98A8 113:195.712 - 0.611ms returns 1 (0x1) -T98A8 113:195.792 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:195.864 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 113:196.752 Data: 03 -T98A8 113:196.944 - 1.153ms returns 1 (0x1) -T98A8 113:197.056 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:197.168 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 113:197.584 Data: 02 -T98A8 113:197.736 - 0.685ms returns 1 (0x1) -T98A8 113:197.808 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:197.872 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 113:198.224 Data: 02 -T98A8 113:198.320 - 0.513ms returns 1 (0x1) -T98A8 113:198.384 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:198.464 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 113:198.864 Data: 02 -T98A8 113:198.976 - 0.579ms returns 1 (0x1) -T98A8 113:199.808 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:199.912 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 113:200.280 Data: 01 -T98A8 113:200.384 - 0.570ms returns 1 (0x1) -T98A8 113:200.808 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 113:200.912 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 113:201.576 Data: 00 00 -T98A8 113:202.160 - 1.354ms returns 2 (0x2) -T98A8 113:202.496 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 113:202.560 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 113:202.960 Data: 00 00 -T98A8 113:203.096 - 0.605ms returns 2 (0x2) -T98A8 113:203.352 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:203.456 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 113:203.840 Data: 40 C4 01 20 -T98A8 113:203.968 - 0.609ms returns 4 (0x4) -T98A8 113:204.072 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:204.136 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 113:204.504 Data: 01 00 00 00 -T98A8 113:204.624 - 0.552ms returns 4 (0x4) -T98A8 113:204.720 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:204.784 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 113:205.160 Data: 00 00 00 00 -T98A8 113:205.248 - 0.533ms returns 4 (0x4) -T98A8 113:205.352 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:205.456 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 113:205.904 Data: 00 00 00 00 -T98A8 113:206.056 - 0.707ms returns 4 (0x4) -T98A8 113:206.168 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:206.272 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 113:206.656 Data: 80 56 43 BC -T98A8 113:206.760 - 0.581ms returns 4 (0x4) -T98A8 113:206.832 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:206.896 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 113:207.296 Data: 00 00 00 00 -T98A8 113:207.400 - 0.567ms returns 4 (0x4) -T98A8 113:207.488 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:207.552 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 113:207.912 Data: 02 -T98A8 113:208.016 - 0.524ms returns 1 (0x1) -T98A8 113:208.080 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:208.144 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 113:208.488 Data: 02 -T98A8 113:208.576 - 0.507ms returns 1 (0x1) -T98A8 113:208.680 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:208.768 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 113:209.576 Data: 02 -T98A8 113:209.872 - 1.191ms returns 1 (0x1) -T98A8 113:209.968 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:210.064 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 113:210.448 Data: 02 -T98A8 113:210.584 - 0.624ms returns 1 (0x1) -T98A8 113:210.688 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:210.776 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 113:211.152 Data: 03 -T98A8 113:211.248 - 0.563ms returns 1 (0x1) -T98A8 113:211.328 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:211.392 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 113:211.760 Data: 03 -T98A8 113:211.856 - 0.531ms returns 1 (0x1) -T98A8 113:211.920 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:211.984 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 113:212.352 Data: 03 -T98A8 113:212.456 - 0.528ms returns 1 (0x1) -T98A8 113:213.200 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:213.296 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 113:213.776 Data: 01 -T98A8 113:213.864 - 0.676ms returns 1 (0x1) -T98A8 113:214.248 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:214.352 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 113:214.800 Data: 00 00 00 00 -T98A8 113:214.888 - 0.638ms returns 4 (0x4) -T98A8 113:215.056 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:215.128 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 113:215.592 Data: 00 -T98A8 113:215.704 - 0.649ms returns 1 (0x1) -T98A8 113:216.048 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:216.144 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 113:216.576 Data: 00 -T98A8 113:216.688 - 0.639ms returns 1 (0x1) -T98A8 113:216.848 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:216.944 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 113:217.320 Data: 10 CF 01 20 -T98A8 113:217.432 - 0.587ms returns 4 (0x4) -T98A8 113:217.552 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:217.624 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 113:218.008 Data: 49 CF 01 20 -T98A8 113:218.112 - 0.563ms returns 4 (0x4) -T358C 113:218.328 JLINK_IsHalted() -T358C 113:218.672 - 0.348ms returns FALSE -T358C 113:319.792 JLINK_HasError() -T358C 113:320.088 JLINK_IsHalted() -T358C 113:321.072 - 0.987ms returns FALSE -T358C 113:421.392 JLINK_HasError() -T358C 113:421.608 JLINK_IsHalted() -T358C 113:422.080 - 0.471ms returns FALSE -T358C 113:522.856 JLINK_HasError() -T358C 113:523.056 JLINK_IsHalted() -T358C 113:523.560 - 0.497ms returns FALSE -T358C 113:624.528 JLINK_HasError() -T358C 113:624.728 JLINK_IsHalted() -T358C 113:625.192 - 0.453ms returns FALSE -T358C 113:725.464 JLINK_HasError() -T358C 113:725.696 JLINK_HasError() -T358C 113:725.784 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 113:725.888 Data: F7 AE 0E 05 -T358C 113:725.992 Debug reg: DWT_CYCCNT -T358C 113:726.080 - 0.299ms returns 1 (0x1) -T98A8 113:726.512 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 113:726.760 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 113:727.472 Data: 0F 00 04 20 00 F1 F7 69 00 7E FA D3 00 04 20 00 ... -T98A8 113:727.632 - 1.112ms returns 25 (0x19) -T98A8 113:727.728 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:727.832 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 113:728.232 Data: 02 -T98A8 113:728.336 - 0.599ms returns 1 (0x1) -T98A8 113:728.448 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:728.512 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 113:728.976 Data: 00 00 00 00 -T98A8 113:729.128 - 0.686ms returns 4 (0x4) -T98A8 113:729.216 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:729.304 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 113:729.776 Data: 00 00 00 00 -T98A8 113:729.904 - 0.687ms returns 4 (0x4) -T98A8 113:729.984 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:730.072 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 113:730.648 Data: 80 56 43 BC -T98A8 113:730.768 - 0.777ms returns 4 (0x4) -T98A8 113:730.880 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:730.984 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 113:731.672 Data: 00 00 00 00 -T98A8 113:731.904 - 1.027ms returns 4 (0x4) -T98A8 113:731.992 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:732.072 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 113:732.440 Data: 03 -T98A8 113:732.568 - 0.574ms returns 1 (0x1) -T98A8 113:732.632 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:732.696 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 113:733.072 Data: 03 -T98A8 113:733.168 - 0.535ms returns 1 (0x1) -T98A8 113:733.232 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:733.296 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 113:733.736 Data: 03 -T98A8 113:733.888 - 0.649ms returns 1 (0x1) -T98A8 113:733.968 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:734.056 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 113:734.448 Data: 03 -T98A8 113:734.592 - 0.622ms returns 1 (0x1) -T98A8 113:734.656 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:734.736 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 113:735.184 Data: 02 -T98A8 113:735.272 - 0.612ms returns 1 (0x1) -T98A8 113:735.344 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:735.424 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 113:735.808 Data: 02 -T98A8 113:735.920 - 0.573ms returns 1 (0x1) -T98A8 113:736.000 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:736.064 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 113:736.448 Data: 02 -T98A8 113:736.552 - 0.561ms returns 1 (0x1) -T98A8 113:737.344 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:737.456 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 113:737.920 Data: 01 -T98A8 113:738.048 - 0.703ms returns 1 (0x1) -T98A8 113:738.128 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 113:738.200 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 113:738.640 Data: 00 00 -T98A8 113:738.728 - 0.606ms returns 2 (0x2) -T98A8 113:738.792 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 113:738.856 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 113:739.264 Data: 00 00 -T98A8 113:739.368 - 0.573ms returns 2 (0x2) -T98A8 113:739.480 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:739.544 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 113:739.928 Data: 40 C4 01 20 -T98A8 113:740.016 - 0.533ms returns 4 (0x4) -T98A8 113:740.120 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:740.200 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 113:740.632 Data: 01 00 00 00 -T98A8 113:740.736 - 0.623ms returns 4 (0x4) -T98A8 113:740.928 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:741.136 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 113:741.592 Data: 00 00 00 00 -T98A8 113:741.720 - 0.795ms returns 4 (0x4) -T98A8 113:741.800 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:741.872 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 113:742.248 Data: 00 00 00 00 -T98A8 113:742.376 - 0.572ms returns 4 (0x4) -T98A8 113:742.488 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:742.552 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 113:742.992 Data: 80 56 43 BC -T98A8 113:743.472 - 0.990ms returns 4 (0x4) -T98A8 113:743.824 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:744.144 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 113:744.744 Data: 00 00 00 00 -T98A8 113:744.872 - 1.063ms returns 4 (0x4) -T98A8 113:744.960 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:745.040 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 113:745.408 Data: 02 -T98A8 113:745.536 - 0.570ms returns 1 (0x1) -T98A8 113:745.616 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:745.680 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 113:746.064 Data: 02 -T98A8 113:746.216 - 0.602ms returns 1 (0x1) -T98A8 113:746.432 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:746.600 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 113:747.056 Data: 02 -T98A8 113:747.352 - 0.924ms returns 1 (0x1) -T98A8 113:747.480 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:747.560 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 113:747.904 Data: 02 -T98A8 113:748.056 - 0.588ms returns 1 (0x1) -T98A8 113:748.144 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:748.224 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 113:748.632 Data: 03 -T98A8 113:748.784 - 0.638ms returns 1 (0x1) -T98A8 113:748.880 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:748.952 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 113:749.328 Data: 03 -T98A8 113:749.440 - 0.570ms returns 1 (0x1) -T98A8 113:749.520 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:749.592 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 113:749.952 Data: 03 -T98A8 113:750.040 - 0.526ms returns 1 (0x1) -T98A8 113:750.632 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:750.736 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 113:751.192 Data: 01 -T98A8 113:751.336 - 0.707ms returns 1 (0x1) -T98A8 113:751.408 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:751.472 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 113:751.952 Data: 00 00 00 00 -T98A8 113:752.216 - 0.807ms returns 4 (0x4) -T98A8 113:752.400 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:752.472 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 113:752.848 Data: 00 -T98A8 113:752.976 - 0.582ms returns 1 (0x1) -T98A8 113:753.296 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 113:753.368 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 113:753.744 Data: 00 -T98A8 113:753.840 - 0.545ms returns 1 (0x1) -T98A8 113:753.968 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:754.048 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 113:754.432 Data: 10 CF 01 20 -T98A8 113:754.520 - 0.547ms returns 4 (0x4) -T98A8 113:754.608 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 113:754.672 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 113:755.184 Data: 49 CF 01 20 -T98A8 113:755.304 - 0.689ms returns 4 (0x4) -T358C 113:755.480 JLINK_IsHalted() -T358C 113:755.856 - 0.373ms returns FALSE -T358C 113:856.296 JLINK_HasError() -T358C 113:856.576 JLINK_IsHalted() -T358C 113:857.048 - 0.472ms returns FALSE -T358C 113:957.928 JLINK_HasError() -T358C 113:958.080 JLINK_IsHalted() -T358C 113:958.616 - 0.528ms returns FALSE -T358C 114:059.024 JLINK_HasError() -T358C 114:059.216 JLINK_IsHalted() -T358C 114:059.792 - 0.571ms returns FALSE -T358C 114:160.080 JLINK_HasError() -T358C 114:160.240 JLINK_IsHalted() -T358C 114:160.960 - 0.715ms returns FALSE -T358C 114:261.376 JLINK_HasError() -T358C 114:261.520 JLINK_HasError() -T358C 114:261.568 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 114:261.656 Data: F7 AE 0E 05 -T358C 114:261.736 Debug reg: DWT_CYCCNT -T358C 114:261.824 - 0.247ms returns 1 (0x1) -T98A8 114:262.120 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 114:262.232 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 114:262.800 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 114:262.896 - 0.786ms returns 25 (0x19) -T98A8 114:262.992 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:263.064 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 114:263.424 Data: 02 -T98A8 114:263.528 - 0.545ms returns 1 (0x1) -T98A8 114:263.656 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:263.720 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 114:264.232 Data: 00 00 00 00 -T98A8 114:264.320 - 0.672ms returns 4 (0x4) -T98A8 114:264.400 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:264.472 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 114:264.936 Data: 00 00 00 00 -T98A8 114:265.064 - 0.676ms returns 4 (0x4) -T98A8 114:265.136 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:265.240 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 114:265.744 Data: 80 56 43 BC -T98A8 114:265.840 - 0.706ms returns 4 (0x4) -T98A8 114:265.920 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:265.984 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 114:266.480 Data: 00 00 00 00 -T98A8 114:266.584 - 0.666ms returns 4 (0x4) -T98A8 114:266.648 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:266.712 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 114:267.072 Data: 03 -T98A8 114:267.224 - 0.576ms returns 1 (0x1) -T98A8 114:267.312 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:267.416 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 114:267.800 Data: 03 -T98A8 114:267.952 - 0.645ms returns 1 (0x1) -T98A8 114:268.056 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:268.328 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 114:268.824 Data: 03 -T98A8 114:269.016 - 0.964ms returns 1 (0x1) -T98A8 114:269.120 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:269.232 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 114:269.632 Data: 03 -T98A8 114:269.888 - 0.775ms returns 1 (0x1) -T98A8 114:269.992 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:270.064 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 114:270.424 Data: 02 -T98A8 114:270.568 - 0.584ms returns 1 (0x1) -T98A8 114:270.656 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:270.736 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 114:271.128 Data: 02 -T98A8 114:271.272 - 0.620ms returns 1 (0x1) -T98A8 114:271.344 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:271.440 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 114:271.792 Data: 03 -T98A8 114:271.952 - 0.594ms returns 1 (0x1) -T98A8 114:272.688 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:272.792 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 114:273.216 Data: 01 -T98A8 114:273.344 - 0.649ms returns 1 (0x1) -T98A8 114:273.424 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 114:273.512 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 114:273.904 Data: 00 00 -T98A8 114:274.032 - 0.605ms returns 2 (0x2) -T98A8 114:274.112 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 114:274.200 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 114:274.648 Data: 00 00 -T98A8 114:274.736 - 0.637ms returns 2 (0x2) -T98A8 114:274.920 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:274.984 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 114:275.352 Data: 40 C4 01 20 -T98A8 114:275.496 - 0.577ms returns 4 (0x4) -T98A8 114:275.608 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:275.688 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 114:276.072 Data: 01 00 00 00 -T98A8 114:276.304 - 0.700ms returns 4 (0x4) -T98A8 114:276.528 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:276.648 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 114:277.080 Data: 00 00 00 00 -T98A8 114:277.224 - 0.698ms returns 4 (0x4) -T98A8 114:277.296 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:277.360 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 114:277.720 Data: 00 00 00 00 -T98A8 114:277.888 - 0.586ms returns 4 (0x4) -T98A8 114:278.000 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:278.064 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 114:278.416 Data: 80 56 43 BC -T98A8 114:278.512 - 0.519ms returns 4 (0x4) -T98A8 114:278.592 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:278.656 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 114:278.992 Data: 00 00 00 00 -T98A8 114:279.088 - 0.496ms returns 4 (0x4) -T98A8 114:279.168 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:279.248 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 114:279.592 Data: 02 -T98A8 114:279.728 - 0.565ms returns 1 (0x1) -T98A8 114:279.824 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:279.896 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 114:280.280 Data: 02 -T98A8 114:280.424 - 0.606ms returns 1 (0x1) -T98A8 114:280.496 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:280.592 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 114:280.944 Data: 02 -T98A8 114:281.064 - 0.560ms returns 1 (0x1) -T98A8 114:281.136 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:281.216 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 114:281.576 Data: 02 -T98A8 114:281.680 - 0.528ms returns 1 (0x1) -T98A8 114:281.744 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:281.808 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 114:282.216 Data: 03 -T98A8 114:282.320 - 0.576ms returns 1 (0x1) -T98A8 114:282.384 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:282.448 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 114:282.768 Data: 03 -T98A8 114:282.864 - 0.484ms returns 1 (0x1) -T98A8 114:282.928 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:282.984 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 114:283.392 Data: 02 -T98A8 114:283.560 - 0.635ms returns 1 (0x1) -T98A8 114:284.240 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:284.328 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 114:284.688 Data: 01 -T98A8 114:284.784 - 0.552ms returns 1 (0x1) -T98A8 114:284.864 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:284.944 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 114:285.272 Data: 00 00 00 00 -T98A8 114:285.392 - 0.528ms returns 4 (0x4) -T98A8 114:285.504 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:285.568 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 114:285.912 Data: 00 -T98A8 114:286.032 - 0.529ms returns 1 (0x1) -T98A8 114:286.384 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:286.512 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 114:286.864 Data: 00 -T98A8 114:286.976 - 0.586ms returns 1 (0x1) -T98A8 114:287.128 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:287.192 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 114:287.568 Data: 10 CF 01 20 -T98A8 114:287.720 - 0.594ms returns 4 (0x4) -T98A8 114:287.832 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:287.920 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 114:288.304 Data: 49 CF 01 20 -T98A8 114:288.432 - 0.600ms returns 4 (0x4) -T358C 114:288.624 JLINK_IsHalted() -T358C 114:288.976 - 0.342ms returns FALSE -T358C 114:389.608 JLINK_HasError() -T358C 114:389.840 JLINK_IsHalted() -T358C 114:390.360 - 0.533ms returns FALSE -T358C 114:491.304 JLINK_HasError() -T358C 114:491.544 JLINK_IsHalted() -T358C 114:492.568 - 1.029ms returns FALSE -T358C 114:592.768 JLINK_HasError() -T358C 114:592.920 JLINK_IsHalted() -T358C 114:593.328 - 0.403ms returns FALSE -T358C 114:693.656 JLINK_HasError() -T358C 114:693.848 JLINK_IsHalted() -T358C 114:694.288 - 0.433ms returns FALSE -T358C 114:794.536 JLINK_HasError() -T358C 114:794.856 JLINK_HasError() -T358C 114:794.968 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 114:795.120 Data: F7 AE 0E 05 -T358C 114:795.440 Debug reg: DWT_CYCCNT -T358C 114:795.584 - 0.610ms returns 1 (0x1) -T98A8 114:798.888 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 114:799.064 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 114:799.704 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 114:799.856 - 0.976ms returns 25 (0x19) -T98A8 114:800.000 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:800.088 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 114:800.472 Data: 02 -T98A8 114:800.656 - 0.644ms returns 1 (0x1) -T98A8 114:800.872 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:800.976 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 114:801.520 Data: 00 00 00 00 -T98A8 114:801.640 - 0.774ms returns 4 (0x4) -T98A8 114:801.712 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:801.776 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 114:802.256 Data: 00 00 00 00 -T98A8 114:802.408 - 0.684ms returns 4 (0x4) -T98A8 114:802.472 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:802.544 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 114:803.072 Data: 80 56 43 BC -T98A8 114:803.200 - 0.719ms returns 4 (0x4) -T98A8 114:803.280 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:803.368 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 114:803.864 Data: 00 00 00 00 -T98A8 114:803.968 - 0.691ms returns 4 (0x4) -T98A8 114:804.048 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:804.112 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 114:804.480 Data: 03 -T98A8 114:804.648 - 0.602ms returns 1 (0x1) -T98A8 114:804.712 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:804.784 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 114:805.136 Data: 03 -T98A8 114:805.264 - 0.542ms returns 1 (0x1) -T98A8 114:805.328 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:805.392 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 114:805.744 Data: 03 -T98A8 114:805.848 - 0.524ms returns 1 (0x1) -T98A8 114:805.936 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:806.000 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 114:806.888 Data: 03 -T98A8 114:807.088 - 1.157ms returns 1 (0x1) -T98A8 114:807.192 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:807.280 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 114:807.760 Data: 02 -T98A8 114:807.888 - 0.695ms returns 1 (0x1) -T98A8 114:807.960 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:808.024 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 114:808.400 Data: 02 -T98A8 114:808.512 - 0.552ms returns 1 (0x1) -T98A8 114:808.592 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:808.664 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 114:809.512 Data: 03 -T98A8 114:809.704 - 1.119ms returns 1 (0x1) -T98A8 114:810.712 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:810.816 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 114:811.264 Data: 01 -T98A8 114:811.416 - 0.712ms returns 1 (0x1) -T98A8 114:811.504 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 114:811.584 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 114:812.504 Data: 00 00 -T98A8 114:812.672 - 1.159ms returns 2 (0x2) -T98A8 114:812.760 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 114:812.848 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 114:813.264 Data: 00 00 -T98A8 114:813.400 - 0.642ms returns 2 (0x2) -T98A8 114:813.696 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:813.776 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 114:814.120 Data: 40 C4 01 20 -T98A8 114:814.256 - 0.561ms returns 4 (0x4) -T98A8 114:814.400 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:814.504 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 114:814.936 Data: 01 00 00 00 -T98A8 114:815.152 - 0.761ms returns 4 (0x4) -T98A8 114:815.312 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:815.384 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 114:815.808 Data: 00 00 00 00 -T98A8 114:815.952 - 0.638ms returns 4 (0x4) -T98A8 114:816.024 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:816.088 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 114:816.496 Data: 00 00 00 00 -T98A8 114:816.624 - 0.606ms returns 4 (0x4) -T98A8 114:816.728 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:816.808 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 114:817.280 Data: 80 56 43 BC -T98A8 114:817.472 - 0.735ms returns 4 (0x4) -T98A8 114:817.560 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:817.664 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 114:818.096 Data: 00 00 00 00 -T98A8 114:818.240 - 0.684ms returns 4 (0x4) -T98A8 114:818.384 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:818.472 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 114:818.880 Data: 02 -T98A8 114:818.992 - 0.613ms returns 1 (0x1) -T98A8 114:819.096 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:819.184 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 114:819.696 Data: 02 -T98A8 114:819.824 - 0.734ms returns 1 (0x1) -T98A8 114:819.920 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:820.008 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 114:821.008 Data: 02 -T98A8 114:821.144 - 1.227ms returns 1 (0x1) -T98A8 114:821.224 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:821.288 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 114:821.648 Data: 02 -T98A8 114:821.776 - 0.552ms returns 1 (0x1) -T98A8 114:821.848 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:821.912 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 114:822.272 Data: 03 -T98A8 114:822.376 - 0.528ms returns 1 (0x1) -T98A8 114:822.440 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:822.512 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 114:822.928 Data: 03 -T98A8 114:823.040 - 0.604ms returns 1 (0x1) -T98A8 114:823.120 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:823.216 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 114:823.600 Data: 02 -T98A8 114:823.704 - 0.589ms returns 1 (0x1) -T98A8 114:824.552 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:824.656 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 114:825.024 Data: 01 -T98A8 114:825.168 - 0.621ms returns 1 (0x1) -T98A8 114:825.512 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:825.688 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 114:826.896 Data: 00 00 00 00 -T98A8 114:827.048 - 1.546ms returns 4 (0x4) -T98A8 114:827.328 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:827.408 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 114:827.856 Data: 00 -T98A8 114:828.032 - 0.700ms returns 1 (0x1) -T98A8 114:828.464 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 114:828.544 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 114:828.928 Data: 00 -T98A8 114:829.032 - 0.569ms returns 1 (0x1) -T98A8 114:829.224 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:829.312 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 114:829.672 Data: 10 CF 01 20 -T98A8 114:829.776 - 0.554ms returns 4 (0x4) -T98A8 114:829.904 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 114:829.992 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 114:830.424 Data: 49 CF 01 20 -T98A8 114:830.544 - 0.638ms returns 4 (0x4) -T358C 114:830.744 JLINK_IsHalted() -T358C 114:831.128 - 0.389ms returns FALSE -T358C 114:931.776 JLINK_HasError() -T358C 114:931.968 JLINK_IsHalted() -T358C 114:932.464 - 0.492ms returns FALSE -T358C 115:033.600 JLINK_HasError() -T358C 115:033.920 JLINK_IsHalted() -T358C 115:034.472 - 0.543ms returns FALSE -T358C 115:135.272 JLINK_HasError() -T358C 115:135.440 JLINK_IsHalted() -T358C 115:135.832 - 0.403ms returns FALSE -T358C 115:236.208 JLINK_HasError() -T358C 115:236.376 JLINK_IsHalted() -T358C 115:236.904 - 0.527ms returns FALSE -T358C 115:337.264 JLINK_HasError() -T358C 115:337.496 JLINK_HasError() -T358C 115:337.616 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 115:337.752 Data: F7 AE 0E 05 -T358C 115:337.872 Debug reg: DWT_CYCCNT -T358C 115:337.984 - 0.369ms returns 1 (0x1) -T98A8 115:338.224 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 115:338.384 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 115:338.992 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 115:339.176 - 0.951ms returns 25 (0x19) -T98A8 115:339.264 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:339.376 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 115:339.752 Data: 02 -T98A8 115:339.904 - 0.642ms returns 1 (0x1) -T98A8 115:340.032 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:340.120 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 115:340.672 Data: 00 00 00 00 -T98A8 115:340.784 - 0.753ms returns 4 (0x4) -T98A8 115:340.864 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:340.944 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 115:341.712 Data: 00 00 00 00 -T98A8 115:341.888 - 1.017ms returns 4 (0x4) -T98A8 115:341.992 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:342.080 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 115:342.592 Data: 80 56 43 BC -T98A8 115:342.720 - 0.733ms returns 4 (0x4) -T98A8 115:342.800 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:342.864 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 115:343.344 Data: 00 00 00 00 -T98A8 115:343.472 - 0.677ms returns 4 (0x4) -T98A8 115:343.552 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:343.632 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 115:344.000 Data: 03 -T98A8 115:344.144 - 0.584ms returns 1 (0x1) -T98A8 115:344.216 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:344.280 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 115:344.656 Data: 03 -T98A8 115:344.784 - 0.566ms returns 1 (0x1) -T98A8 115:344.848 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:344.920 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 115:345.488 Data: 03 -T98A8 115:345.640 - 0.784ms returns 1 (0x1) -T98A8 115:345.712 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:345.816 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 115:347.632 Data: 03 -T98A8 115:347.888 - 2.168ms returns 1 (0x1) -T98A8 115:347.984 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:348.056 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 115:348.440 Data: 02 -T98A8 115:348.568 - 0.586ms returns 1 (0x1) -T98A8 115:348.656 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:348.736 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 115:349.104 Data: 02 -T98A8 115:349.264 - 0.590ms returns 1 (0x1) -T98A8 115:349.416 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:349.552 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 115:349.976 Data: 03 -T98A8 115:350.144 - 0.724ms returns 1 (0x1) -T98A8 115:350.224 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:350.448 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 115:350.848 Data: 01 -T98A8 115:351.000 - 0.781ms returns 1 (0x1) -T98A8 115:351.080 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 115:351.144 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 115:351.528 Data: 00 00 -T98A8 115:351.656 - 0.575ms returns 2 (0x2) -T98A8 115:351.744 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 115:351.808 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 115:352.304 Data: 00 00 -T98A8 115:352.464 - 0.723ms returns 2 (0x2) -T98A8 115:352.688 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:352.768 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 115:353.152 Data: 40 C4 01 20 -T98A8 115:353.320 - 0.625ms returns 4 (0x4) -T98A8 115:353.424 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:353.512 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 115:353.880 Data: 01 00 00 00 -T98A8 115:354.008 - 0.581ms returns 4 (0x4) -T98A8 115:354.096 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:354.160 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 115:354.520 Data: 00 00 00 00 -T98A8 115:354.640 - 0.549ms returns 4 (0x4) -T98A8 115:354.712 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:354.800 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 115:355.304 Data: 00 00 00 00 -T98A8 115:355.472 - 0.752ms returns 4 (0x4) -T98A8 115:355.560 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:355.632 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 115:356.008 Data: 80 56 43 BC -T98A8 115:356.136 - 0.570ms returns 4 (0x4) -T98A8 115:356.200 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:356.264 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 115:356.696 Data: 00 00 00 00 -T98A8 115:356.928 - 0.719ms returns 4 (0x4) -T98A8 115:357.056 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:357.208 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 115:357.776 Data: 02 -T98A8 115:357.936 - 0.876ms returns 1 (0x1) -T98A8 115:358.056 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:358.192 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 115:358.544 Data: 02 -T98A8 115:358.768 - 0.709ms returns 1 (0x1) -T98A8 115:358.864 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:358.928 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 115:359.296 Data: 02 -T98A8 115:359.424 - 0.564ms returns 1 (0x1) -T98A8 115:359.488 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:359.576 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 115:359.960 Data: 02 -T98A8 115:360.048 - 0.562ms returns 1 (0x1) -T98A8 115:360.128 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:360.192 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 115:360.536 Data: 03 -T98A8 115:360.624 - 0.501ms returns 1 (0x1) -T98A8 115:360.704 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:360.752 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 115:361.136 Data: 03 -T98A8 115:361.320 - 0.619ms returns 1 (0x1) -T98A8 115:361.408 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:361.488 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 115:362.288 Data: 02 -T98A8 115:362.448 - 1.041ms returns 1 (0x1) -T98A8 115:362.536 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:362.648 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 115:363.176 Data: 01 -T98A8 115:363.352 - 0.817ms returns 1 (0x1) -T98A8 115:363.472 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:363.560 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 115:363.928 Data: 00 00 00 00 -T98A8 115:364.056 - 0.590ms returns 4 (0x4) -T98A8 115:364.224 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:364.288 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 115:364.648 Data: 00 -T98A8 115:364.824 - 0.610ms returns 1 (0x1) -T98A8 115:365.248 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:365.336 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 115:365.696 Data: 00 -T98A8 115:365.824 - 0.582ms returns 1 (0x1) -T98A8 115:366.064 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:366.168 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 115:366.512 Data: 10 CF 01 20 -T98A8 115:366.640 - 0.567ms returns 4 (0x4) -T98A8 115:366.744 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:366.808 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 115:367.168 Data: 49 CF 01 20 -T98A8 115:367.296 - 0.560ms returns 4 (0x4) -T358C 115:367.488 JLINK_IsHalted() -T358C 115:367.848 - 0.350ms returns FALSE -T358C 115:468.056 JLINK_HasError() -T358C 115:468.328 JLINK_IsHalted() -T358C 115:469.456 - 1.118ms returns FALSE -T358C 115:570.736 JLINK_HasError() -T358C 115:570.928 JLINK_IsHalted() -T358C 115:571.408 - 0.470ms returns FALSE -T358C 115:672.320 JLINK_HasError() -T358C 115:672.472 JLINK_IsHalted() -T358C 115:673.560 - 1.089ms returns FALSE -T358C 115:774.744 JLINK_HasError() -T358C 115:774.960 JLINK_IsHalted() -T358C 115:775.984 - 1.014ms returns FALSE -T358C 115:876.632 JLINK_HasError() -T358C 115:876.912 JLINK_HasError() -T358C 115:877.032 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 115:877.184 Data: F7 AE 0E 05 -T358C 115:877.360 Debug reg: DWT_CYCCNT -T358C 115:877.544 - 0.503ms returns 1 (0x1) -T98A8 115:878.040 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 115:878.184 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 115:878.784 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 115:878.928 - 0.884ms returns 25 (0x19) -T98A8 115:879.016 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:879.080 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 115:879.504 Data: 02 -T98A8 115:879.680 - 0.672ms returns 1 (0x1) -T98A8 115:879.848 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:879.920 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 115:880.424 Data: 00 00 00 00 -T98A8 115:880.576 - 0.734ms returns 4 (0x4) -T98A8 115:880.664 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:880.744 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 115:881.688 Data: 00 00 00 00 -T98A8 115:881.808 - 1.136ms returns 4 (0x4) -T98A8 115:881.872 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:881.944 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 115:882.432 Data: 80 56 43 BC -T98A8 115:882.536 - 0.654ms returns 4 (0x4) -T98A8 115:882.600 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:882.664 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 115:883.120 Data: 00 00 00 00 -T98A8 115:883.280 - 0.674ms returns 4 (0x4) -T98A8 115:883.368 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:883.440 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 115:884.480 Data: 03 -T98A8 115:884.696 - 1.325ms returns 1 (0x1) -T98A8 115:884.880 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:885.016 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 115:885.480 Data: 03 -T98A8 115:885.608 - 0.720ms returns 1 (0x1) -T98A8 115:885.696 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:885.800 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 115:886.808 Data: 03 -T98A8 115:886.992 - 1.290ms returns 1 (0x1) -T98A8 115:887.064 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:887.168 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 115:887.552 Data: 03 -T98A8 115:887.704 - 0.640ms returns 1 (0x1) -T98A8 115:887.808 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:887.896 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 115:888.336 Data: 02 -T98A8 115:888.464 - 0.644ms returns 1 (0x1) -T98A8 115:888.528 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:888.592 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 115:888.944 Data: 02 -T98A8 115:889.040 - 0.514ms returns 1 (0x1) -T98A8 115:889.112 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:889.176 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 115:889.512 Data: 03 -T98A8 115:889.616 - 0.503ms returns 1 (0x1) -T98A8 115:889.680 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:889.752 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 115:890.096 Data: 01 -T98A8 115:890.192 - 0.511ms returns 1 (0x1) -T98A8 115:890.256 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 115:890.320 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 115:890.704 Data: 00 00 -T98A8 115:890.800 - 0.544ms returns 2 (0x2) -T98A8 115:890.864 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 115:890.928 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 115:891.328 Data: 00 00 -T98A8 115:891.416 - 0.557ms returns 2 (0x2) -T98A8 115:891.600 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:891.664 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 115:892.144 Data: 40 C4 01 20 -T98A8 115:892.304 - 0.699ms returns 4 (0x4) -T98A8 115:892.432 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:892.520 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 115:892.928 Data: 01 00 00 00 -T98A8 115:893.072 - 0.645ms returns 4 (0x4) -T98A8 115:893.184 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:893.288 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 115:893.784 Data: 00 00 00 00 -T98A8 115:893.912 - 0.726ms returns 4 (0x4) -T98A8 115:893.992 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:894.064 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 115:894.424 Data: 00 00 00 00 -T98A8 115:894.512 - 0.534ms returns 4 (0x4) -T98A8 115:894.608 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:894.672 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 115:895.016 Data: 80 56 43 BC -T98A8 115:895.120 - 0.520ms returns 4 (0x4) -T98A8 115:895.192 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:895.256 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 115:895.600 Data: 00 00 00 00 -T98A8 115:895.696 - 0.501ms returns 4 (0x4) -T98A8 115:895.784 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:895.848 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 115:896.560 Data: 02 -T98A8 115:896.704 - 0.926ms returns 1 (0x1) -T98A8 115:896.784 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:896.856 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 115:897.232 Data: 02 -T98A8 115:897.368 - 0.578ms returns 1 (0x1) -T98A8 115:897.448 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:897.512 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 115:897.880 Data: 02 -T98A8 115:898.008 - 0.570ms returns 1 (0x1) -T98A8 115:898.096 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:898.200 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 115:898.600 Data: 02 -T98A8 115:898.688 - 0.588ms returns 1 (0x1) -T98A8 115:898.776 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:898.840 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 115:899.184 Data: 03 -T98A8 115:899.328 - 0.561ms returns 1 (0x1) -T98A8 115:899.416 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:899.504 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 115:899.840 Data: 03 -T98A8 115:899.944 - 0.529ms returns 1 (0x1) -T98A8 115:900.016 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:900.072 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 115:900.456 Data: 02 -T98A8 115:900.560 - 0.543ms returns 1 (0x1) -T98A8 115:900.624 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:900.688 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 115:901.096 Data: 01 -T98A8 115:901.360 - 0.737ms returns 1 (0x1) -T98A8 115:901.504 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:901.680 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 115:902.184 Data: 00 00 00 00 -T98A8 115:902.320 - 0.823ms returns 4 (0x4) -T98A8 115:902.504 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:902.640 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 115:903.000 Data: 00 -T98A8 115:903.104 - 0.600ms returns 1 (0x1) -T98A8 115:903.448 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 115:903.528 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 115:904.384 Data: 00 -T98A8 115:904.528 - 1.078ms returns 1 (0x1) -T98A8 115:904.688 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:904.752 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 115:905.128 Data: 10 CF 01 20 -T98A8 115:905.280 - 0.597ms returns 4 (0x4) -T98A8 115:905.408 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 115:905.496 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 115:905.872 Data: 49 CF 01 20 -T98A8 115:906.008 - 0.595ms returns 4 (0x4) -T358C 115:906.216 JLINK_IsHalted() -T358C 115:906.560 - 0.353ms returns FALSE -T358C 116:007.248 JLINK_HasError() -T358C 116:007.536 JLINK_IsHalted() -T358C 116:007.960 - 0.414ms returns FALSE -T358C 116:108.144 JLINK_HasError() -T358C 116:108.304 JLINK_IsHalted() -T358C 116:108.824 - 0.524ms returns FALSE -T358C 116:209.488 JLINK_HasError() -T358C 116:209.640 JLINK_IsHalted() -T358C 116:210.072 - 0.436ms returns FALSE -T358C 116:311.248 JLINK_HasError() -T358C 116:311.400 JLINK_IsHalted() -T358C 116:311.792 - 0.392ms returns FALSE -T358C 116:412.504 JLINK_HasError() -T358C 116:412.672 JLINK_HasError() -T358C 116:412.720 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 116:412.800 Data: F7 AE 0E 05 -T358C 116:412.888 Debug reg: DWT_CYCCNT -T358C 116:412.968 - 0.244ms returns 1 (0x1) -T98A8 116:413.328 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 116:413.480 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 116:414.248 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 116:414.400 - 1.081ms returns 25 (0x19) -T98A8 116:414.512 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:414.592 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 116:415.000 Data: 02 -T98A8 116:415.168 - 0.650ms returns 1 (0x1) -T98A8 116:415.296 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:415.384 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 116:415.888 Data: 00 00 00 00 -T98A8 116:416.016 - 0.718ms returns 4 (0x4) -T98A8 116:416.088 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:416.168 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 116:417.296 Data: 00 00 00 00 -T98A8 116:417.432 - 1.336ms returns 4 (0x4) -T98A8 116:417.560 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:417.648 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 116:418.112 Data: 80 56 43 BC -T98A8 116:418.224 - 0.666ms returns 4 (0x4) -T98A8 116:418.368 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:418.448 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 116:418.928 Data: 00 00 00 00 -T98A8 116:419.048 - 0.676ms returns 4 (0x4) -T98A8 116:419.120 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:419.184 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 116:420.056 Data: 03 -T98A8 116:420.200 - 1.083ms returns 1 (0x1) -T98A8 116:420.304 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:420.400 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 116:420.800 Data: 03 -T98A8 116:420.976 - 0.680ms returns 1 (0x1) -T98A8 116:421.096 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:421.224 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 116:422.312 Data: 03 -T98A8 116:422.448 - 1.361ms returns 1 (0x1) -T98A8 116:422.544 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:422.632 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 116:423.000 Data: 03 -T98A8 116:423.128 - 0.582ms returns 1 (0x1) -T98A8 116:423.192 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:423.272 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 116:424.152 Data: 02 -T98A8 116:424.304 - 1.115ms returns 1 (0x1) -T98A8 116:424.408 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:424.496 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 116:424.848 Data: 02 -T98A8 116:424.944 - 0.539ms returns 1 (0x1) -T98A8 116:425.024 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:425.088 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 116:425.584 Data: 03 -T98A8 116:425.752 - 0.732ms returns 1 (0x1) -T98A8 116:425.840 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:425.944 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 116:426.544 Data: 01 -T98A8 116:426.672 - 0.821ms returns 1 (0x1) -T98A8 116:426.736 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 116:426.800 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 116:427.728 Data: 00 00 -T98A8 116:427.856 - 1.108ms returns 2 (0x2) -T98A8 116:427.920 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 116:427.984 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 116:428.416 Data: 00 00 -T98A8 116:428.568 - 0.653ms returns 2 (0x2) -T98A8 116:428.840 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:428.968 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 116:429.376 Data: 40 C4 01 20 -T98A8 116:429.544 - 0.704ms returns 4 (0x4) -T98A8 116:429.680 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:429.784 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 116:430.256 Data: 01 00 00 00 -T98A8 116:430.376 - 0.697ms returns 4 (0x4) -T98A8 116:430.464 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:430.528 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 116:430.888 Data: 00 00 00 00 -T98A8 116:431.000 - 0.537ms returns 4 (0x4) -T98A8 116:431.104 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:431.216 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 116:431.616 Data: 00 00 00 00 -T98A8 116:431.728 - 0.637ms returns 4 (0x4) -T98A8 116:431.832 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:431.896 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 116:432.256 Data: 80 56 43 BC -T98A8 116:432.368 - 0.538ms returns 4 (0x4) -T98A8 116:432.432 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:432.496 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 116:432.848 Data: 00 00 00 00 -T98A8 116:432.944 - 0.504ms returns 4 (0x4) -T98A8 116:433.024 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:433.088 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 116:433.496 Data: 02 -T98A8 116:433.616 - 0.587ms returns 1 (0x1) -T98A8 116:433.680 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:433.744 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 116:434.624 Data: 02 -T98A8 116:434.800 - 1.127ms returns 1 (0x1) -T98A8 116:434.920 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:435.008 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 116:435.368 Data: 02 -T98A8 116:435.480 - 0.568ms returns 1 (0x1) -T98A8 116:435.568 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:435.648 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 116:436.008 Data: 02 -T98A8 116:436.176 - 0.605ms returns 1 (0x1) -T98A8 116:436.264 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:436.392 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 116:436.952 Data: 03 -T98A8 116:437.352 - 1.087ms returns 1 (0x1) -T98A8 116:437.464 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:437.528 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 116:437.888 Data: 03 -T98A8 116:438.064 - 0.609ms returns 1 (0x1) -T98A8 116:438.224 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:438.360 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 116:439.936 Data: 02 -T98A8 116:440.088 - 1.868ms returns 1 (0x1) -T98A8 116:440.176 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:440.272 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 116:440.688 Data: 01 -T98A8 116:440.816 - 0.636ms returns 1 (0x1) -T98A8 116:440.912 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:441.000 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 116:441.496 Data: 00 00 00 00 -T98A8 116:441.624 - 0.723ms returns 4 (0x4) -T98A8 116:441.832 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:441.920 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 116:442.368 Data: 00 -T98A8 116:442.536 - 0.700ms returns 1 (0x1) -T98A8 116:442.904 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:443.008 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 116:443.376 Data: 00 -T98A8 116:443.520 - 0.609ms returns 1 (0x1) -T98A8 116:443.712 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:443.792 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 116:444.144 Data: 10 CF 01 20 -T98A8 116:444.288 - 0.577ms returns 4 (0x4) -T98A8 116:444.416 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:444.504 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 116:444.888 Data: 49 CF 01 20 -T98A8 116:445.032 - 0.614ms returns 4 (0x4) -T358C 116:445.296 JLINK_IsHalted() -T358C 116:446.192 - 0.902ms returns FALSE -T358C 116:547.376 JLINK_HasError() -T358C 116:547.600 JLINK_IsHalted() -T358C 116:547.992 - 0.395ms returns FALSE -T358C 116:648.856 JLINK_HasError() -T358C 116:649.064 JLINK_IsHalted() -T358C 116:649.456 - 0.395ms returns FALSE -T358C 116:749.848 JLINK_HasError() -T358C 116:750.040 JLINK_IsHalted() -T358C 116:751.000 - 0.967ms returns FALSE -T358C 116:852.352 JLINK_HasError() -T358C 116:852.480 JLINK_IsHalted() -T358C 116:852.880 - 0.390ms returns FALSE -T358C 116:954.024 JLINK_HasError() -T358C 116:954.192 JLINK_HasError() -T358C 116:954.264 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 116:954.368 Data: F7 AE 0E 05 -T358C 116:954.472 Debug reg: DWT_CYCCNT -T358C 116:954.584 - 0.316ms returns 1 (0x1) -T98A8 116:954.992 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 116:955.288 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 116:956.048 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 116:956.176 - 1.176ms returns 25 (0x19) -T98A8 116:956.304 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:956.368 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 116:956.760 Data: 02 -T98A8 116:956.904 - 0.599ms returns 1 (0x1) -T98A8 116:957.016 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:957.080 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 116:957.552 Data: 00 00 00 00 -T98A8 116:957.672 - 0.657ms returns 4 (0x4) -T98A8 116:957.744 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:957.824 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 116:958.288 Data: 00 00 00 00 -T98A8 116:958.384 - 0.635ms returns 4 (0x4) -T98A8 116:958.448 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:958.512 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 116:959.640 Data: 80 56 43 BC -T98A8 116:959.856 - 1.408ms returns 4 (0x4) -T98A8 116:959.960 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:960.040 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 116:960.536 Data: 00 00 00 00 -T98A8 116:960.656 - 0.699ms returns 4 (0x4) -T98A8 116:960.728 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:960.792 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 116:961.136 Data: 03 -T98A8 116:961.232 - 0.505ms returns 1 (0x1) -T98A8 116:961.424 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:961.488 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 116:962.384 Data: 03 -T98A8 116:962.480 - 1.063ms returns 1 (0x1) -T98A8 116:962.544 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:962.608 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 116:962.968 Data: 03 -T98A8 116:963.096 - 0.553ms returns 1 (0x1) -T98A8 116:963.176 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:963.240 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 116:963.584 Data: 03 -T98A8 116:963.688 - 0.510ms returns 1 (0x1) -T98A8 116:963.752 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:963.824 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 116:964.176 Data: 02 -T98A8 116:964.304 - 0.547ms returns 1 (0x1) -T98A8 116:964.392 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:964.456 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 116:964.816 Data: 02 -T98A8 116:964.912 - 0.535ms returns 1 (0x1) -T98A8 116:964.992 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:965.056 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 116:965.424 Data: 03 -T98A8 116:965.584 - 0.597ms returns 1 (0x1) -T98A8 116:965.672 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:965.744 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 116:966.104 Data: 01 -T98A8 116:966.224 - 0.557ms returns 1 (0x1) -T98A8 116:966.312 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 116:966.376 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 116:966.768 Data: 00 00 -T98A8 116:966.872 - 0.563ms returns 2 (0x2) -T98A8 116:966.936 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 116:967.000 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 116:967.408 Data: 00 00 -T98A8 116:967.552 - 0.622ms returns 2 (0x2) -T98A8 116:967.760 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:967.848 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 116:968.216 Data: 40 C4 01 20 -T98A8 116:968.360 - 0.599ms returns 4 (0x4) -T98A8 116:968.464 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:968.536 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 116:968.944 Data: 01 00 00 00 -T98A8 116:969.104 - 0.641ms returns 4 (0x4) -T98A8 116:969.232 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:969.304 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 116:969.768 Data: 00 00 00 00 -T98A8 116:969.896 - 0.669ms returns 4 (0x4) -T98A8 116:969.960 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:970.032 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 116:970.560 Data: 00 00 00 00 -T98A8 116:970.752 - 0.781ms returns 4 (0x4) -T98A8 116:971.328 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:971.440 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 116:971.840 Data: 80 56 43 BC -T98A8 116:971.968 - 0.646ms returns 4 (0x4) -T98A8 116:972.048 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:972.136 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 116:972.560 Data: 00 00 00 00 -T98A8 116:972.688 - 0.641ms returns 4 (0x4) -T98A8 116:972.784 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:972.848 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 116:973.184 Data: 02 -T98A8 116:973.312 - 0.527ms returns 1 (0x1) -T98A8 116:973.376 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:973.456 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 116:973.824 Data: 02 -T98A8 116:973.976 - 0.591ms returns 1 (0x1) -T98A8 116:974.056 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:974.128 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 116:974.544 Data: 02 -T98A8 116:974.656 - 0.600ms returns 1 (0x1) -T98A8 116:974.736 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:974.800 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 116:975.152 Data: 02 -T98A8 116:975.296 - 0.562ms returns 1 (0x1) -T98A8 116:975.360 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:975.568 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 116:976.040 Data: 03 -T98A8 116:976.144 - 0.780ms returns 1 (0x1) -T98A8 116:976.208 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:976.272 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 116:976.624 Data: 03 -T98A8 116:976.720 - 0.506ms returns 1 (0x1) -T98A8 116:976.784 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:976.848 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 116:977.176 Data: 02 -T98A8 116:977.280 - 0.497ms returns 1 (0x1) -T98A8 116:977.344 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:977.408 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 116:977.752 Data: 01 -T98A8 116:977.904 - 0.556ms returns 1 (0x1) -T98A8 116:978.000 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:978.072 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 116:978.448 Data: 00 00 00 00 -T98A8 116:978.576 - 0.575ms returns 4 (0x4) -T98A8 116:978.688 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:978.752 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 116:979.096 Data: 00 -T98A8 116:979.184 - 0.510ms returns 1 (0x1) -T98A8 116:979.544 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 116:979.608 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 116:979.944 Data: 00 -T98A8 116:980.032 - 0.497ms returns 1 (0x1) -T98A8 116:980.176 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:980.240 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 116:980.584 Data: 10 CF 01 20 -T98A8 116:980.672 - 0.506ms returns 4 (0x4) -T98A8 116:980.776 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 116:980.848 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 116:981.224 Data: 49 CF 01 20 -T98A8 116:981.328 - 0.553ms returns 4 (0x4) -T358C 116:981.568 JLINK_IsHalted() -T358C 116:982.040 - 0.462ms returns FALSE -T358C 117:082.328 JLINK_HasError() -T358C 117:082.512 JLINK_IsHalted() -T358C 117:082.904 - 0.401ms returns FALSE -T358C 117:183.552 JLINK_HasError() -T358C 117:183.704 JLINK_IsHalted() -T358C 117:184.176 - 0.480ms returns FALSE -T358C 117:285.360 JLINK_HasError() -T358C 117:285.504 JLINK_IsHalted() -T358C 117:285.888 - 0.377ms returns FALSE -T358C 117:386.496 JLINK_HasError() -T358C 117:386.736 JLINK_IsHalted() -T358C 117:387.216 - 0.473ms returns FALSE -T358C 117:488.344 JLINK_HasError() -T358C 117:488.496 JLINK_HasError() -T358C 117:488.560 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 117:488.664 Data: F7 AE 0E 05 -T358C 117:488.768 Debug reg: DWT_CYCCNT -T358C 117:488.872 - 0.302ms returns 1 (0x1) -T98A8 117:489.304 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 117:489.600 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 117:490.368 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 117:490.536 - 1.229ms returns 25 (0x19) -T98A8 117:490.648 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:490.736 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 117:491.184 Data: 02 -T98A8 117:491.328 - 0.672ms returns 1 (0x1) -T98A8 117:491.536 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:491.608 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 117:492.136 Data: 00 00 00 00 -T98A8 117:492.272 - 0.741ms returns 4 (0x4) -T98A8 117:492.336 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:492.416 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 117:492.904 Data: 00 00 00 00 -T98A8 117:493.056 - 0.713ms returns 4 (0x4) -T98A8 117:493.160 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:493.264 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 117:493.744 Data: 80 56 43 BC -T98A8 117:493.888 - 0.730ms returns 4 (0x4) -T98A8 117:493.968 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:494.032 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 117:494.544 Data: 00 00 00 00 -T98A8 117:494.672 - 0.699ms returns 4 (0x4) -T98A8 117:494.736 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:494.800 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 117:495.168 Data: 03 -T98A8 117:495.296 - 0.554ms returns 1 (0x1) -T98A8 117:495.360 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:495.424 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 117:496.048 Data: 03 -T98A8 117:496.296 - 0.925ms returns 1 (0x1) -T98A8 117:496.408 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:496.536 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 117:496.944 Data: 03 -T98A8 117:497.064 - 0.658ms returns 1 (0x1) -T98A8 117:497.136 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:497.200 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 117:498.128 Data: 03 -T98A8 117:498.280 - 1.148ms returns 1 (0x1) -T98A8 117:498.368 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:498.456 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 117:498.832 Data: 02 -T98A8 117:498.968 - 0.594ms returns 1 (0x1) -T98A8 117:499.048 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:499.112 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 117:499.504 Data: 02 -T98A8 117:499.664 - 0.620ms returns 1 (0x1) -T98A8 117:499.752 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:499.824 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 117:500.208 Data: 03 -T98A8 117:500.336 - 0.593ms returns 1 (0x1) -T98A8 117:500.416 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:500.632 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 117:501.584 Data: 01 -T98A8 117:501.744 - 1.333ms returns 1 (0x1) -T98A8 117:501.840 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 117:501.928 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 117:502.488 Data: 00 00 -T98A8 117:502.632 - 0.794ms returns 2 (0x2) -T98A8 117:502.736 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 117:502.808 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 117:503.280 Data: 00 00 -T98A8 117:503.424 - 0.694ms returns 2 (0x2) -T98A8 117:503.632 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:503.696 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 117:504.024 Data: 40 C4 01 20 -T98A8 117:504.168 - 0.537ms returns 4 (0x4) -T98A8 117:504.280 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:504.360 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 117:505.296 Data: 01 00 00 00 -T98A8 117:505.456 - 1.177ms returns 4 (0x4) -T98A8 117:505.560 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:505.640 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 117:506.048 Data: 00 00 00 00 -T98A8 117:506.200 - 0.636ms returns 4 (0x4) -T98A8 117:506.288 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:506.368 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 117:506.752 Data: 00 00 00 00 -T98A8 117:506.896 - 0.609ms returns 4 (0x4) -T98A8 117:506.984 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:507.048 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 117:507.432 Data: 80 56 43 BC -T98A8 117:507.536 - 0.547ms returns 4 (0x4) -T98A8 117:507.600 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:507.672 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 117:508.016 Data: 00 00 00 00 -T98A8 117:508.112 - 0.513ms returns 4 (0x4) -T98A8 117:508.184 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:508.248 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 117:508.584 Data: 02 -T98A8 117:508.688 - 0.490ms returns 1 (0x1) -T98A8 117:508.752 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:508.816 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 117:509.168 Data: 02 -T98A8 117:509.288 - 0.546ms returns 1 (0x1) -T98A8 117:509.360 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:509.440 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 117:509.808 Data: 02 -T98A8 117:509.936 - 0.576ms returns 1 (0x1) -T98A8 117:510.040 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:510.128 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 117:510.576 Data: 02 -T98A8 117:510.680 - 0.649ms returns 1 (0x1) -T98A8 117:510.768 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:510.848 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 117:511.312 Data: 03 -T98A8 117:511.448 - 0.676ms returns 1 (0x1) -T98A8 117:511.512 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:511.592 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 117:511.960 Data: 03 -T98A8 117:512.064 - 0.545ms returns 1 (0x1) -T98A8 117:512.128 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:512.208 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 117:512.560 Data: 02 -T98A8 117:512.656 - 0.526ms returns 1 (0x1) -T98A8 117:512.728 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:512.792 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 117:513.136 Data: 01 -T98A8 117:513.240 - 0.511ms returns 1 (0x1) -T98A8 117:513.304 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:513.368 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 117:513.712 Data: 00 00 00 00 -T98A8 117:513.816 - 0.508ms returns 4 (0x4) -T98A8 117:513.960 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:514.032 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 117:514.432 Data: 00 -T98A8 117:514.536 - 0.571ms returns 1 (0x1) -T98A8 117:514.928 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 117:515.008 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 117:515.432 Data: 00 -T98A8 117:515.536 - 0.600ms returns 1 (0x1) -T98A8 117:515.664 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:515.736 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 117:516.096 Data: 10 CF 01 20 -T98A8 117:516.200 - 0.532ms returns 4 (0x4) -T98A8 117:516.368 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 117:516.440 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 117:516.800 Data: 49 CF 01 20 -T98A8 117:516.904 - 0.538ms returns 4 (0x4) -T358C 117:517.104 JLINK_IsHalted() -T358C 117:517.592 - 0.482ms returns FALSE -T358C 117:618.664 JLINK_HasError() -T358C 117:618.864 JLINK_IsHalted() -T358C 117:619.344 - 0.471ms returns FALSE -T358C 117:719.760 JLINK_HasError() -T358C 117:719.912 JLINK_IsHalted() -T358C 117:720.400 - 0.487ms returns FALSE -T358C 117:820.784 JLINK_HasError() -T358C 117:821.032 JLINK_IsHalted() -T358C 117:821.592 - 0.555ms returns FALSE -T358C 117:922.624 JLINK_HasError() -T358C 117:922.928 JLINK_IsHalted() -T358C 117:923.520 - 0.593ms returns FALSE -T358C 118:024.624 JLINK_HasError() -T358C 118:024.880 JLINK_HasError() -T358C 118:025.008 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 118:025.168 Data: F7 AE 0E 05 -T358C 118:025.344 Debug reg: DWT_CYCCNT -T358C 118:025.648 - 0.642ms returns 1 (0x1) -T98A8 118:026.152 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 118:026.392 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 118:027.224 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 118:027.392 - 1.246ms returns 25 (0x19) -T98A8 118:027.520 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:027.600 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 118:028.112 Data: 02 -T98A8 118:028.264 - 0.752ms returns 1 (0x1) -T98A8 118:028.400 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:028.480 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 118:029.096 Data: 00 00 00 00 -T98A8 118:029.232 - 0.826ms returns 4 (0x4) -T98A8 118:029.312 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:029.376 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 118:029.976 Data: 00 00 00 00 -T98A8 118:030.120 - 0.814ms returns 4 (0x4) -T98A8 118:030.208 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:030.336 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 118:031.000 Data: 80 56 43 BC -T98A8 118:031.152 - 0.950ms returns 4 (0x4) -T98A8 118:031.256 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:031.336 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 118:031.888 Data: 00 00 00 00 -T98A8 118:032.024 - 0.764ms returns 4 (0x4) -T98A8 118:032.112 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:032.208 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 118:032.592 Data: 03 -T98A8 118:032.728 - 0.607ms returns 1 (0x1) -T98A8 118:032.808 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:032.872 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 118:033.240 Data: 03 -T98A8 118:033.344 - 0.536ms returns 1 (0x1) -T98A8 118:033.424 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:033.472 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 118:034.000 Data: 03 -T98A8 118:034.280 - 0.861ms returns 1 (0x1) -T98A8 118:034.448 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:034.520 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 118:035.120 Data: 03 -T98A8 118:035.280 - 0.831ms returns 1 (0x1) -T98A8 118:035.376 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:035.480 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 118:035.824 Data: 02 -T98A8 118:035.968 - 0.589ms returns 1 (0x1) -T98A8 118:036.072 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:036.144 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 118:036.608 Data: 02 -T98A8 118:036.736 - 0.664ms returns 1 (0x1) -T98A8 118:036.824 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:036.888 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 118:037.232 Data: 03 -T98A8 118:037.336 - 0.516ms returns 1 (0x1) -T98A8 118:037.416 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:037.480 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 118:037.808 Data: 01 -T98A8 118:037.912 - 0.501ms returns 1 (0x1) -T98A8 118:037.992 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 118:038.056 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 118:038.480 Data: 00 00 -T98A8 118:038.632 - 0.651ms returns 2 (0x2) -T98A8 118:038.768 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 118:038.848 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 118:039.256 Data: 00 00 -T98A8 118:039.400 - 0.629ms returns 2 (0x2) -T98A8 118:039.600 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:039.680 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 118:040.080 Data: 40 C4 01 20 -T98A8 118:040.192 - 0.586ms returns 4 (0x4) -T98A8 118:040.296 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:040.368 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 118:040.728 Data: 01 00 00 00 -T98A8 118:040.832 - 0.530ms returns 4 (0x4) -T98A8 118:040.920 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:040.984 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 118:041.344 Data: 00 00 00 00 -T98A8 118:041.432 - 0.522ms returns 4 (0x4) -T98A8 118:041.512 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:041.576 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 118:041.920 Data: 00 00 00 00 -T98A8 118:042.024 - 0.509ms returns 4 (0x4) -T98A8 118:042.112 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:042.176 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 118:042.624 Data: 80 56 43 BC -T98A8 118:042.728 - 0.618ms returns 4 (0x4) -T98A8 118:042.800 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:042.864 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 118:043.224 Data: 00 00 00 00 -T98A8 118:043.312 - 0.518ms returns 4 (0x4) -T98A8 118:043.408 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:043.472 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 118:043.856 Data: 02 -T98A8 118:043.952 - 0.554ms returns 1 (0x1) -T98A8 118:044.032 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:044.096 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 118:044.464 Data: 02 -T98A8 118:044.568 - 0.535ms returns 1 (0x1) -T98A8 118:044.632 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:044.696 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 118:045.032 Data: 02 -T98A8 118:045.184 - 0.547ms returns 1 (0x1) -T98A8 118:045.296 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:045.424 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 118:045.808 Data: 02 -T98A8 118:045.976 - 0.677ms returns 1 (0x1) -T98A8 118:046.056 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:046.144 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 118:046.512 Data: 03 -T98A8 118:046.616 - 0.551ms returns 1 (0x1) -T98A8 118:046.680 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:046.744 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 118:047.080 Data: 03 -T98A8 118:047.208 - 0.532ms returns 1 (0x1) -T98A8 118:047.280 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:047.344 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 118:047.704 Data: 02 -T98A8 118:047.808 - 0.522ms returns 1 (0x1) -T98A8 118:047.872 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:047.936 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 118:048.336 Data: 01 -T98A8 118:048.424 - 0.550ms returns 1 (0x1) -T98A8 118:048.496 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:048.560 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 118:048.944 Data: 00 00 00 00 -T98A8 118:049.048 - 0.557ms returns 4 (0x4) -T98A8 118:049.168 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:049.232 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 118:049.600 Data: 00 -T98A8 118:049.704 - 0.535ms returns 1 (0x1) -T98A8 118:050.072 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:050.152 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 118:050.672 Data: 00 -T98A8 118:050.840 - 0.758ms returns 1 (0x1) -T98A8 118:051.032 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:051.112 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 118:051.520 Data: 10 CF 01 20 -T98A8 118:051.648 - 0.617ms returns 4 (0x4) -T98A8 118:051.752 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:051.816 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 118:052.184 Data: 49 CF 01 20 -T98A8 118:052.288 - 0.542ms returns 4 (0x4) -T358C 118:052.480 JLINK_IsHalted() -T358C 118:052.848 - 0.373ms returns FALSE -T358C 118:153.712 JLINK_HasError() -T358C 118:153.872 JLINK_IsHalted() -T358C 118:154.280 - 0.411ms returns FALSE -T358C 118:254.824 JLINK_HasError() -T358C 118:254.976 JLINK_IsHalted() -T358C 118:255.536 - 0.560ms returns FALSE -T358C 118:356.656 JLINK_HasError() -T358C 118:356.888 JLINK_IsHalted() -T358C 118:357.552 - 0.659ms returns FALSE -T358C 118:458.192 JLINK_HasError() -T358C 118:458.328 JLINK_IsHalted() -T358C 118:458.864 - 0.526ms returns FALSE -T358C 118:559.280 JLINK_HasError() -T358C 118:559.536 JLINK_HasError() -T358C 118:559.728 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 118:559.872 Data: F7 AE 0E 05 -T358C 118:560.080 Debug reg: DWT_CYCCNT -T358C 118:560.176 - 0.450ms returns 1 (0x1) -T98A8 118:560.488 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 118:560.616 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 118:561.256 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 118:561.408 - 0.911ms returns 25 (0x19) -T98A8 118:561.512 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:561.584 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 118:562.000 Data: 02 -T98A8 118:562.136 - 0.631ms returns 1 (0x1) -T98A8 118:562.256 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:562.320 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 118:562.856 Data: 00 00 00 00 -T98A8 118:562.960 - 0.700ms returns 4 (0x4) -T98A8 118:563.032 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:563.096 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 118:563.600 Data: 00 00 00 00 -T98A8 118:563.728 - 0.695ms returns 4 (0x4) -T98A8 118:563.792 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:563.864 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 118:564.504 Data: 80 56 43 BC -T98A8 118:564.592 - 0.806ms returns 4 (0x4) -T98A8 118:564.672 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:564.736 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 118:565.264 Data: 00 00 00 00 -T98A8 118:565.376 - 0.698ms returns 4 (0x4) -T98A8 118:565.456 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:565.520 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 118:565.864 Data: 03 -T98A8 118:565.952 - 0.511ms returns 1 (0x1) -T98A8 118:566.032 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:566.096 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 118:566.512 Data: 03 -T98A8 118:566.672 - 0.647ms returns 1 (0x1) -T98A8 118:566.768 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:566.848 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 118:567.320 Data: 03 -T98A8 118:567.424 - 0.655ms returns 1 (0x1) -T98A8 118:567.488 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:567.552 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 118:567.896 Data: 03 -T98A8 118:567.984 - 0.498ms returns 1 (0x1) -T98A8 118:568.064 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:568.128 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 118:568.496 Data: 02 -T98A8 118:568.656 - 0.590ms returns 1 (0x1) -T98A8 118:568.728 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:568.816 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 118:569.176 Data: 02 -T98A8 118:569.296 - 0.562ms returns 1 (0x1) -T98A8 118:569.384 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:569.448 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 118:569.840 Data: 03 -T98A8 118:569.944 - 0.566ms returns 1 (0x1) -T98A8 118:570.008 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:570.072 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 118:570.512 Data: 01 -T98A8 118:570.600 - 0.592ms returns 1 (0x1) -T98A8 118:570.672 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 118:570.736 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 118:571.160 Data: 00 00 -T98A8 118:571.248 - 0.583ms returns 2 (0x2) -T98A8 118:571.312 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 118:571.376 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 118:571.776 Data: 00 00 -T98A8 118:571.880 - 0.554ms returns 2 (0x2) -T98A8 118:572.008 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:572.080 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 118:572.504 Data: 40 C4 01 20 -T98A8 118:572.592 - 0.591ms returns 4 (0x4) -T98A8 118:572.688 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:572.752 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 118:573.096 Data: 01 00 00 00 -T98A8 118:573.200 - 0.503ms returns 4 (0x4) -T98A8 118:573.272 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:573.336 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 118:573.760 Data: 00 00 00 00 -T98A8 118:573.848 - 0.583ms returns 4 (0x4) -T98A8 118:573.928 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:573.992 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 118:574.336 Data: 00 00 00 00 -T98A8 118:574.464 - 0.536ms returns 4 (0x4) -T98A8 118:574.552 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:574.616 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 118:575.024 Data: 80 56 43 BC -T98A8 118:575.232 - 0.684ms returns 4 (0x4) -T98A8 118:575.448 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:575.696 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 118:576.104 Data: 00 00 00 00 -T98A8 118:576.272 - 0.810ms returns 4 (0x4) -T98A8 118:576.368 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:576.448 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 118:576.832 Data: 02 -T98A8 118:576.960 - 0.585ms returns 1 (0x1) -T98A8 118:577.024 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:577.104 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 118:577.496 Data: 02 -T98A8 118:577.600 - 0.566ms returns 1 (0x1) -T98A8 118:577.664 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:577.728 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 118:578.088 Data: 02 -T98A8 118:578.256 - 0.587ms returns 1 (0x1) -T98A8 118:578.344 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:578.416 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 118:578.816 Data: 02 -T98A8 118:578.928 - 0.582ms returns 1 (0x1) -T98A8 118:578.992 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:579.056 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 118:579.408 Data: 03 -T98A8 118:579.544 - 0.544ms returns 1 (0x1) -T98A8 118:579.608 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:579.688 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 118:580.056 Data: 03 -T98A8 118:580.200 - 0.580ms returns 1 (0x1) -T98A8 118:580.264 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:580.328 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 118:580.688 Data: 02 -T98A8 118:580.776 - 0.512ms returns 1 (0x1) -T98A8 118:580.840 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:580.904 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 118:581.248 Data: 01 -T98A8 118:581.352 - 0.504ms returns 1 (0x1) -T98A8 118:581.416 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:581.480 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 118:581.840 Data: 00 00 00 00 -T98A8 118:581.936 - 0.520ms returns 4 (0x4) -T98A8 118:582.040 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:582.104 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 118:582.504 Data: 00 -T98A8 118:582.592 - 0.558ms returns 1 (0x1) -T98A8 118:582.936 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 118:583.000 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 118:583.384 Data: 00 -T98A8 118:583.472 - 0.546ms returns 1 (0x1) -T98A8 118:583.616 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:583.680 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 118:584.104 Data: 10 CF 01 20 -T98A8 118:584.384 - 0.774ms returns 4 (0x4) -T98A8 118:584.616 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 118:584.768 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 118:585.264 Data: 49 CF 01 20 -T98A8 118:585.424 - 0.818ms returns 4 (0x4) -T358C 118:585.648 JLINK_IsHalted() -T358C 118:586.024 - 0.382ms returns FALSE -T358C 118:686.912 JLINK_HasError() -T358C 118:687.056 JLINK_IsHalted() -T358C 118:687.600 - 0.552ms returns FALSE -T358C 118:787.864 JLINK_HasError() -T358C 118:787.984 JLINK_IsHalted() -T358C 118:788.392 - 0.412ms returns FALSE -T358C 118:888.720 JLINK_HasError() -T358C 118:888.856 JLINK_IsHalted() -T358C 118:889.320 - 0.463ms returns FALSE -T358C 118:990.376 JLINK_HasError() -T358C 118:990.592 JLINK_IsHalted() -T358C 118:991.152 - 0.556ms returns FALSE -T358C 119:092.368 JLINK_HasError() -T358C 119:092.544 JLINK_HasError() -T358C 119:092.736 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 119:092.880 Data: F7 AE 0E 05 -T358C 119:093.056 Debug reg: DWT_CYCCNT -T358C 119:093.224 - 0.483ms returns 1 (0x1) -T98A8 119:093.552 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 119:093.672 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 119:094.232 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 119:094.336 - 0.772ms returns 25 (0x19) -T98A8 119:094.424 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:094.480 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 119:094.928 Data: 02 -T98A8 119:095.064 - 0.649ms returns 1 (0x1) -T98A8 119:095.232 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:095.320 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 119:095.848 Data: 00 00 00 00 -T98A8 119:095.960 - 0.731ms returns 4 (0x4) -T98A8 119:096.064 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:096.128 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 119:096.600 Data: 00 00 00 00 -T98A8 119:096.744 - 0.682ms returns 4 (0x4) -T98A8 119:096.848 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:096.936 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 119:097.448 Data: 80 56 43 BC -T98A8 119:097.576 - 0.735ms returns 4 (0x4) -T98A8 119:097.680 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:097.768 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 119:098.288 Data: 00 00 00 00 -T98A8 119:098.416 - 0.742ms returns 4 (0x4) -T98A8 119:098.512 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:098.608 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 119:098.992 Data: 03 -T98A8 119:099.088 - 0.579ms returns 1 (0x1) -T98A8 119:099.152 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:099.216 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 119:099.584 Data: 03 -T98A8 119:099.760 - 0.613ms returns 1 (0x1) -T98A8 119:099.864 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:099.952 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 119:100.376 Data: 03 -T98A8 119:100.544 - 0.681ms returns 1 (0x1) -T98A8 119:100.800 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:100.880 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 119:101.264 Data: 03 -T98A8 119:101.400 - 0.598ms returns 1 (0x1) -T98A8 119:101.488 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:101.584 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 119:101.976 Data: 02 -T98A8 119:102.104 - 0.619ms returns 1 (0x1) -T98A8 119:102.192 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:102.288 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 119:102.672 Data: 02 -T98A8 119:102.800 - 0.602ms returns 1 (0x1) -T98A8 119:102.912 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:103.000 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 119:103.632 Data: 03 -T98A8 119:105.072 - 2.163ms returns 1 (0x1) -T98A8 119:105.232 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:105.368 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 119:105.856 Data: 01 -T98A8 119:105.968 - 0.736ms returns 1 (0x1) -T98A8 119:106.032 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 119:106.096 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 119:106.560 Data: 00 00 -T98A8 119:106.712 - 0.682ms returns 2 (0x2) -T98A8 119:106.840 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 119:106.904 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 119:107.288 Data: 00 00 -T98A8 119:107.392 - 0.546ms returns 2 (0x2) -T98A8 119:107.600 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:107.904 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 119:108.392 Data: 40 C4 01 20 -T98A8 119:108.560 - 0.962ms returns 4 (0x4) -T98A8 119:108.712 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:108.816 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 119:109.208 Data: 01 00 00 00 -T98A8 119:109.376 - 0.662ms returns 4 (0x4) -T98A8 119:109.480 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:109.544 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 119:109.928 Data: 00 00 00 00 -T98A8 119:110.040 - 0.561ms returns 4 (0x4) -T98A8 119:110.120 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:110.192 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 119:110.568 Data: 00 00 00 00 -T98A8 119:110.672 - 0.549ms returns 4 (0x4) -T98A8 119:110.744 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:110.808 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 119:111.576 Data: 80 56 43 BC -T98A8 119:111.696 - 0.950ms returns 4 (0x4) -T98A8 119:111.768 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:111.832 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 119:112.168 Data: 00 00 00 00 -T98A8 119:112.272 - 0.497ms returns 4 (0x4) -T98A8 119:112.344 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:112.408 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 119:112.728 Data: 02 -T98A8 119:112.816 - 0.479ms returns 1 (0x1) -T98A8 119:112.880 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:112.944 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 119:113.264 Data: 02 -T98A8 119:113.368 - 0.475ms returns 1 (0x1) -T98A8 119:113.424 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:113.488 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 119:113.816 Data: 02 -T98A8 119:113.904 - 0.482ms returns 1 (0x1) -T98A8 119:114.000 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:114.072 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 119:114.408 Data: 02 -T98A8 119:114.496 - 0.500ms returns 1 (0x1) -T98A8 119:114.560 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:114.624 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 119:114.984 Data: 03 -T98A8 119:115.120 - 0.558ms returns 1 (0x1) -T98A8 119:115.200 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:115.280 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 119:115.664 Data: 03 -T98A8 119:115.776 - 0.575ms returns 1 (0x1) -T98A8 119:115.856 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:115.920 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 119:116.304 Data: 02 -T98A8 119:116.400 - 0.554ms returns 1 (0x1) -T98A8 119:116.464 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:116.528 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 119:116.888 Data: 01 -T98A8 119:116.992 - 0.521ms returns 1 (0x1) -T98A8 119:117.056 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:117.136 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 119:117.544 Data: 00 00 00 00 -T98A8 119:117.672 - 0.604ms returns 4 (0x4) -T98A8 119:117.776 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:117.864 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 119:118.232 Data: 00 -T98A8 119:118.376 - 0.599ms returns 1 (0x1) -T98A8 119:118.784 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:118.872 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 119:119.216 Data: 00 -T98A8 119:119.320 - 0.534ms returns 1 (0x1) -T98A8 119:119.464 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:119.528 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 119:119.920 Data: 10 CF 01 20 -T98A8 119:120.048 - 0.585ms returns 4 (0x4) -T98A8 119:120.152 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:120.272 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 119:120.664 Data: 49 CF 01 20 -T98A8 119:120.752 - 0.605ms returns 4 (0x4) -T358C 119:120.936 JLINK_IsHalted() -T358C 119:121.264 - 0.327ms returns FALSE -T358C 119:222.144 JLINK_HasError() -T358C 119:222.312 JLINK_IsHalted() -T358C 119:222.800 - 0.483ms returns FALSE -T358C 119:323.624 JLINK_HasError() -T358C 119:323.968 JLINK_IsHalted() -T358C 119:324.560 - 0.594ms returns FALSE -T358C 119:425.328 JLINK_HasError() -T358C 119:425.536 JLINK_IsHalted() -T358C 119:425.944 - 0.417ms returns FALSE -T358C 119:526.184 JLINK_HasError() -T358C 119:526.480 JLINK_IsHalted() -T358C 119:527.184 - 0.702ms returns FALSE -T358C 119:627.776 JLINK_HasError() -T358C 119:627.944 JLINK_HasError() -T358C 119:628.016 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 119:628.112 Data: F7 AE 0E 05 -T358C 119:628.208 Debug reg: DWT_CYCCNT -T358C 119:628.336 - 0.328ms returns 1 (0x1) -T98A8 119:628.816 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 119:629.056 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 119:629.808 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 119:629.976 - 1.164ms returns 25 (0x19) -T98A8 119:630.096 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:630.184 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 119:630.672 Data: 02 -T98A8 119:630.784 - 0.682ms returns 1 (0x1) -T98A8 119:630.896 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:630.952 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 119:631.472 Data: 00 00 00 00 -T98A8 119:631.576 - 0.685ms returns 4 (0x4) -T98A8 119:631.640 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:631.704 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 119:632.208 Data: 00 00 00 00 -T98A8 119:632.320 - 0.668ms returns 4 (0x4) -T98A8 119:632.368 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:632.424 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 119:632.920 Data: 80 56 43 BC -T98A8 119:633.040 - 0.665ms returns 4 (0x4) -T98A8 119:633.112 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:633.192 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 119:633.776 Data: 00 00 00 00 -T98A8 119:633.944 - 0.827ms returns 4 (0x4) -T98A8 119:634.032 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:634.128 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 119:634.608 Data: 03 -T98A8 119:634.712 - 0.687ms returns 1 (0x1) -T98A8 119:634.776 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:634.856 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 119:635.304 Data: 03 -T98A8 119:635.440 - 0.658ms returns 1 (0x1) -T98A8 119:635.544 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:635.712 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 119:636.200 Data: 03 -T98A8 119:636.368 - 0.817ms returns 1 (0x1) -T98A8 119:636.440 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:636.528 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 119:636.928 Data: 03 -T98A8 119:637.080 - 0.639ms returns 1 (0x1) -T98A8 119:637.168 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:637.248 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 119:637.672 Data: 02 -T98A8 119:637.848 - 0.677ms returns 1 (0x1) -T98A8 119:637.936 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:638.016 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 119:638.440 Data: 02 -T98A8 119:638.592 - 0.658ms returns 1 (0x1) -T98A8 119:638.680 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:638.760 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 119:639.168 Data: 03 -T98A8 119:639.336 - 0.652ms returns 1 (0x1) -T98A8 119:639.408 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:639.504 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 119:639.912 Data: 01 -T98A8 119:640.016 - 0.603ms returns 1 (0x1) -T98A8 119:640.080 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 119:640.128 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 119:640.600 Data: 00 00 -T98A8 119:640.704 - 0.627ms returns 2 (0x2) -T98A8 119:640.752 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 119:640.816 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 119:641.232 Data: 00 00 -T98A8 119:641.328 - 0.575ms returns 2 (0x2) -T98A8 119:641.496 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:641.552 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 119:641.960 Data: 40 C4 01 20 -T98A8 119:642.032 - 0.546ms returns 4 (0x4) -T98A8 119:642.112 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:642.160 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 119:642.576 Data: 01 00 00 00 -T98A8 119:642.664 - 0.544ms returns 4 (0x4) -T98A8 119:642.752 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:642.832 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 119:643.304 Data: 00 00 00 00 -T98A8 119:643.416 - 0.668ms returns 4 (0x4) -T98A8 119:643.504 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:643.600 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 119:644.592 Data: 00 00 00 00 -T98A8 119:644.776 - 1.255ms returns 4 (0x4) -T98A8 119:644.880 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:644.952 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 119:645.360 Data: 80 56 43 BC -T98A8 119:645.520 - 0.642ms returns 4 (0x4) -T98A8 119:645.616 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:645.696 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 119:646.144 Data: 00 00 00 00 -T98A8 119:646.256 - 0.646ms returns 4 (0x4) -T98A8 119:646.376 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:646.448 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 119:646.896 Data: 02 -T98A8 119:647.016 - 0.643ms returns 1 (0x1) -T98A8 119:647.104 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:647.184 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 119:647.632 Data: 02 -T98A8 119:647.704 - 0.604ms returns 1 (0x1) -T98A8 119:647.784 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:647.832 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 119:648.168 Data: 02 -T98A8 119:648.240 - 0.467ms returns 1 (0x1) -T98A8 119:648.304 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:648.360 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 119:648.728 Data: 02 -T98A8 119:648.816 - 0.507ms returns 1 (0x1) -T98A8 119:648.872 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:648.920 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 119:649.240 Data: 03 -T98A8 119:649.320 - 0.445ms returns 1 (0x1) -T98A8 119:649.368 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:649.424 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 119:649.744 Data: 03 -T98A8 119:649.904 - 0.527ms returns 1 (0x1) -T98A8 119:650.048 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:650.128 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 119:650.584 Data: 02 -T98A8 119:650.672 - 0.625ms returns 1 (0x1) -T98A8 119:650.728 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:650.776 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 119:651.224 Data: 01 -T98A8 119:651.368 - 0.639ms returns 1 (0x1) -T98A8 119:651.456 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:651.536 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 119:651.904 Data: 00 00 00 00 -T98A8 119:652.048 - 0.592ms returns 4 (0x4) -T98A8 119:652.208 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:652.288 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 119:652.624 Data: 00 -T98A8 119:652.720 - 0.512ms returns 1 (0x1) -T98A8 119:653.208 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 119:653.288 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 119:653.616 Data: 00 -T98A8 119:653.720 - 0.513ms returns 1 (0x1) -T98A8 119:653.840 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:653.904 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 119:654.232 Data: 10 CF 01 20 -T98A8 119:654.312 - 0.463ms returns 4 (0x4) -T98A8 119:654.376 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 119:654.440 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 119:654.760 Data: 49 CF 01 20 -T98A8 119:654.896 - 0.523ms returns 4 (0x4) -T358C 119:655.144 JLINK_IsHalted() -T358C 119:655.568 - 0.425ms returns FALSE -T358C 119:756.560 JLINK_HasError() -T358C 119:756.696 JLINK_IsHalted() -T358C 119:757.208 - 0.510ms returns FALSE -T358C 119:858.032 JLINK_HasError() -T358C 119:858.152 JLINK_IsHalted() -T358C 119:858.608 - 0.451ms returns FALSE -T358C 119:959.976 JLINK_HasError() -T358C 119:960.088 JLINK_IsHalted() -T358C 119:960.472 - 0.385ms returns FALSE -T358C 120:060.824 JLINK_HasError() -T358C 120:060.952 JLINK_IsHalted() -T358C 120:061.336 - 0.380ms returns FALSE -T358C 120:162.000 JLINK_HasError() -T358C 120:162.096 JLINK_HasError() -T358C 120:162.176 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 120:162.264 Data: F7 AE 0E 05 -T358C 120:162.432 Debug reg: DWT_CYCCNT -T358C 120:162.536 - 0.356ms returns 1 (0x1) -T98A8 120:162.896 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 120:162.984 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 120:163.504 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 120:163.608 - 0.718ms returns 25 (0x19) -T98A8 120:163.712 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:163.760 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 120:164.072 Data: 02 -T98A8 120:164.160 - 0.451ms returns 1 (0x1) -T98A8 120:164.248 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:164.304 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 120:164.712 Data: 00 00 00 00 -T98A8 120:164.800 - 0.551ms returns 4 (0x4) -T98A8 120:164.864 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:164.912 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 120:165.352 Data: 00 00 00 00 -T98A8 120:165.504 - 0.639ms returns 4 (0x4) -T98A8 120:165.592 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:165.680 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 120:166.168 Data: 80 56 43 BC -T98A8 120:166.256 - 0.664ms returns 4 (0x4) -T98A8 120:166.312 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:166.360 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 120:166.800 Data: 00 00 00 00 -T98A8 120:166.872 - 0.558ms returns 4 (0x4) -T98A8 120:166.928 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:166.960 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 120:167.424 Data: 03 -T98A8 120:167.536 - 0.617ms returns 1 (0x1) -T98A8 120:167.600 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:167.664 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 120:168.024 Data: 03 -T98A8 120:168.144 - 0.535ms returns 1 (0x1) -T98A8 120:168.216 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:168.280 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 120:168.624 Data: 03 -T98A8 120:168.704 - 0.489ms returns 1 (0x1) -T98A8 120:168.752 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:168.808 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 120:169.112 Data: 03 -T98A8 120:169.192 - 0.426ms returns 1 (0x1) -T98A8 120:169.232 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:169.280 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 120:169.584 Data: 02 -T98A8 120:169.648 - 0.419ms returns 1 (0x1) -T98A8 120:169.704 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:169.752 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 120:170.072 Data: 02 -T98A8 120:170.152 - 0.447ms returns 1 (0x1) -T98A8 120:170.200 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:170.256 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 120:170.600 Data: 03 -T98A8 120:170.672 - 0.471ms returns 1 (0x1) -T98A8 120:170.712 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:170.768 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 120:171.056 Data: 01 -T98A8 120:171.120 - 0.408ms returns 1 (0x1) -T98A8 120:171.176 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 120:171.224 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 120:172.048 Data: 00 00 -T98A8 120:172.144 - 0.965ms returns 2 (0x2) -T98A8 120:172.200 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 120:172.248 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 120:172.608 Data: 00 00 -T98A8 120:172.696 - 0.501ms returns 2 (0x2) -T98A8 120:172.848 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:172.904 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 120:173.720 Data: 40 C4 01 20 -T98A8 120:173.848 - 0.992ms returns 4 (0x4) -T98A8 120:173.968 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:174.032 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 120:174.376 Data: 01 00 00 00 -T98A8 120:174.504 - 0.540ms returns 4 (0x4) -T98A8 120:174.608 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:174.672 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 120:175.000 Data: 00 00 00 00 -T98A8 120:175.088 - 0.494ms returns 4 (0x4) -T98A8 120:175.152 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:175.192 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 120:175.504 Data: 00 00 00 00 -T98A8 120:175.600 - 0.448ms returns 4 (0x4) -T98A8 120:175.768 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:175.824 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 120:176.152 Data: 80 56 43 BC -T98A8 120:176.304 - 0.534ms returns 4 (0x4) -T98A8 120:176.400 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:176.488 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 120:176.872 Data: 00 00 00 00 -T98A8 120:176.944 - 0.547ms returns 4 (0x4) -T98A8 120:177.040 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:177.088 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 120:177.384 Data: 02 -T98A8 120:177.456 - 0.420ms returns 1 (0x1) -T98A8 120:177.512 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:177.560 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 120:177.840 Data: 02 -T98A8 120:177.920 - 0.407ms returns 1 (0x1) -T98A8 120:177.968 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:178.024 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 120:178.320 Data: 02 -T98A8 120:178.392 - 0.419ms returns 1 (0x1) -T98A8 120:178.448 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:178.480 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 120:178.792 Data: 02 -T98A8 120:178.856 - 0.417ms returns 1 (0x1) -T98A8 120:178.904 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:178.960 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 120:179.280 Data: 03 -T98A8 120:179.368 - 0.460ms returns 1 (0x1) -T98A8 120:179.416 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:179.472 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 120:179.824 Data: 03 -T98A8 120:179.944 - 0.515ms returns 1 (0x1) -T98A8 120:179.992 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:180.048 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 120:180.352 Data: 02 -T98A8 120:180.416 - 0.430ms returns 1 (0x1) -T98A8 120:180.464 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:180.520 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 120:180.824 Data: 01 -T98A8 120:180.888 - 0.421ms returns 1 (0x1) -T98A8 120:180.944 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:180.992 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 120:181.296 Data: 00 00 00 00 -T98A8 120:181.360 - 0.421ms returns 4 (0x4) -T98A8 120:181.464 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:181.520 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 120:181.872 Data: 00 -T98A8 120:181.992 - 0.522ms returns 1 (0x1) -T98A8 120:182.312 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:182.480 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 120:182.872 Data: 00 -T98A8 120:182.992 - 0.668ms returns 1 (0x1) -T98A8 120:183.440 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:183.512 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 120:183.824 Data: 10 CF 01 20 -T98A8 120:183.912 - 0.478ms returns 4 (0x4) -T98A8 120:184.000 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:184.048 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 120:184.360 Data: 49 CF 01 20 -T98A8 120:184.464 - 0.460ms returns 4 (0x4) -T358C 120:184.600 JLINK_IsHalted() -T358C 120:184.920 - 0.315ms returns FALSE -T358C 120:285.264 JLINK_HasError() -T358C 120:285.392 JLINK_IsHalted() -T358C 120:285.800 - 0.397ms returns FALSE -T358C 120:386.496 JLINK_HasError() -T358C 120:386.608 JLINK_IsHalted() -T358C 120:386.984 - 0.370ms returns FALSE -T358C 120:487.336 JLINK_HasError() -T358C 120:487.488 JLINK_IsHalted() -T358C 120:488.040 - 0.550ms returns FALSE -T358C 120:588.912 JLINK_HasError() -T358C 120:589.032 JLINK_IsHalted() -T358C 120:589.440 - 0.407ms returns FALSE -T358C 120:690.032 JLINK_HasError() -T358C 120:690.200 JLINK_HasError() -T358C 120:690.304 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 120:690.416 Data: F7 AE 0E 05 -T358C 120:690.560 Debug reg: DWT_CYCCNT -T358C 120:690.704 - 0.400ms returns 1 (0x1) -T98A8 120:691.032 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 120:691.224 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 120:691.880 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 120:692.112 - 1.070ms returns 25 (0x19) -T98A8 120:692.288 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:692.400 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 120:692.912 Data: 02 -T98A8 120:693.016 - 0.738ms returns 1 (0x1) -T98A8 120:693.120 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:693.184 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 120:693.632 Data: 00 00 00 00 -T98A8 120:693.720 - 0.603ms returns 4 (0x4) -T98A8 120:693.808 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:693.864 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 120:694.272 Data: 00 00 00 00 -T98A8 120:694.440 - 0.623ms returns 4 (0x4) -T98A8 120:694.528 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:694.616 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 120:695.104 Data: 80 56 43 BC -T98A8 120:695.192 - 0.667ms returns 4 (0x4) -T98A8 120:695.248 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:695.296 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 120:695.720 Data: 00 00 00 00 -T98A8 120:695.792 - 0.542ms returns 4 (0x4) -T98A8 120:695.832 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:695.888 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 120:696.176 Data: 03 -T98A8 120:696.272 - 0.427ms returns 1 (0x1) -T98A8 120:696.320 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:696.360 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 120:696.664 Data: 03 -T98A8 120:696.744 - 0.430ms returns 1 (0x1) -T98A8 120:696.792 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:696.856 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 120:697.168 Data: 03 -T98A8 120:697.256 - 0.461ms returns 1 (0x1) -T98A8 120:697.304 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:697.360 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 120:697.680 Data: 03 -T98A8 120:697.752 - 0.444ms returns 1 (0x1) -T98A8 120:697.808 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:697.856 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 120:698.176 Data: 02 -T98A8 120:698.384 - 0.579ms returns 1 (0x1) -T98A8 120:698.480 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:698.560 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 120:698.920 Data: 02 -T98A8 120:699.048 - 0.575ms returns 1 (0x1) -T98A8 120:699.120 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:699.200 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 120:700.312 Data: 03 -T98A8 120:700.400 - 1.272ms returns 1 (0x1) -T98A8 120:700.456 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:700.496 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 120:700.800 Data: 01 -T98A8 120:700.904 - 0.449ms returns 1 (0x1) -T98A8 120:700.968 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 120:701.016 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 120:701.376 Data: 00 00 -T98A8 120:701.456 - 0.494ms returns 2 (0x2) -T98A8 120:701.504 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 120:701.552 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 120:701.904 Data: 00 00 -T98A8 120:701.992 - 0.483ms returns 2 (0x2) -T98A8 120:702.104 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:702.160 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 120:702.464 Data: 40 C4 01 20 -T98A8 120:702.528 - 0.422ms returns 4 (0x4) -T98A8 120:702.608 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:702.640 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 120:702.952 Data: 01 00 00 00 -T98A8 120:703.016 - 0.419ms returns 4 (0x4) -T98A8 120:703.080 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:703.128 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 120:703.440 Data: 00 00 00 00 -T98A8 120:703.552 - 0.471ms returns 4 (0x4) -T98A8 120:703.600 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:703.656 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 120:703.952 Data: 00 00 00 00 -T98A8 120:704.040 - 0.440ms returns 4 (0x4) -T98A8 120:704.104 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:704.152 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 120:704.472 Data: 80 56 43 BC -T98A8 120:704.560 - 0.458ms returns 4 (0x4) -T98A8 120:704.616 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:704.664 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 120:705.584 Data: 00 00 00 00 -T98A8 120:705.768 - 1.155ms returns 4 (0x4) -T98A8 120:705.944 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:706.008 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 120:706.320 Data: 02 -T98A8 120:706.408 - 0.466ms returns 1 (0x1) -T98A8 120:706.456 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:706.560 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 120:706.856 Data: 02 -T98A8 120:706.928 - 0.479ms returns 1 (0x1) -T98A8 120:706.984 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:707.032 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 120:707.328 Data: 02 -T98A8 120:707.408 - 0.418ms returns 1 (0x1) -T98A8 120:707.456 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:707.496 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 120:707.800 Data: 02 -T98A8 120:707.864 - 0.415ms returns 1 (0x1) -T98A8 120:707.920 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:707.952 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 120:708.288 Data: 03 -T98A8 120:708.400 - 0.491ms returns 1 (0x1) -T98A8 120:708.456 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:708.504 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 120:708.784 Data: 03 -T98A8 120:708.880 - 0.416ms returns 1 (0x1) -T98A8 120:708.912 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:708.968 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 120:709.360 Data: 02 -T98A8 120:709.464 - 0.545ms returns 1 (0x1) -T98A8 120:709.520 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:709.568 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 120:709.872 Data: 01 -T98A8 120:709.952 - 0.436ms returns 1 (0x1) -T98A8 120:710.000 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:710.056 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 120:710.360 Data: 00 00 00 00 -T98A8 120:710.448 - 0.439ms returns 4 (0x4) -T98A8 120:710.552 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:710.592 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 120:710.912 Data: 00 -T98A8 120:711.064 - 0.513ms returns 1 (0x1) -T98A8 120:711.384 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 120:711.472 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 120:711.832 Data: 00 -T98A8 120:711.952 - 0.564ms returns 1 (0x1) -T98A8 120:712.064 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:712.112 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 120:712.424 Data: 10 CF 01 20 -T98A8 120:712.496 - 0.439ms returns 4 (0x4) -T98A8 120:712.560 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 120:712.600 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 120:712.920 Data: 49 CF 01 20 -T98A8 120:713.008 - 0.454ms returns 4 (0x4) -T358C 120:713.296 JLINK_IsHalted() -T358C 120:713.640 - 0.341ms returns FALSE -T358C 120:814.352 JLINK_HasError() -T358C 120:814.528 JLINK_IsHalted() -T358C 120:815.040 - 0.505ms returns FALSE -T358C 120:915.632 JLINK_HasError() -T358C 120:915.736 JLINK_IsHalted() -T358C 120:916.120 - 0.387ms returns FALSE -T358C 121:017.200 JLINK_HasError() -T358C 121:017.344 JLINK_IsHalted() -T358C 121:017.896 - 0.540ms returns FALSE -T358C 121:118.640 JLINK_HasError() -T358C 121:118.760 JLINK_IsHalted() -T358C 121:119.184 - 0.430ms returns FALSE -T358C 121:219.728 JLINK_HasError() -T358C 121:219.856 JLINK_HasError() -T358C 121:219.904 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 121:219.984 Data: F7 AE 0E 05 -T358C 121:220.032 Debug reg: DWT_CYCCNT -T358C 121:220.096 - 0.193ms returns 1 (0x1) -T98A8 121:220.456 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 121:220.672 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 121:221.360 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 121:221.528 - 1.078ms returns 25 (0x19) -T98A8 121:221.648 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:221.736 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 121:222.160 Data: 02 -T98A8 121:222.296 - 0.653ms returns 1 (0x1) -T98A8 121:222.400 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:222.448 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 121:223.024 Data: 00 00 00 00 -T98A8 121:223.128 - 0.733ms returns 4 (0x4) -T98A8 121:223.192 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:223.256 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 121:223.888 Data: 00 00 00 00 -T98A8 121:224.048 - 0.864ms returns 4 (0x4) -T98A8 121:224.144 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:224.240 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 121:224.856 Data: 80 56 43 BC -T98A8 121:224.960 - 0.815ms returns 4 (0x4) -T98A8 121:225.008 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:225.064 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 121:225.616 Data: 00 00 00 00 -T98A8 121:225.776 - 0.762ms returns 4 (0x4) -T98A8 121:225.872 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:225.944 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 121:226.408 Data: 03 -T98A8 121:226.576 - 0.701ms returns 1 (0x1) -T98A8 121:226.816 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:226.928 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 121:227.312 Data: 03 -T98A8 121:227.440 - 0.627ms returns 1 (0x1) -T98A8 121:227.520 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:227.584 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 121:227.952 Data: 03 -T98A8 121:228.072 - 0.560ms returns 1 (0x1) -T98A8 121:228.160 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:228.248 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 121:228.688 Data: 03 -T98A8 121:228.800 - 0.638ms returns 1 (0x1) -T98A8 121:228.880 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:228.968 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 121:229.328 Data: 02 -T98A8 121:229.400 - 0.515ms returns 1 (0x1) -T98A8 121:229.440 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:229.488 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 121:229.864 Data: 02 -T98A8 121:229.928 - 0.483ms returns 1 (0x1) -T98A8 121:229.976 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:230.016 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 121:230.400 Data: 03 -T98A8 121:230.464 - 0.492ms returns 1 (0x1) -T98A8 121:230.512 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:230.568 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 121:230.896 Data: 01 -T98A8 121:230.992 - 0.469ms returns 1 (0x1) -T98A8 121:231.040 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 121:231.080 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 121:231.464 Data: 00 00 -T98A8 121:231.536 - 0.504ms returns 2 (0x2) -T98A8 121:231.592 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 121:231.640 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 121:232.088 Data: 00 00 -T98A8 121:232.216 - 0.626ms returns 2 (0x2) -T98A8 121:232.368 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:232.464 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 121:232.848 Data: 40 C4 01 20 -T98A8 121:233.008 - 0.627ms returns 4 (0x4) -T98A8 121:233.128 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:233.200 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 121:233.584 Data: 01 00 00 00 -T98A8 121:233.680 - 0.554ms returns 4 (0x4) -T98A8 121:233.744 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:233.792 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 121:234.176 Data: 00 00 00 00 -T98A8 121:234.240 - 0.502ms returns 4 (0x4) -T98A8 121:234.288 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:234.344 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 121:234.728 Data: 00 00 00 00 -T98A8 121:234.792 - 0.498ms returns 4 (0x4) -T98A8 121:234.856 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:234.896 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 121:235.248 Data: 80 56 43 BC -T98A8 121:235.312 - 0.465ms returns 4 (0x4) -T98A8 121:235.368 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:235.416 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 121:235.816 Data: 00 00 00 00 -T98A8 121:235.968 - 0.603ms returns 4 (0x4) -T98A8 121:236.080 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:236.160 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 121:236.544 Data: 02 -T98A8 121:236.672 - 0.597ms returns 1 (0x1) -T98A8 121:236.760 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:236.840 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 121:237.208 Data: 02 -T98A8 121:237.336 - 0.578ms returns 1 (0x1) -T98A8 121:237.424 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:237.504 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 121:237.912 Data: 02 -T98A8 121:237.976 - 0.553ms returns 1 (0x1) -T98A8 121:238.032 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:238.064 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 121:238.416 Data: 02 -T98A8 121:238.480 - 0.449ms returns 1 (0x1) -T98A8 121:238.528 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:238.568 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 121:238.912 Data: 03 -T98A8 121:238.976 - 0.452ms returns 1 (0x1) -T98A8 121:239.024 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:239.064 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 121:239.408 Data: 03 -T98A8 121:239.472 - 0.453ms returns 1 (0x1) -T98A8 121:239.528 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:239.568 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 121:239.896 Data: 02 -T98A8 121:239.976 - 0.447ms returns 1 (0x1) -T98A8 121:240.016 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:240.064 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 121:240.448 Data: 01 -T98A8 121:240.512 - 0.492ms returns 1 (0x1) -T98A8 121:240.560 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:240.600 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 121:240.984 Data: 00 00 00 00 -T98A8 121:241.064 - 0.499ms returns 4 (0x4) -T98A8 121:241.128 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:241.176 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 121:241.560 Data: 00 -T98A8 121:241.640 - 0.507ms returns 1 (0x1) -T98A8 121:241.904 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:241.960 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 121:242.480 Data: 00 -T98A8 121:242.584 - 0.677ms returns 1 (0x1) -T98A8 121:242.752 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:242.816 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 121:243.152 Data: 10 CF 01 20 -T98A8 121:243.264 - 0.503ms returns 4 (0x4) -T98A8 121:243.328 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:243.376 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 121:243.672 Data: 49 CF 01 20 -T98A8 121:243.760 - 0.437ms returns 4 (0x4) -T358C 121:243.944 JLINK_IsHalted() -T358C 121:244.240 - 0.288ms returns FALSE -T358C 121:344.552 JLINK_HasError() -T358C 121:344.656 JLINK_IsHalted() -T358C 121:345.048 - 0.403ms returns FALSE -T358C 121:445.952 JLINK_HasError() -T358C 121:446.128 JLINK_IsHalted() -T358C 121:446.768 - 0.638ms returns FALSE -T358C 121:547.856 JLINK_HasError() -T358C 121:548.016 JLINK_IsHalted() -T358C 121:548.504 - 0.480ms returns FALSE -T358C 121:649.280 JLINK_HasError() -T358C 121:649.456 JLINK_IsHalted() -T358C 121:649.968 - 0.506ms returns FALSE -T358C 121:751.120 JLINK_HasError() -T358C 121:751.296 JLINK_HasError() -T358C 121:751.400 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 121:751.528 Data: F7 AE 0E 05 -T358C 121:751.664 Debug reg: DWT_CYCCNT -T358C 121:751.808 - 0.414ms returns 1 (0x1) -T98A8 121:752.216 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 121:752.424 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 121:753.168 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 121:753.320 - 1.104ms returns 25 (0x19) -T98A8 121:753.432 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:753.536 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 121:753.984 Data: 02 -T98A8 121:754.096 - 0.655ms returns 1 (0x1) -T98A8 121:754.192 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:754.240 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 121:754.776 Data: 00 00 00 00 -T98A8 121:754.880 - 0.684ms returns 4 (0x4) -T98A8 121:754.944 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:755.008 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 121:755.520 Data: 00 00 00 00 -T98A8 121:755.624 - 0.677ms returns 4 (0x4) -T98A8 121:755.672 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:755.728 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 121:756.224 Data: 80 56 43 BC -T98A8 121:756.328 - 0.651ms returns 4 (0x4) -T98A8 121:756.376 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:756.432 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 121:757.464 Data: 00 00 00 00 -T98A8 121:757.696 - 1.310ms returns 4 (0x4) -T98A8 121:757.824 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:757.936 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 121:758.440 Data: 03 -T98A8 121:758.608 - 0.778ms returns 1 (0x1) -T98A8 121:758.680 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:758.768 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 121:759.216 Data: 03 -T98A8 121:759.376 - 0.692ms returns 1 (0x1) -T98A8 121:759.464 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:759.552 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 121:759.952 Data: 03 -T98A8 121:760.080 - 0.607ms returns 1 (0x1) -T98A8 121:760.128 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:760.176 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 121:760.512 Data: 03 -T98A8 121:760.600 - 0.474ms returns 1 (0x1) -T98A8 121:760.656 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:760.688 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 121:761.000 Data: 02 -T98A8 121:761.104 - 0.454ms returns 1 (0x1) -T98A8 121:761.152 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:761.200 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 121:761.520 Data: 02 -T98A8 121:761.584 - 0.437ms returns 1 (0x1) -T98A8 121:761.640 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:761.688 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 121:761.984 Data: 03 -T98A8 121:762.064 - 0.419ms returns 1 (0x1) -T98A8 121:762.112 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:762.152 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 121:762.456 Data: 01 -T98A8 121:762.536 - 0.423ms returns 1 (0x1) -T98A8 121:762.584 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 121:762.624 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 121:763.024 Data: 00 00 -T98A8 121:763.096 - 0.515ms returns 2 (0x2) -T98A8 121:763.152 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 121:763.184 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 121:763.568 Data: 00 00 -T98A8 121:763.688 - 0.535ms returns 2 (0x2) -T98A8 121:763.904 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:763.984 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 121:764.352 Data: 40 C4 01 20 -T98A8 121:764.464 - 0.565ms returns 4 (0x4) -T98A8 121:764.544 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:764.592 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 121:764.904 Data: 01 00 00 00 -T98A8 121:764.976 - 0.427ms returns 4 (0x4) -T98A8 121:765.080 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:765.144 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 121:765.464 Data: 00 00 00 00 -T98A8 121:765.632 - 0.550ms returns 4 (0x4) -T98A8 121:765.720 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:765.808 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 121:766.224 Data: 00 00 00 00 -T98A8 121:766.448 - 0.730ms returns 4 (0x4) -T98A8 121:766.592 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:766.736 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 121:767.144 Data: 80 56 43 BC -T98A8 121:767.296 - 0.698ms returns 4 (0x4) -T98A8 121:767.384 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:767.464 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 121:767.888 Data: 00 00 00 00 -T98A8 121:768.000 - 0.618ms returns 4 (0x4) -T98A8 121:768.104 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:768.192 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 121:768.704 Data: 02 -T98A8 121:768.832 - 0.729ms returns 1 (0x1) -T98A8 121:768.920 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:769.008 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 121:769.392 Data: 02 -T98A8 121:769.456 - 0.535ms returns 1 (0x1) -T98A8 121:769.512 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:769.552 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 121:769.936 Data: 02 -T98A8 121:770.000 - 0.492ms returns 1 (0x1) -T98A8 121:770.048 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:770.096 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 121:770.480 Data: 02 -T98A8 121:770.544 - 0.494ms returns 1 (0x1) -T98A8 121:770.600 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:770.640 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 121:770.984 Data: 03 -T98A8 121:771.056 - 0.462ms returns 1 (0x1) -T98A8 121:771.096 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:771.152 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 121:771.496 Data: 03 -T98A8 121:771.568 - 0.463ms returns 1 (0x1) -T98A8 121:771.608 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:771.664 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 121:772.072 Data: 02 -T98A8 121:772.184 - 0.575ms returns 1 (0x1) -T98A8 121:772.264 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:772.352 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 121:772.784 Data: 01 -T98A8 121:772.904 - 0.635ms returns 1 (0x1) -T98A8 121:772.952 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:772.992 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 121:773.376 Data: 00 00 00 00 -T98A8 121:773.440 - 0.489ms returns 4 (0x4) -T98A8 121:773.520 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:773.552 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 121:773.936 Data: 00 -T98A8 121:774.000 - 0.493ms returns 1 (0x1) -T98A8 121:775.144 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 121:775.248 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 121:775.576 Data: 00 -T98A8 121:775.640 - 0.501ms returns 1 (0x1) -T98A8 121:775.760 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:775.808 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 121:776.144 Data: 10 CF 01 20 -T98A8 121:776.296 - 0.533ms returns 4 (0x4) -T98A8 121:776.408 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 121:776.512 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 121:776.920 Data: 49 CF 01 20 -T98A8 121:777.048 - 0.642ms returns 4 (0x4) -T358C 121:777.264 JLINK_IsHalted() -T358C 121:777.880 - 0.620ms returns FALSE -T358C 121:878.808 JLINK_HasError() -T358C 121:878.952 JLINK_IsHalted() -T358C 121:879.360 - 0.409ms returns FALSE -T358C 121:979.520 JLINK_HasError() -T358C 121:979.624 JLINK_IsHalted() -T358C 121:980.608 - 0.981ms returns FALSE -T358C 122:081.304 JLINK_HasError() -T358C 122:081.448 JLINK_IsHalted() -T358C 122:081.880 - 0.441ms returns FALSE -T358C 122:182.760 JLINK_HasError() -T358C 122:182.848 JLINK_IsHalted() -T358C 122:183.216 - 0.365ms returns FALSE -T358C 122:283.568 JLINK_HasError() -T358C 122:283.712 JLINK_HasError() -T358C 122:283.776 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 122:283.880 Data: F7 AE 0E 05 -T358C 122:283.984 Debug reg: DWT_CYCCNT -T358C 122:284.080 - 0.299ms returns 1 (0x1) -T98A8 122:284.456 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 122:284.656 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 122:285.336 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 122:285.440 - 0.989ms returns 25 (0x19) -T98A8 122:285.528 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:285.584 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 122:285.992 Data: 02 -T98A8 122:286.096 - 0.559ms returns 1 (0x1) -T98A8 122:286.192 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:286.248 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 122:286.800 Data: 00 00 00 00 -T98A8 122:286.896 - 0.701ms returns 4 (0x4) -T98A8 122:286.952 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:287.000 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 122:287.488 Data: 00 00 00 00 -T98A8 122:287.592 - 0.641ms returns 4 (0x4) -T98A8 122:287.656 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:287.832 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 122:288.472 Data: 80 56 43 BC -T98A8 122:288.640 - 0.974ms returns 4 (0x4) -T98A8 122:288.728 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:288.808 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 122:289.360 Data: 00 00 00 00 -T98A8 122:289.520 - 0.800ms returns 4 (0x4) -T98A8 122:289.616 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:289.704 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 122:290.096 Data: 03 -T98A8 122:290.264 - 0.649ms returns 1 (0x1) -T98A8 122:290.352 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:290.432 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 122:290.800 Data: 03 -T98A8 122:290.944 - 0.595ms returns 1 (0x1) -T98A8 122:291.032 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:291.112 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 122:291.560 Data: 03 -T98A8 122:291.728 - 0.687ms returns 1 (0x1) -T98A8 122:291.816 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:291.888 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 122:292.328 Data: 03 -T98A8 122:292.480 - 0.677ms returns 1 (0x1) -T98A8 122:292.568 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:292.656 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 122:293.136 Data: 02 -T98A8 122:293.296 - 0.724ms returns 1 (0x1) -T98A8 122:293.392 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:293.464 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 122:293.936 Data: 02 -T98A8 122:294.040 - 0.653ms returns 1 (0x1) -T98A8 122:294.096 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:294.128 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 122:294.552 Data: 03 -T98A8 122:294.672 - 0.578ms returns 1 (0x1) -T98A8 122:294.720 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:294.768 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 122:295.184 Data: 01 -T98A8 122:295.408 - 0.688ms returns 1 (0x1) -T98A8 122:295.528 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 122:295.664 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 122:296.176 Data: 00 00 -T98A8 122:296.336 - 0.805ms returns 2 (0x2) -T98A8 122:296.424 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 122:296.512 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 122:297.000 Data: 00 00 -T98A8 122:297.176 - 0.749ms returns 2 (0x2) -T98A8 122:297.408 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:297.456 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 122:297.816 Data: 40 C4 01 20 -T98A8 122:297.920 - 0.518ms returns 4 (0x4) -T98A8 122:298.000 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:298.048 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 122:298.408 Data: 01 00 00 00 -T98A8 122:298.520 - 0.515ms returns 4 (0x4) -T98A8 122:298.704 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:298.792 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 122:299.184 Data: 00 00 00 00 -T98A8 122:299.344 - 0.652ms returns 4 (0x4) -T98A8 122:299.440 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:299.520 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 122:299.920 Data: 00 00 00 00 -T98A8 122:300.032 - 0.588ms returns 4 (0x4) -T98A8 122:300.096 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:300.136 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 122:300.480 Data: 80 56 43 BC -T98A8 122:300.560 - 0.466ms returns 4 (0x4) -T98A8 122:300.608 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:300.656 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 122:300.992 Data: 00 00 00 00 -T98A8 122:301.072 - 0.455ms returns 4 (0x4) -T98A8 122:301.120 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:301.168 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 122:301.608 Data: 02 -T98A8 122:301.840 - 0.705ms returns 1 (0x1) -T98A8 122:301.992 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:302.080 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 122:302.400 Data: 02 -T98A8 122:302.528 - 0.539ms returns 1 (0x1) -T98A8 122:302.608 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:302.696 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 122:303.232 Data: 02 -T98A8 122:303.400 - 0.788ms returns 1 (0x1) -T98A8 122:303.488 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:303.576 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 122:304.000 Data: 02 -T98A8 122:304.152 - 0.671ms returns 1 (0x1) -T98A8 122:304.240 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:304.320 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 122:304.744 Data: 03 -T98A8 122:304.816 - 0.572ms returns 1 (0x1) -T98A8 122:304.872 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:304.912 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 122:305.296 Data: 03 -T98A8 122:305.456 - 0.588ms returns 1 (0x1) -T98A8 122:305.536 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:305.624 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 122:306.008 Data: 02 -T98A8 122:306.096 - 0.561ms returns 1 (0x1) -T98A8 122:306.152 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:306.200 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 122:306.624 Data: 01 -T98A8 122:306.704 - 0.550ms returns 1 (0x1) -T98A8 122:306.752 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:306.800 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 122:307.160 Data: 00 00 00 00 -T98A8 122:307.224 - 0.470ms returns 4 (0x4) -T98A8 122:307.328 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:307.376 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 122:307.736 Data: 00 -T98A8 122:307.816 - 0.481ms returns 1 (0x1) -T98A8 122:308.112 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:308.160 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 122:308.504 Data: 00 -T98A8 122:308.568 - 0.461ms returns 1 (0x1) -T98A8 122:308.656 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:308.712 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 122:309.072 Data: 10 CF 01 20 -T98A8 122:309.136 - 0.465ms returns 4 (0x4) -T98A8 122:309.200 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:309.232 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 122:309.656 Data: 49 CF 01 20 -T98A8 122:309.776 - 0.584ms returns 4 (0x4) -T358C 122:310.032 JLINK_IsHalted() -T358C 122:310.480 - 0.439ms returns FALSE -T358C 122:411.368 JLINK_HasError() -T358C 122:411.496 JLINK_IsHalted() -T358C 122:411.904 - 0.413ms returns FALSE -T358C 122:659.520 JLINK_HasError() -T358C 122:659.632 JLINK_IsHalted() -T358C 122:660.400 - 0.769ms returns FALSE -T358C 122:761.192 JLINK_HasError() -T358C 122:761.368 JLINK_IsHalted() -T358C 122:761.808 - 0.439ms returns FALSE -T358C 122:862.608 JLINK_HasError() -T358C 122:862.736 JLINK_HasError() -T358C 122:862.800 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 122:862.888 Data: F7 AE 0E 05 -T358C 122:862.992 Debug reg: DWT_CYCCNT -T358C 122:863.080 - 0.286ms returns 1 (0x1) -T98A8 122:863.448 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 122:863.528 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 122:864.048 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 122:864.152 - 0.707ms returns 25 (0x19) -T98A8 122:864.216 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:864.272 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 122:864.656 Data: 02 -T98A8 122:864.720 - 0.506ms returns 1 (0x1) -T98A8 122:864.792 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:864.848 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 122:865.296 Data: 00 00 00 00 -T98A8 122:865.368 - 0.570ms returns 4 (0x4) -T98A8 122:865.424 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:865.456 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 122:865.896 Data: 00 00 00 00 -T98A8 122:865.960 - 0.547ms returns 4 (0x4) -T98A8 122:866.008 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:866.064 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 122:866.512 Data: 80 56 43 BC -T98A8 122:866.672 - 0.664ms returns 4 (0x4) -T98A8 122:866.768 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:866.856 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 122:867.376 Data: 00 00 00 00 -T98A8 122:867.480 - 0.713ms returns 4 (0x4) -T98A8 122:867.544 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:867.600 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 122:867.904 Data: 03 -T98A8 122:867.992 - 0.453ms returns 1 (0x1) -T98A8 122:868.048 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:868.096 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 122:868.392 Data: 03 -T98A8 122:868.456 - 0.408ms returns 1 (0x1) -T98A8 122:868.504 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:868.544 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 122:868.904 Data: 03 -T98A8 122:869.040 - 0.539ms returns 1 (0x1) -T98A8 122:869.136 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:869.208 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 122:869.568 Data: 03 -T98A8 122:869.696 - 0.565ms returns 1 (0x1) -T98A8 122:869.776 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:869.824 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 122:870.144 Data: 02 -T98A8 122:870.312 - 0.529ms returns 1 (0x1) -T98A8 122:870.384 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:870.480 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 122:870.848 Data: 02 -T98A8 122:870.976 - 0.582ms returns 1 (0x1) -T98A8 122:871.040 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:871.080 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 122:871.384 Data: 03 -T98A8 122:871.448 - 0.412ms returns 1 (0x1) -T98A8 122:871.504 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:871.536 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 122:871.832 Data: 01 -T98A8 122:871.896 - 0.400ms returns 1 (0x1) -T98A8 122:871.952 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 122:871.984 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 122:872.336 Data: 00 00 -T98A8 122:872.496 - 0.549ms returns 2 (0x2) -T98A8 122:872.576 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 122:872.664 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 122:873.088 Data: 00 00 -T98A8 122:873.192 - 0.607ms returns 2 (0x2) -T98A8 122:873.344 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:873.392 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 122:873.776 Data: 40 C4 01 20 -T98A8 122:873.920 - 0.581ms returns 4 (0x4) -T98A8 122:874.048 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:874.128 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 122:874.536 Data: 01 00 00 00 -T98A8 122:874.640 - 0.589ms returns 4 (0x4) -T98A8 122:874.704 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:874.752 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 122:875.072 Data: 00 00 00 00 -T98A8 122:875.152 - 0.456ms returns 4 (0x4) -T98A8 122:875.216 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:875.248 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 122:875.584 Data: 00 00 00 00 -T98A8 122:875.648 - 0.444ms returns 4 (0x4) -T98A8 122:875.712 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:875.752 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 122:876.120 Data: 80 56 43 BC -T98A8 122:876.240 - 0.531ms returns 4 (0x4) -T98A8 122:876.328 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:876.392 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 122:876.784 Data: 00 00 00 00 -T98A8 122:876.952 - 0.631ms returns 4 (0x4) -T98A8 122:877.080 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:877.160 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 122:877.520 Data: 02 -T98A8 122:877.608 - 0.528ms returns 1 (0x1) -T98A8 122:877.656 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:877.712 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 122:878.000 Data: 02 -T98A8 122:878.096 - 0.435ms returns 1 (0x1) -T98A8 122:878.144 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:878.192 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 122:878.592 Data: 02 -T98A8 122:878.704 - 0.564ms returns 1 (0x1) -T98A8 122:878.800 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:878.872 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 122:879.232 Data: 02 -T98A8 122:879.344 - 0.563ms returns 1 (0x1) -T98A8 122:879.424 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:879.464 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 122:879.784 Data: 03 -T98A8 122:879.888 - 0.461ms returns 1 (0x1) -T98A8 122:879.920 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:879.984 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 122:880.320 Data: 03 -T98A8 122:880.408 - 0.478ms returns 1 (0x1) -T98A8 122:880.464 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:880.496 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 122:880.856 Data: 02 -T98A8 122:881.088 - 0.623ms returns 1 (0x1) -T98A8 122:881.200 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:881.328 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 122:881.792 Data: 01 -T98A8 122:881.936 - 0.727ms returns 1 (0x1) -T98A8 122:882.024 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:882.096 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 122:882.496 Data: 00 00 00 00 -T98A8 122:882.584 - 0.558ms returns 4 (0x4) -T98A8 122:882.688 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:882.736 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 122:883.056 Data: 00 -T98A8 122:883.136 - 0.446ms returns 1 (0x1) -T98A8 122:883.344 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 122:883.392 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 122:883.792 Data: 00 -T98A8 122:883.864 - 0.515ms returns 1 (0x1) -T98A8 122:883.952 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:884.008 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 122:884.304 Data: 10 CF 01 20 -T98A8 122:884.432 - 0.476ms returns 4 (0x4) -T98A8 122:884.544 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 122:884.632 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 122:885.008 Data: 49 CF 01 20 -T98A8 122:885.080 - 0.538ms returns 4 (0x4) -T358C 122:885.264 JLINK_IsHalted() -T358C 122:885.608 - 0.334ms returns FALSE -T358C 122:986.304 JLINK_HasError() -T358C 122:986.392 JLINK_IsHalted() -T358C 122:986.816 - 0.410ms returns FALSE -T358C 123:087.760 JLINK_HasError() -T358C 123:087.896 JLINK_IsHalted() -T358C 123:088.280 - 0.383ms returns FALSE -T358C 123:189.040 JLINK_HasError() -T358C 123:189.136 JLINK_IsHalted() -T358C 123:189.504 - 0.379ms returns FALSE -T358C 123:289.728 JLINK_HasError() -T358C 123:289.856 JLINK_IsHalted() -T358C 123:290.224 - 0.374ms returns FALSE -T358C 123:391.024 JLINK_HasError() -T358C 123:391.272 JLINK_HasError() -T358C 123:391.344 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 123:391.448 Data: F7 AE 0E 05 -T358C 123:391.552 Debug reg: DWT_CYCCNT -T358C 123:391.640 - 0.296ms returns 1 (0x1) -T98A8 123:391.848 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 123:391.976 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 123:392.624 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 123:392.784 - 0.937ms returns 25 (0x19) -T98A8 123:392.880 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:392.976 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 123:393.304 Data: 02 -T98A8 123:393.408 - 0.516ms returns 1 (0x1) -T98A8 123:393.488 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:393.536 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 123:393.960 Data: 00 00 00 00 -T98A8 123:394.024 - 0.542ms returns 4 (0x4) -T98A8 123:394.088 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:394.128 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 123:394.560 Data: 00 00 00 00 -T98A8 123:394.648 - 0.564ms returns 4 (0x4) -T98A8 123:394.704 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:394.752 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 123:395.176 Data: 80 56 43 BC -T98A8 123:395.280 - 0.579ms returns 4 (0x4) -T98A8 123:395.328 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:395.376 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 123:395.816 Data: 00 00 00 00 -T98A8 123:395.888 - 0.558ms returns 4 (0x4) -T98A8 123:395.928 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:395.984 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 123:396.336 Data: 03 -T98A8 123:396.456 - 0.519ms returns 1 (0x1) -T98A8 123:396.520 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:396.592 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 123:396.944 Data: 03 -T98A8 123:397.168 - 0.658ms returns 1 (0x1) -T98A8 123:397.336 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:397.416 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 123:397.864 Data: 03 -T98A8 123:397.952 - 0.613ms returns 1 (0x1) -T98A8 123:398.000 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:398.040 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 123:398.424 Data: 03 -T98A8 123:398.488 - 0.498ms returns 1 (0x1) -T98A8 123:398.544 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:398.592 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 123:398.976 Data: 02 -T98A8 123:399.040 - 0.494ms returns 1 (0x1) -T98A8 123:399.080 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:399.128 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 123:399.464 Data: 02 -T98A8 123:399.536 - 0.449ms returns 1 (0x1) -T98A8 123:399.576 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:399.632 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 123:399.960 Data: 03 -T98A8 123:400.024 - 0.451ms returns 1 (0x1) -T98A8 123:400.080 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:400.128 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 123:400.464 Data: 01 -T98A8 123:400.576 - 0.504ms returns 1 (0x1) -T98A8 123:400.664 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 123:400.744 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 123:401.176 Data: 00 00 -T98A8 123:401.304 - 0.643ms returns 2 (0x2) -T98A8 123:401.392 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 123:401.472 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 123:401.904 Data: 00 00 -T98A8 123:402.024 - 0.634ms returns 2 (0x2) -T98A8 123:402.192 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:402.280 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 123:402.648 Data: 40 C4 01 20 -T98A8 123:402.728 - 0.536ms returns 4 (0x4) -T98A8 123:402.792 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:402.832 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 123:403.152 Data: 01 00 00 00 -T98A8 123:403.216 - 0.430ms returns 4 (0x4) -T98A8 123:403.280 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:403.328 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 123:403.648 Data: 00 00 00 00 -T98A8 123:403.736 - 0.455ms returns 4 (0x4) -T98A8 123:403.800 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:403.880 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 123:404.248 Data: 00 00 00 00 -T98A8 123:404.368 - 0.565ms returns 4 (0x4) -T98A8 123:404.464 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:404.544 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 123:405.008 Data: 80 56 43 BC -T98A8 123:405.080 - 0.616ms returns 4 (0x4) -T98A8 123:405.136 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:405.184 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 123:405.520 Data: 00 00 00 00 -T98A8 123:405.680 - 0.547ms returns 4 (0x4) -T98A8 123:405.784 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:405.872 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 123:406.232 Data: 02 -T98A8 123:406.320 - 0.531ms returns 1 (0x1) -T98A8 123:406.376 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:406.416 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 123:406.736 Data: 02 -T98A8 123:406.872 - 0.503ms returns 1 (0x1) -T98A8 123:406.952 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:406.992 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 123:407.296 Data: 02 -T98A8 123:407.400 - 0.450ms returns 1 (0x1) -T98A8 123:407.488 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:407.568 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 123:407.936 Data: 02 -T98A8 123:408.024 - 0.543ms returns 1 (0x1) -T98A8 123:408.080 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:408.128 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 123:408.472 Data: 03 -T98A8 123:408.560 - 0.487ms returns 1 (0x1) -T98A8 123:408.640 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:408.728 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 123:409.088 Data: 03 -T98A8 123:409.168 - 0.520ms returns 1 (0x1) -T98A8 123:409.216 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:409.256 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 123:409.616 Data: 02 -T98A8 123:409.688 - 0.480ms returns 1 (0x1) -T98A8 123:409.744 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:409.808 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 123:410.216 Data: 01 -T98A8 123:410.384 - 0.633ms returns 1 (0x1) -T98A8 123:410.472 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:410.544 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 123:410.968 Data: 00 00 00 00 -T98A8 123:411.072 - 0.608ms returns 4 (0x4) -T98A8 123:411.176 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:411.224 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 123:411.536 Data: 00 -T98A8 123:411.624 - 0.443ms returns 1 (0x1) -T98A8 123:411.824 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:411.880 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 123:412.184 Data: 00 -T98A8 123:412.272 - 0.444ms returns 1 (0x1) -T98A8 123:412.376 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:412.432 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 123:412.816 Data: 10 CF 01 20 -T98A8 123:412.888 - 0.504ms returns 4 (0x4) -T98A8 123:412.952 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:412.992 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 123:413.296 Data: 49 CF 01 20 -T98A8 123:413.360 - 0.416ms returns 4 (0x4) -T358C 123:413.544 JLINK_IsHalted() -T358C 123:413.904 - 0.357ms returns FALSE -T358C 123:514.432 JLINK_HasError() -T358C 123:514.560 JLINK_IsHalted() -T358C 123:514.992 - 0.437ms returns FALSE -T358C 123:615.568 JLINK_HasError() -T358C 123:615.744 JLINK_IsHalted() -T358C 123:616.256 - 0.507ms returns FALSE -T358C 123:716.976 JLINK_HasError() -T358C 123:717.072 JLINK_IsHalted() -T358C 123:717.416 - 0.344ms returns FALSE -T358C 123:818.512 JLINK_HasError() -T358C 123:818.688 JLINK_IsHalted() -T358C 123:819.200 - 0.517ms returns FALSE -T358C 123:920.256 JLINK_HasError() -T358C 123:920.408 JLINK_HasError() -T358C 123:920.488 JLINK_ReadMemU32(0xE0001004, 0x1 Items) -T358C 123:920.592 Data: F7 AE 0E 05 -T358C 123:920.688 Debug reg: DWT_CYCCNT -T358C 123:920.792 - 0.316ms returns 1 (0x1) -T98A8 123:921.112 JLINK_ReadMemEx(0x20000130, 0x19 Bytes, Flags = 0x02000000) -T98A8 123:921.200 CPU_ReadMem(25 bytes @ 0x20000130) -T98A8 123:921.744 Data: 0F 00 04 20 00 F1 07 40 00 7E FA D3 00 04 20 00 ... -T98A8 123:921.872 - 0.758ms returns 25 (0x19) -T98A8 123:921.968 JLINK_ReadMemEx(0x20000154, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:922.048 CPU_ReadMem(1 bytes @ 0x20000154) -T98A8 123:922.416 Data: 02 -T98A8 123:922.512 - 0.546ms returns 1 (0x1) -T98A8 123:922.608 JLINK_ReadMemEx(0x20000155, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:922.664 CPU_ReadMem(4 bytes @ 0x20000155) -T98A8 123:923.120 Data: 00 00 00 00 -T98A8 123:923.216 - 0.602ms returns 4 (0x4) -T98A8 123:923.264 JLINK_ReadMemEx(0x20000159, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:923.312 CPU_ReadMem(4 bytes @ 0x20000159) -T98A8 123:923.800 Data: 00 00 00 00 -T98A8 123:923.920 - 0.652ms returns 4 (0x4) -T98A8 123:923.992 JLINK_ReadMemEx(0x2000015D, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:924.080 CPU_ReadMem(4 bytes @ 0x2000015D) -T98A8 123:924.544 Data: 80 56 43 BC -T98A8 123:924.648 - 0.646ms returns 4 (0x4) -T98A8 123:924.696 JLINK_ReadMemEx(0x20000161, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:924.752 CPU_ReadMem(4 bytes @ 0x20000161) -T98A8 123:925.200 Data: 00 00 00 00 -T98A8 123:925.272 - 0.568ms returns 4 (0x4) -T98A8 123:925.328 JLINK_ReadMemEx(0x20000165, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:925.360 CPU_ReadMem(1 bytes @ 0x20000165) -T98A8 123:925.672 Data: 03 -T98A8 123:925.744 - 0.423ms returns 1 (0x1) -T98A8 123:925.784 JLINK_ReadMemEx(0x20000166, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:925.840 CPU_ReadMem(1 bytes @ 0x20000166) -T98A8 123:926.336 Data: 03 -T98A8 123:926.424 - 0.631ms returns 1 (0x1) -T98A8 123:926.480 JLINK_ReadMemEx(0x20000167, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:926.528 CPU_ReadMem(1 bytes @ 0x20000167) -T98A8 123:926.872 Data: 03 -T98A8 123:926.952 - 0.474ms returns 1 (0x1) -T98A8 123:927.000 JLINK_ReadMemEx(0x20000168, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:927.056 CPU_ReadMem(1 bytes @ 0x20000168) -T98A8 123:927.360 Data: 03 -T98A8 123:927.440 - 0.434ms returns 1 (0x1) -T98A8 123:927.488 JLINK_ReadMemEx(0x20000169, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:927.536 CPU_ReadMem(1 bytes @ 0x20000169) -T98A8 123:927.848 Data: 02 -T98A8 123:927.920 - 0.427ms returns 1 (0x1) -T98A8 123:927.976 JLINK_ReadMemEx(0x2000016A, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:928.016 CPU_ReadMem(1 bytes @ 0x2000016A) -T98A8 123:928.304 Data: 02 -T98A8 123:928.368 - 0.407ms returns 1 (0x1) -T98A8 123:928.424 JLINK_ReadMemEx(0x2000016B, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:928.472 CPU_ReadMem(1 bytes @ 0x2000016B) -T98A8 123:928.856 Data: 03 -T98A8 123:928.920 - 0.497ms returns 1 (0x1) -T98A8 123:928.976 JLINK_ReadMemEx(0x2000016C, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:929.008 CPU_ReadMem(1 bytes @ 0x2000016C) -T98A8 123:929.320 Data: 01 -T98A8 123:929.392 - 0.428ms returns 1 (0x1) -T98A8 123:929.448 JLINK_ReadMemEx(0x2000016D, 0x2 Bytes, Flags = 0x02000000) -T98A8 123:929.496 CPU_ReadMem(2 bytes @ 0x2000016D) -T98A8 123:929.904 Data: 00 00 -T98A8 123:930.024 - 0.580ms returns 2 (0x2) -T98A8 123:930.112 JLINK_ReadMemEx(0x2000016F, 0x2 Bytes, Flags = 0x02000000) -T98A8 123:930.192 CPU_ReadMem(2 bytes @ 0x2000016F) -T98A8 123:930.624 Data: 00 00 -T98A8 123:930.736 - 0.633ms returns 2 (0x2) -T98A8 123:930.920 JLINK_ReadMemEx(0x2001CE88, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:930.960 CPU_ReadMem(4 bytes @ 0x2001CE88) -T98A8 123:931.280 Data: 40 C4 01 20 -T98A8 123:931.344 - 0.426ms returns 4 (0x4) -T98A8 123:931.408 JLINK_ReadMemEx(0x2001CE98, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:931.456 CPU_ReadMem(4 bytes @ 0x2001CE98) -T98A8 123:931.776 Data: 01 00 00 00 -T98A8 123:931.856 - 0.453ms returns 4 (0x4) -T98A8 123:931.920 JLINK_ReadMemEx(0x2001CE9C, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:931.968 CPU_ReadMem(4 bytes @ 0x2001CE9C) -T98A8 123:932.288 Data: 00 00 00 00 -T98A8 123:932.352 - 0.432ms returns 4 (0x4) -T98A8 123:932.400 JLINK_ReadMemEx(0x2001CEA0, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:932.456 CPU_ReadMem(4 bytes @ 0x2001CEA0) -T98A8 123:932.848 Data: 00 00 00 00 -T98A8 123:932.912 - 0.514ms returns 4 (0x4) -T98A8 123:932.976 JLINK_ReadMemEx(0x2001CEA4, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:933.016 CPU_ReadMem(4 bytes @ 0x2001CEA4) -T98A8 123:933.336 Data: 80 56 43 BC -T98A8 123:933.456 - 0.481ms returns 4 (0x4) -T98A8 123:933.552 JLINK_ReadMemEx(0x2001CEA8, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:933.632 CPU_ReadMem(4 bytes @ 0x2001CEA8) -T98A8 123:934.016 Data: 00 00 00 00 -T98A8 123:934.128 - 0.577ms returns 4 (0x4) -T98A8 123:934.232 JLINK_ReadMemEx(0x2001CEAC, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:934.312 CPU_ReadMem(1 bytes @ 0x2001CEAC) -T98A8 123:934.680 Data: 02 -T98A8 123:934.800 - 0.575ms returns 1 (0x1) -T98A8 123:934.888 JLINK_ReadMemEx(0x2001CEAD, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:934.960 CPU_ReadMem(1 bytes @ 0x2001CEAD) -T98A8 123:935.336 Data: 02 -T98A8 123:935.488 - 0.605ms returns 1 (0x1) -T98A8 123:935.552 JLINK_ReadMemEx(0x2001CEAE, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:935.600 CPU_ReadMem(1 bytes @ 0x2001CEAE) -T98A8 123:935.896 Data: 02 -T98A8 123:935.984 - 0.425ms returns 1 (0x1) -T98A8 123:936.040 JLINK_ReadMemEx(0x2001CEAF, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:936.080 CPU_ReadMem(1 bytes @ 0x2001CEAF) -T98A8 123:936.384 Data: 02 -T98A8 123:936.448 - 0.421ms returns 1 (0x1) -T98A8 123:936.496 JLINK_ReadMemEx(0x2001CEB0, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:936.552 CPU_ReadMem(1 bytes @ 0x2001CEB0) -T98A8 123:936.872 Data: 03 -T98A8 123:936.984 - 0.483ms returns 1 (0x1) -T98A8 123:937.064 JLINK_ReadMemEx(0x2001CEB1, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:937.136 CPU_ReadMem(1 bytes @ 0x2001CEB1) -T98A8 123:937.520 Data: 03 -T98A8 123:937.640 - 0.572ms returns 1 (0x1) -T98A8 123:937.728 JLINK_ReadMemEx(0x2001CEB2, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:937.832 CPU_ReadMem(1 bytes @ 0x2001CEB2) -T98A8 123:938.200 Data: 02 -T98A8 123:938.264 - 0.540ms returns 1 (0x1) -T98A8 123:938.320 JLINK_ReadMemEx(0x2001CEB3, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:938.368 CPU_ReadMem(1 bytes @ 0x2001CEB3) -T98A8 123:938.768 Data: 01 -T98A8 123:938.856 - 0.537ms returns 1 (0x1) -T98A8 123:938.944 JLINK_ReadMemEx(0x2001CEB4, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:939.008 CPU_ReadMem(4 bytes @ 0x2001CEB4) -T98A8 123:939.368 Data: 00 00 00 00 -T98A8 123:939.504 - 0.561ms returns 4 (0x4) -T98A8 123:939.664 JLINK_ReadMemEx(0x2001CF08, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:939.760 CPU_ReadMem(1 bytes @ 0x2001CF08) -T98A8 123:940.160 Data: 00 -T98A8 123:940.272 - 0.616ms returns 1 (0x1) -T98A8 123:940.656 JLINK_ReadMemEx(0x200000CC, 0x1 Bytes, Flags = 0x02000000) -T98A8 123:940.760 CPU_ReadMem(1 bytes @ 0x200000CC) -T98A8 123:941.184 Data: 00 -T98A8 123:941.272 - 0.620ms returns 1 (0x1) -T98A8 123:941.400 JLINK_ReadMemEx(0x2001CFBC, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:941.456 CPU_ReadMem(4 bytes @ 0x2001CFBC) -T98A8 123:941.864 Data: 10 CF 01 20 -T98A8 123:941.992 - 0.595ms returns 4 (0x4) -T98A8 123:942.104 JLINK_ReadMemEx(0x2001CFC0, 0x4 Bytes, Flags = 0x02000000) -T98A8 123:942.184 CPU_ReadMem(4 bytes @ 0x2001CFC0) -T98A8 123:942.784 Data: 49 CF 01 20 -T98A8 123:942.848 - 0.742ms returns 4 (0x4) -T358C 123:943.016 JLINK_IsHalted() -T358C 123:943.384 - 0.372ms returns FALSE -T358C 124:043.888 JLINK_HasError() -T358C 124:044.072 JLINK_IsHalted() -T358C 124:044.632 - 0.565ms returns FALSE -T358C 124:145.424 JLINK_HasError() -T358C 124:145.600 JLINK_Halt() -T358C 124:147.736 - 2.133ms returns 0x00 -T358C 124:147.824 JLINK_IsHalted() -T358C 124:147.864 - 0.041ms returns TRUE -T358C 124:147.904 JLINK_IsHalted() -T358C 124:147.968 - 0.060ms returns TRUE -T358C 124:148.032 JLINK_IsHalted() -T358C 124:148.112 - 0.066ms returns TRUE -T358C 124:148.176 JLINK_HasError() -T358C 124:148.248 JLINK_ReadReg(R15 (PC)) -T358C 124:148.312 - 0.070ms returns 0x0800B768 -T358C 124:148.376 JLINK_ReadReg(XPSR) -T358C 124:148.456 - 0.066ms returns 0x81000000 -T358C 124:148.520 JLINK_HasError() -T358C 124:148.592 JLINK_HasError() -T358C 124:148.656 JLINK_ReadMemU32(0xE000ED30, 0x1 Items) -T358C 124:148.736 CPU_ReadMem(4 bytes @ 0xE000ED30) -T358C 124:149.160 Data: 01 00 00 00 -T358C 124:149.208 - 0.557ms returns 1 (0x1) -T358C 124:149.264 JLINK_ReadMemU32(0xE0001028, 0x1 Items) -T358C 124:149.296 CPU_ReadMem(4 bytes @ 0xE0001028) -T358C 124:149.696 Data: 00 00 00 00 -T358C 124:149.760 Debug reg: DWT_FUNC[0] -T358C 124:149.840 - 0.576ms returns 1 (0x1) -T358C 124:149.872 JLINK_ReadMemU32(0xE0001038, 0x1 Items) -T358C 124:149.912 CPU_ReadMem(4 bytes @ 0xE0001038) -T358C 124:150.288 Data: 00 02 00 00 -T358C 124:150.352 Debug reg: DWT_FUNC[1] -T358C 124:150.400 - 0.531ms returns 1 (0x1) -T358C 124:150.448 JLINK_ReadMemU32(0xE0001048, 0x1 Items) -T358C 124:150.488 CPU_ReadMem(4 bytes @ 0xE0001048) -T358C 124:150.888 Data: 00 00 00 00 -T358C 124:150.952 Debug reg: DWT_FUNC[2] -T358C 124:151.016 - 0.569ms returns 1 (0x1) -T358C 124:151.056 JLINK_ReadMemU32(0xE0001058, 0x1 Items) -T358C 124:151.104 CPU_ReadMem(4 bytes @ 0xE0001058) -T358C 124:151.488 Data: 00 00 00 00 -T358C 124:151.552 Debug reg: DWT_FUNC[3] -T358C 124:151.616 - 0.555ms returns 1 (0x1) -T98A8 124:817.008 JLINK_HasError() -T98A8 124:826.928 JLINK_Close() -T98A8 124:828.072 OnDisconnectTarget() start -T98A8 124:828.176 J-Link Script File: Executing OnDisconnectTarget() -T98A8 124:828.480 CPU_WriteMem(4 bytes @ 0xE0042004) -T98A8 124:828.904 CPU_WriteMem(4 bytes @ 0xE0042008) -T98A8 124:829.232 OnDisconnectTarget() end - Took 1.04ms -T98A8 124:829.296 CPU_ReadMem(4 bytes @ 0xE0001000) -T98A8 124:839.976 - 13.044ms -T98A8 124:840.152 -T98A8 124:840.296 Closed +T1E08 000:010.065 SEGGER J-Link V8.90 Log File +T1E08 000:010.291 DLL Compiled: Nov 26 2025 17:20:53 +T1E08 000:010.331 Logging started @ 2026-02-07 04:31 +T1E08 000:010.370 Process: D:\Keil_v5\UV4\UV4.exe +T1E08 000:010.431 - 10.417ms +T1E08 000:010.480 JLINK_SetWarnOutHandler(...) +T1E08 000:010.519 - 0.041ms +T1E08 000:010.563 JLINK_OpenEx(...) +T1E08 000:018.123 Firmware: J-Link V9 compiled May 7 2021 16:26:12 +T1E08 000:020.620 Firmware: J-Link V9 compiled May 7 2021 16:26:12 +T1E08 000:021.356 Decompressing FW timestamp took 314 us +T1E08 000:031.175 Hardware: V9.70 +T1E08 000:031.428 S/N: 20760100 +T1E08 000:031.523 OEM: SEGGER +T1E08 000:031.618 Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +T1E08 000:034.018 Bootloader: (FW returned invalid version) +T1E08 000:036.480 TELNET listener socket opened on port 19021 +T1E08 000:037.070 WEBSRV WEBSRV_Init(): Starting webserver thread(s) +T1E08 000:037.467 WEBSRV Webserver running on local port 19080 +T1E08 000:038.145 Looking for J-Link GUI Server exe at: D:\Keil_v5\ARM\Segger\JLinkGUIServer.exe +T1E08 000:038.543 Looking for J-Link GUI Server exe at: D:\Program Files\SEGGER\JLink_V890\JLinkGUIServer.exe +T1E08 000:038.738 Forking J-Link GUI Server: D:\Program Files\SEGGER\JLink_V890\JLinkGUIServer.exe +T1E08 000:082.148 J-Link GUI Server info: "J-Link GUI server V8.90 " +T1E08 000:087.614 - 77.040ms returns "O.K." +T1E08 000:087.726 JLINK_GetEmuCaps() +T1E08 000:087.770 - 0.040ms returns 0xB9FF7BBF +T1E08 000:087.814 JLINK_TIF_GetAvailable(...) +T1E08 000:088.554 - 0.740ms +T1E08 000:088.630 JLINK_SetErrorOutHandler(...) +T1E08 000:088.670 - 0.039ms +T1E08 000:088.768 JLINK_ExecCommand("ProjectFile = "D:\yunha\git_gimbal\RM\Steering Wheel_Infatry\MDK-ARM\JLinkSettings.ini"", ...). +T1E08 000:107.973 Ref file found at: D:\Keil_v5\ARM\Segger\JLinkDevices.ref +T1E08 000:108.369 REF file references invalid XML file: D:\Program Files\SEGGER\JLink_V890\JLinkDevices.xml +T1E08 000:110.441 - 21.677ms returns 0x00 +T1E08 000:116.433 JLINK_ExecCommand("Device = STM32F407IGHx", ...). +T1E08 000:122.074 Device "STM32F407IG" selected. +T1E08 000:123.262 - 6.744ms returns 0x00 +T1E08 000:123.321 JLINK_ExecCommand("DisableConnectionTimeout", ...). +T1E08 000:123.381 ERROR: Unknown command +T1E08 000:123.481 - 0.117ms returns 0x01 +T1E08 000:123.522 JLINK_GetHardwareVersion() +T1E08 000:123.562 - 0.039ms returns 97000 +T1E08 000:123.601 JLINK_GetDLLVersion() +T1E08 000:123.638 - 0.037ms returns 89000 +T1E08 000:123.677 JLINK_GetOEMString(...) +T1E08 000:123.716 JLINK_GetFirmwareString(...) +T1E08 000:123.754 - 0.037ms +T1E08 000:132.469 JLINK_GetDLLVersion() +T1E08 000:132.559 - 0.088ms returns 89000 +T1E08 000:132.599 JLINK_GetCompileDateTime() +T1E08 000:132.638 - 0.038ms +T1E08 000:135.141 JLINK_GetFirmwareString(...) +T1E08 000:135.199 - 0.059ms +T1E08 000:138.189 JLINK_GetHardwareVersion() +T1E08 000:138.261 - 0.071ms returns 97000 +T1E08 000:140.763 JLINK_GetSN() +T1E08 000:140.823 - 0.059ms returns 20760100 +T1E08 000:143.661 JLINK_GetOEMString(...) +T1E08 000:149.698 JLINK_TIF_Select(JLINKARM_TIF_SWD) +T1E08 000:152.508 - 2.820ms returns 0x00 +T1E08 000:152.661 JLINK_HasError() +T1E08 000:152.773 JLINK_SetSpeed(5000) +T1E08 000:153.450 - 0.682ms +T1E08 000:153.510 JLINK_GetId() +T1E08 000:158.063 InitTarget() start +T1E08 000:158.153 J-Link Script File: Executing InitTarget() +T1E08 000:162.735 SWD selected. Executing JTAG -> SWD switching sequence. +T1E08 000:171.048 DAP initialized successfully. +T1E08 000:190.768 InitTarget() end - Took 29.3ms +T1E08 000:196.902 Found SW-DP with ID 0x2BA01477 +T1E08 000:205.618 DPIDR: 0x2BA01477 +T1E08 000:209.001 CoreSight SoC-400 or earlier +T1E08 000:212.391 Scanning AP map to find all available APs +T1E08 000:220.888 AP[1]: Stopped AP scan as end of AP map has been reached +T1E08 000:228.036 AP[0]: AHB-AP (IDR: 0x24770011, ADDR: 0x00000000) +T1E08 000:234.280 Iterating through AP map to find AHB-AP to use +T1E08 000:240.558 AP[0]: Core found +T1E08 000:243.748 AP[0]: AHB-AP ROM base: 0xE00FF000 +T1E08 000:247.866 CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +T1E08 000:250.675 Found Cortex-M4 r0p1, Little endian. +T1E08 000:252.031 -- Max. mem block: 0x00010C40 +T1E08 000:253.635 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 000:254.593 CPU_ReadMem(4 bytes @ 0xE0002000) +T1E08 000:259.176 FPUnit: 6 code (BP) slots and 2 literal slots +T1E08 000:259.295 CPU_ReadMem(4 bytes @ 0xE000EDFC) +T1E08 000:260.317 CPU_WriteMem(4 bytes @ 0xE000EDFC) +T1E08 000:261.138 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:261.997 CPU_WriteMem(4 bytes @ 0xE0001000) +T1E08 000:262.884 CPU_ReadMem(4 bytes @ 0xE000ED88) +T1E08 000:263.841 CPU_WriteMem(4 bytes @ 0xE000ED88) +T1E08 000:264.922 CPU_ReadMem(4 bytes @ 0xE000ED88) +T1E08 000:265.833 CPU_WriteMem(4 bytes @ 0xE000ED88) +T1E08 000:273.384 CoreSight components: +T1E08 000:277.544 ROMTbl[0] @ E00FF000 +T1E08 000:277.675 CPU_ReadMem(64 bytes @ 0xE00FF000) +T1E08 000:278.774 CPU_ReadMem(32 bytes @ 0xE000EFE0) +T1E08 000:285.198 [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +T1E08 000:285.330 CPU_ReadMem(32 bytes @ 0xE0001FE0) +T1E08 000:291.167 [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +T1E08 000:291.273 CPU_ReadMem(32 bytes @ 0xE0002FE0) +T1E08 000:296.611 [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +T1E08 000:296.718 CPU_ReadMem(32 bytes @ 0xE0000FE0) +T1E08 000:300.458 [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +T1E08 000:300.573 CPU_ReadMem(32 bytes @ 0xE0040FE0) +T1E08 000:305.192 [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +T1E08 000:305.296 CPU_ReadMem(32 bytes @ 0xE0041FE0) +T1E08 000:310.788 [0][5]: E0041000 CID B105900D PID 000BB925 ETM +T1E08 000:311.863 - 158.351ms returns 0x2BA01477 +T1E08 000:312.000 JLINK_GetDLLVersion() +T1E08 000:312.069 - 0.068ms returns 89000 +T1E08 000:312.142 JLINK_CORE_GetFound() +T1E08 000:312.208 - 0.066ms returns 0xE0000FF +T1E08 000:312.281 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) +T1E08 000:312.355 Value=0xE00FF000 +T1E08 000:312.449 - 0.168ms returns 0 +T1E08 000:315.826 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) +T1E08 000:315.935 Value=0xE00FF000 +T1E08 000:316.038 - 0.212ms returns 0 +T1E08 000:316.080 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) +T1E08 000:316.121 Value=0xE0041000 +T1E08 000:316.182 - 0.102ms returns 0 +T1E08 000:316.225 JLINK_ReadMemEx(0xE0041FD0, 0x20 Bytes, Flags = 0x02000004) +T1E08 000:316.326 CPU_ReadMem(32 bytes @ 0xE0041FD0) +T1E08 000:317.316 Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... +T1E08 000:317.476 - 1.250ms returns 32 (0x20) +T1E08 000:317.575 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) +T1E08 000:317.649 Value=0x00000000 +T1E08 000:317.762 - 0.187ms returns 0 +T1E08 000:317.839 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) +T1E08 000:317.913 Value=0xE0040000 +T1E08 000:318.024 - 0.186ms returns 0 +T1E08 000:318.101 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) +T1E08 000:318.176 Value=0xE0000000 +T1E08 000:318.288 - 0.187ms returns 0 +T1E08 000:318.364 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) +T1E08 000:318.506 Value=0xE0001000 +T1E08 000:318.631 - 0.267ms returns 0 +T1E08 000:318.678 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) +T1E08 000:318.718 Value=0xE0002000 +T1E08 000:318.778 - 0.101ms returns 0 +T1E08 000:318.820 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) +T1E08 000:318.860 Value=0xE000E000 +T1E08 000:318.920 - 0.100ms returns 0 +T1E08 000:318.975 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) +T1E08 000:319.030 Value=0xE000EDF0 +T1E08 000:319.108 - 0.133ms returns 0 +T1E08 000:319.150 JLINK_GetDebugInfo(0x01 = Unknown) +T1E08 000:319.193 Value=0x00000001 +T1E08 000:319.258 - 0.108ms returns 0 +T1E08 000:319.299 JLINK_ReadMemU32(0xE000ED00, 0x1 Items) +T1E08 000:319.353 CPU_ReadMem(4 bytes @ 0xE000ED00) +T1E08 000:320.456 Data: 41 C2 0F 41 +T1E08 000:320.598 Debug reg: CPUID +T1E08 000:320.709 - 1.409ms returns 1 (0x1) +T1E08 000:320.780 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) +T1E08 000:320.825 Value=0x00000000 +T1E08 000:320.882 - 0.103ms returns 0 +T1E08 000:320.922 JLINK_HasError() +T1E08 000:320.962 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +T1E08 000:321.001 - 0.038ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +T1E08 000:321.040 JLINK_Reset() +T1E08 000:321.083 JLINK_GetResetTypeDesc +T1E08 000:321.121 - 0.038ms +T1E08 000:324.095 Reset type: NORMAL (https://kb.segger.com/J-Link_Reset_Strategies) +T1E08 000:324.172 CPU is running +T1E08 000:324.233 CPU_WriteMem(4 bytes @ 0xE000EDF0) +T1E08 000:325.038 CPU is running +T1E08 000:325.178 CPU_WriteMem(4 bytes @ 0xE000EDFC) +T1E08 000:329.157 Reset: Halt core after reset via DEMCR.VC_CORERESET. +T1E08 000:334.512 Reset: Reset device via AIRCR.SYSRESETREQ. +T1E08 000:334.606 CPU is running +T1E08 000:334.667 CPU_WriteMem(4 bytes @ 0xE000ED0C) +T1E08 000:392.418 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 000:393.581 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 000:397.529 CPU_WriteMem(4 bytes @ 0xE000EDFC) +T1E08 000:405.661 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 000:411.497 CPU_WriteMem(4 bytes @ 0xE0002000) +T1E08 000:412.630 CPU_ReadMem(4 bytes @ 0xE000EDFC) +T1E08 000:413.556 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:414.514 - 93.472ms +T1E08 000:414.615 JLINK_Halt() +T1E08 000:414.678 - 0.062ms returns 0x00 +T1E08 000:414.744 JLINK_ReadMemU32(0xE000EDF0, 0x1 Items) +T1E08 000:414.819 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 000:415.638 Data: 03 00 03 00 +T1E08 000:415.739 Debug reg: DHCSR +T1E08 000:415.829 - 1.084ms returns 1 (0x1) +T1E08 000:415.900 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) +T1E08 000:415.960 Debug reg: DHCSR +T1E08 000:416.511 CPU_WriteMem(4 bytes @ 0xE000EDF0) +T1E08 000:417.392 - 1.492ms returns 0 (0x00000000) +T1E08 000:417.443 JLINK_WriteU32(0xE000EDFC, 0x01000000) +T1E08 000:417.481 Debug reg: DEMCR +T1E08 000:417.541 CPU_WriteMem(4 bytes @ 0xE000EDFC) +T1E08 000:418.283 - 0.839ms returns 0 (0x00000000) +T1E08 000:433.202 JLINK_GetHWStatus(...) +T1E08 000:433.976 - 0.772ms returns 0 +T1E08 000:444.928 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) +T1E08 000:445.026 - 0.098ms returns 0x06 +T1E08 000:445.069 JLINK_GetNumBPUnits(Type = 0xF0) +T1E08 000:445.111 - 0.042ms returns 0x2000 +T1E08 000:445.155 JLINK_GetNumWPUnits() +T1E08 000:445.202 - 0.046ms returns 4 +T1E08 000:454.139 JLINK_GetSpeed() +T1E08 000:454.243 - 0.103ms returns 4000 +T1E08 000:459.603 JLINK_ReadMemU32(0xE000E004, 0x1 Items) +T1E08 000:459.698 CPU_ReadMem(4 bytes @ 0xE000E004) +T1E08 000:460.625 Data: 02 00 00 00 +T1E08 000:460.768 - 1.164ms returns 1 (0x1) +T1E08 000:460.840 JLINK_ReadMemU32(0xE000E004, 0x1 Items) +T1E08 000:460.913 CPU_ReadMem(4 bytes @ 0xE000E004) +T1E08 000:461.982 Data: 02 00 00 00 +T1E08 000:462.070 - 1.230ms returns 1 (0x1) +T1E08 000:462.112 JLINK_WriteMemEx(0xE0001000, 0x0000001C Bytes, Flags = 0x02000004) +T1E08 000:462.152 Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... +T1E08 000:462.223 CPU_WriteMem(28 bytes @ 0xE0001000) +T1E08 000:463.155 - 1.042ms returns 0x1C +T1E08 000:463.278 JLINK_Halt() +T1E08 000:463.348 - 0.070ms returns 0x00 +T1E08 000:463.420 JLINK_IsHalted() +T1E08 000:463.497 - 0.077ms returns TRUE +T1E08 000:468.276 JLINK_WriteMem(0x20000000, 0x184 Bytes, ...) +T1E08 000:468.321 Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ... +T1E08 000:468.731 CPU_WriteMem(388 bytes @ 0x20000000) +T1E08 000:470.871 - 2.593ms returns 0x184 +T1E08 000:471.102 JLINK_HasError() +T1E08 000:471.179 JLINK_WriteReg(R0, 0x08000000) +T1E08 000:471.251 - 0.073ms returns 0 +T1E08 000:471.319 JLINK_WriteReg(R1, 0x00B71B00) +T1E08 000:471.386 - 0.066ms returns 0 +T1E08 000:471.453 JLINK_WriteReg(R2, 0x00000001) +T1E08 000:471.519 - 0.066ms returns 0 +T1E08 000:471.587 JLINK_WriteReg(R3, 0x00000000) +T1E08 000:471.653 - 0.066ms returns 0 +T1E08 000:471.721 JLINK_WriteReg(R4, 0x00000000) +T1E08 000:471.803 - 0.082ms returns 0 +T1E08 000:471.874 JLINK_WriteReg(R5, 0x00000000) +T1E08 000:471.939 - 0.065ms returns 0 +T1E08 000:472.012 JLINK_WriteReg(R6, 0x00000000) +T1E08 000:472.059 - 0.047ms returns 0 +T1E08 000:472.098 JLINK_WriteReg(R7, 0x00000000) +T1E08 000:472.137 - 0.038ms returns 0 +T1E08 000:472.197 JLINK_WriteReg(R8, 0x00000000) +T1E08 000:472.235 - 0.059ms returns 0 +T1E08 000:472.274 JLINK_WriteReg(R9, 0x20000180) +T1E08 000:472.311 - 0.037ms returns 0 +T1E08 000:472.350 JLINK_WriteReg(R10, 0x00000000) +T1E08 000:472.388 - 0.038ms returns 0 +T1E08 000:472.427 JLINK_WriteReg(R11, 0x00000000) +T1E08 000:472.465 - 0.037ms returns 0 +T1E08 000:472.504 JLINK_WriteReg(R12, 0x00000000) +T1E08 000:472.542 - 0.038ms returns 0 +T1E08 000:472.581 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 000:472.627 - 0.046ms returns 0 +T1E08 000:472.665 JLINK_WriteReg(R14, 0x20000001) +T1E08 000:472.703 - 0.037ms returns 0 +T1E08 000:472.745 JLINK_WriteReg(R15 (PC), 0x20000054) +T1E08 000:472.787 - 0.045ms returns 0 +T1E08 000:472.837 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 000:472.878 - 0.040ms returns 0 +T1E08 000:472.920 JLINK_WriteReg(MSP, 0x20001000) +T1E08 000:472.962 - 0.041ms returns 0 +T1E08 000:473.003 JLINK_WriteReg(PSP, 0x20001000) +T1E08 000:473.042 - 0.039ms returns 0 +T1E08 000:473.084 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 000:473.124 - 0.040ms returns 0 +T1E08 000:473.166 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 000:473.215 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 000:474.075 - 0.908ms returns 0x00000001 +T1E08 000:474.142 JLINK_Go() +T1E08 000:474.186 CPU_WriteMem(2 bytes @ 0x20000000) +T1E08 000:475.102 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:475.982 CPU_WriteMem(4 bytes @ 0xE0002008) +T1E08 000:476.114 CPU_WriteMem(4 bytes @ 0xE000200C) +T1E08 000:476.205 CPU_WriteMem(4 bytes @ 0xE0002010) +T1E08 000:476.295 CPU_WriteMem(4 bytes @ 0xE0002014) +T1E08 000:476.395 CPU_WriteMem(4 bytes @ 0xE0002018) +T1E08 000:476.485 CPU_WriteMem(4 bytes @ 0xE000201C) +T1E08 000:478.221 CPU_WriteMem(4 bytes @ 0xE0001004) +T1E08 000:486.462 Memory map 'after startup completion point' is active +T1E08 000:486.592 - 12.449ms +T1E08 000:486.637 JLINK_IsHalted() +T1E08 000:489.530 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 000:490.522 - 3.884ms returns TRUE +T1E08 000:490.631 JLINK_ReadReg(R15 (PC)) +T1E08 000:490.700 - 0.069ms returns 0x20000000 +T1E08 000:490.792 JLINK_ClrBPEx(BPHandle = 0x00000001) +T1E08 000:490.857 - 0.065ms returns 0x00 +T1E08 000:490.923 JLINK_ReadReg(R0) +T1E08 000:490.986 - 0.063ms returns 0x00000000 +T1E08 000:491.471 JLINK_HasError() +T1E08 000:491.530 JLINK_WriteReg(R0, 0x08000000) +T1E08 000:491.570 - 0.040ms returns 0 +T1E08 000:491.609 JLINK_WriteReg(R1, 0x00004000) +T1E08 000:491.648 - 0.039ms returns 0 +T1E08 000:491.688 JLINK_WriteReg(R2, 0x000000FF) +T1E08 000:491.726 - 0.038ms returns 0 +T1E08 000:491.765 JLINK_WriteReg(R3, 0x00000000) +T1E08 000:491.802 - 0.037ms returns 0 +T1E08 000:491.841 JLINK_WriteReg(R4, 0x00000000) +T1E08 000:491.886 - 0.045ms returns 0 +T1E08 000:491.925 JLINK_WriteReg(R5, 0x00000000) +T1E08 000:491.963 - 0.037ms returns 0 +T1E08 000:492.002 JLINK_WriteReg(R6, 0x00000000) +T1E08 000:492.040 - 0.037ms returns 0 +T1E08 000:492.078 JLINK_WriteReg(R7, 0x00000000) +T1E08 000:492.116 - 0.037ms returns 0 +T1E08 000:492.155 JLINK_WriteReg(R8, 0x00000000) +T1E08 000:492.192 - 0.038ms returns 0 +T1E08 000:492.236 JLINK_WriteReg(R9, 0x20000180) +T1E08 000:492.274 - 0.037ms returns 0 +T1E08 000:492.313 JLINK_WriteReg(R10, 0x00000000) +T1E08 000:492.351 - 0.038ms returns 0 +T1E08 000:492.389 JLINK_WriteReg(R11, 0x00000000) +T1E08 000:492.427 - 0.038ms returns 0 +T1E08 000:492.466 JLINK_WriteReg(R12, 0x00000000) +T1E08 000:492.504 - 0.037ms returns 0 +T1E08 000:492.542 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 000:492.580 - 0.038ms returns 0 +T1E08 000:492.618 JLINK_WriteReg(R14, 0x20000001) +T1E08 000:492.656 - 0.037ms returns 0 +T1E08 000:492.695 JLINK_WriteReg(R15 (PC), 0x20000020) +T1E08 000:492.732 - 0.037ms returns 0 +T1E08 000:492.883 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 000:492.925 - 0.042ms returns 0 +T1E08 000:492.964 JLINK_WriteReg(MSP, 0x20001000) +T1E08 000:493.002 - 0.038ms returns 0 +T1E08 000:493.040 JLINK_WriteReg(PSP, 0x20001000) +T1E08 000:493.078 - 0.037ms returns 0 +T1E08 000:493.117 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 000:493.154 - 0.037ms returns 0 +T1E08 000:493.194 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 000:493.243 - 0.049ms returns 0x00000002 +T1E08 000:493.282 JLINK_Go() +T1E08 000:493.328 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:497.095 - 3.812ms +T1E08 000:497.211 JLINK_IsHalted() +T1E08 000:500.254 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 000:501.273 - 4.061ms returns TRUE +T1E08 000:501.520 JLINK_ReadReg(R15 (PC)) +T1E08 000:501.688 - 0.165ms returns 0x20000000 +T1E08 000:501.821 JLINK_ClrBPEx(BPHandle = 0x00000002) +T1E08 000:501.935 - 0.114ms returns 0x00 +T1E08 000:502.057 JLINK_ReadReg(R0) +T1E08 000:502.171 - 0.114ms returns 0x00000001 +T1E08 000:502.255 JLINK_HasError() +T1E08 000:502.294 JLINK_WriteReg(R0, 0x08000000) +T1E08 000:502.334 - 0.039ms returns 0 +T1E08 000:502.374 JLINK_WriteReg(R1, 0x00004000) +T1E08 000:502.412 - 0.037ms returns 0 +T1E08 000:502.453 JLINK_WriteReg(R2, 0x000000FF) +T1E08 000:502.499 - 0.045ms returns 0 +T1E08 000:502.540 JLINK_WriteReg(R3, 0x00000000) +T1E08 000:502.579 - 0.038ms returns 0 +T1E08 000:502.620 JLINK_WriteReg(R4, 0x00000000) +T1E08 000:502.659 - 0.039ms returns 0 +T1E08 000:502.699 JLINK_WriteReg(R5, 0x00000000) +T1E08 000:502.737 - 0.037ms returns 0 +T1E08 000:502.779 JLINK_WriteReg(R6, 0x00000000) +T1E08 000:502.817 - 0.038ms returns 0 +T1E08 000:502.860 JLINK_WriteReg(R7, 0x00000000) +T1E08 000:502.898 - 0.038ms returns 0 +T1E08 000:502.939 JLINK_WriteReg(R8, 0x00000000) +T1E08 000:502.977 - 0.037ms returns 0 +T1E08 000:503.025 JLINK_WriteReg(R9, 0x20000180) +T1E08 000:503.066 - 0.040ms returns 0 +T1E08 000:503.109 JLINK_WriteReg(R10, 0x00000000) +T1E08 000:503.149 - 0.040ms returns 0 +T1E08 000:503.192 JLINK_WriteReg(R11, 0x00000000) +T1E08 000:503.233 - 0.040ms returns 0 +T1E08 000:503.276 JLINK_WriteReg(R12, 0x00000000) +T1E08 000:503.323 - 0.043ms returns 0 +T1E08 000:503.368 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 000:503.408 - 0.040ms returns 0 +T1E08 000:503.452 JLINK_WriteReg(R14, 0x20000001) +T1E08 000:503.492 - 0.040ms returns 0 +T1E08 000:503.535 JLINK_WriteReg(R15 (PC), 0x200000C0) +T1E08 000:503.576 - 0.040ms returns 0 +T1E08 000:503.619 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 000:503.659 - 0.040ms returns 0 +T1E08 000:503.702 JLINK_WriteReg(MSP, 0x20001000) +T1E08 000:503.743 - 0.040ms returns 0 +T1E08 000:503.785 JLINK_WriteReg(PSP, 0x20001000) +T1E08 000:503.825 - 0.039ms returns 0 +T1E08 000:503.868 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 000:503.908 - 0.040ms returns 0 +T1E08 000:503.952 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 000:503.993 - 0.041ms returns 0x00000003 +T1E08 000:504.035 JLINK_Go() +T1E08 000:504.083 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:507.718 - 3.682ms +T1E08 000:507.828 JLINK_IsHalted() +T1E08 000:508.753 - 0.924ms returns FALSE +T1E08 000:508.851 JLINK_HasError() +T1E08 000:523.832 JLINK_IsHalted() +T1E08 000:524.857 - 1.024ms returns FALSE +T1E08 000:524.982 JLINK_HasError() +T1E08 000:526.320 JLINK_IsHalted() +T1E08 000:527.275 - 0.954ms returns FALSE +T1E08 000:527.442 JLINK_HasError() +T1E08 000:529.343 JLINK_IsHalted() +T1E08 000:530.202 - 0.858ms returns FALSE +T1E08 000:530.305 JLINK_HasError() +T1E08 000:532.524 JLINK_IsHalted() +T1E08 000:533.660 - 1.135ms returns FALSE +T1E08 000:533.815 JLINK_HasError() +T1E08 000:536.013 JLINK_IsHalted() +T1E08 000:537.210 - 1.196ms returns FALSE +T1E08 000:537.326 JLINK_HasError() +T1E08 000:539.414 JLINK_IsHalted() +T1E08 000:540.618 - 1.203ms returns FALSE +T1E08 000:540.798 JLINK_HasError() +T1E08 000:542.380 JLINK_IsHalted() +T1E08 000:543.342 - 0.960ms returns FALSE +T1E08 000:543.605 JLINK_HasError() +T1E08 000:545.020 JLINK_IsHalted() +T1E08 000:545.901 - 0.880ms returns FALSE +T1E08 000:546.009 JLINK_HasError() +T1E08 000:547.373 JLINK_IsHalted() +T1E08 000:548.145 - 0.770ms returns FALSE +T1E08 000:548.193 JLINK_HasError() +T1E08 000:549.567 JLINK_IsHalted() +T1E08 000:550.535 - 0.968ms returns FALSE +T1E08 000:550.640 JLINK_HasError() +T1E08 000:551.946 JLINK_IsHalted() +T1E08 000:552.817 - 0.870ms returns FALSE +T1E08 000:552.980 JLINK_HasError() +T1E08 000:554.985 JLINK_IsHalted() +T1E08 000:555.928 - 0.943ms returns FALSE +T1E08 000:556.039 JLINK_HasError() +T1E08 000:557.358 JLINK_IsHalted() +T1E08 000:558.285 - 0.926ms returns FALSE +T1E08 000:558.388 JLINK_HasError() +T1E08 000:559.864 JLINK_IsHalted() +T1E08 000:560.783 - 0.918ms returns FALSE +T1E08 000:560.894 JLINK_HasError() +T1E08 000:562.122 JLINK_IsHalted() +T1E08 000:562.884 - 0.762ms returns FALSE +T1E08 000:562.932 JLINK_HasError() +T1E08 000:564.325 JLINK_IsHalted() +T1E08 000:565.371 - 1.045ms returns FALSE +T1E08 000:565.531 JLINK_HasError() +T1E08 000:568.560 JLINK_IsHalted() +T1E08 000:569.457 - 0.896ms returns FALSE +T1E08 000:569.571 JLINK_HasError() +T1E08 000:571.536 JLINK_IsHalted() +T1E08 000:572.452 - 0.914ms returns FALSE +T1E08 000:572.619 JLINK_HasError() +T1E08 000:574.568 JLINK_IsHalted() +T1E08 000:575.465 - 0.895ms returns FALSE +T1E08 000:575.622 JLINK_HasError() +T1E08 000:576.929 JLINK_IsHalted() +T1E08 000:577.898 - 0.968ms returns FALSE +T1E08 000:578.010 JLINK_HasError() +T1E08 000:579.300 JLINK_IsHalted() +T1E08 000:580.160 - 0.859ms returns FALSE +T1E08 000:580.269 JLINK_HasError() +T1E08 000:581.953 JLINK_IsHalted() +T1E08 000:582.891 - 0.937ms returns FALSE +T1E08 000:582.974 JLINK_HasError() +T1E08 000:584.292 JLINK_IsHalted() +T1E08 000:585.191 - 0.899ms returns FALSE +T1E08 000:585.271 JLINK_HasError() +T1E08 000:586.596 JLINK_IsHalted() +T1E08 000:587.403 - 0.806ms returns FALSE +T1E08 000:587.504 JLINK_HasError() +T1E08 000:588.773 JLINK_IsHalted() +T1E08 000:589.509 - 0.736ms returns FALSE +T1E08 000:589.556 JLINK_HasError() +T1E08 000:590.961 JLINK_IsHalted() +T1E08 000:591.918 - 0.956ms returns FALSE +T1E08 000:592.027 JLINK_HasError() +T1E08 000:593.352 JLINK_IsHalted() +T1E08 000:594.320 - 0.966ms returns FALSE +T1E08 000:594.469 JLINK_HasError() +T1E08 000:596.368 JLINK_IsHalted() +T1E08 000:597.307 - 0.938ms returns FALSE +T1E08 000:597.424 JLINK_HasError() +T1E08 000:598.701 JLINK_IsHalted() +T1E08 000:599.527 - 0.825ms returns FALSE +T1E08 000:599.597 JLINK_HasError() +T1E08 000:600.864 JLINK_IsHalted() +T1E08 000:601.717 - 0.853ms returns FALSE +T1E08 000:601.938 JLINK_HasError() +T1E08 000:604.049 JLINK_IsHalted() +T1E08 000:604.916 - 0.866ms returns FALSE +T1E08 000:605.016 JLINK_HasError() +T1E08 000:606.319 JLINK_IsHalted() +T1E08 000:607.171 - 0.851ms returns FALSE +T1E08 000:607.260 JLINK_HasError() +T1E08 000:608.577 JLINK_IsHalted() +T1E08 000:609.420 - 0.842ms returns FALSE +T1E08 000:609.507 JLINK_HasError() +T1E08 000:610.828 JLINK_IsHalted() +T1E08 000:611.733 - 0.904ms returns FALSE +T1E08 000:611.819 JLINK_HasError() +T1E08 000:613.944 JLINK_IsHalted() +T1E08 000:614.855 - 0.910ms returns FALSE +T1E08 000:614.965 JLINK_HasError() +T1E08 000:616.287 JLINK_IsHalted() +T1E08 000:617.139 - 0.852ms returns FALSE +T1E08 000:617.196 JLINK_HasError() +T1E08 000:618.560 JLINK_IsHalted() +T1E08 000:619.484 - 0.924ms returns FALSE +T1E08 000:619.641 JLINK_HasError() +T1E08 000:622.093 JLINK_IsHalted() +T1E08 000:623.039 - 0.946ms returns FALSE +T1E08 000:623.149 JLINK_HasError() +T1E08 000:624.474 JLINK_IsHalted() +T1E08 000:625.421 - 0.946ms returns FALSE +T1E08 000:625.531 JLINK_HasError() +T1E08 000:626.848 JLINK_IsHalted() +T1E08 000:627.723 - 0.874ms returns FALSE +T1E08 000:627.880 JLINK_HasError() +T1E08 000:630.090 JLINK_IsHalted() +T1E08 000:630.998 - 0.907ms returns FALSE +T1E08 000:631.153 JLINK_HasError() +T1E08 000:632.422 JLINK_IsHalted() +T1E08 000:633.349 - 0.925ms returns FALSE +T1E08 000:633.506 JLINK_HasError() +T1E08 000:635.129 JLINK_IsHalted() +T1E08 000:636.161 - 1.030ms returns FALSE +T1E08 000:636.330 JLINK_HasError() +T1E08 000:638.101 JLINK_IsHalted() +T1E08 000:638.915 - 0.814ms returns FALSE +T1E08 000:639.046 JLINK_HasError() +T1E08 000:640.333 JLINK_IsHalted() +T1E08 000:641.276 - 0.943ms returns FALSE +T1E08 000:641.356 JLINK_HasError() +T1E08 000:642.670 JLINK_IsHalted() +T1E08 000:643.578 - 0.907ms returns FALSE +T1E08 000:643.643 JLINK_HasError() +T1E08 000:645.027 JLINK_IsHalted() +T1E08 000:645.855 - 0.827ms returns FALSE +T1E08 000:645.940 JLINK_HasError() +T1E08 000:647.826 JLINK_IsHalted() +T1E08 000:648.709 - 0.883ms returns FALSE +T1E08 000:648.769 JLINK_HasError() +T1E08 000:650.419 JLINK_IsHalted() +T1E08 000:651.135 - 0.715ms returns FALSE +T1E08 000:651.193 JLINK_HasError() +T1E08 000:653.274 JLINK_IsHalted() +T1E08 000:654.149 - 0.875ms returns FALSE +T1E08 000:654.208 JLINK_HasError() +T1E08 000:656.354 JLINK_IsHalted() +T1E08 000:657.271 - 0.916ms returns FALSE +T1E08 000:657.345 JLINK_HasError() +T1E08 000:658.878 JLINK_IsHalted() +T1E08 000:659.716 - 0.836ms returns FALSE +T1E08 000:659.776 JLINK_HasError() +T1E08 000:666.284 JLINK_IsHalted() +T1E08 000:667.171 - 0.886ms returns FALSE +T1E08 000:667.262 JLINK_HasError() +T1E08 000:669.671 JLINK_IsHalted() +T1E08 000:670.583 - 0.911ms returns FALSE +T1E08 000:670.669 JLINK_HasError() +T1E08 000:672.326 JLINK_IsHalted() +T1E08 000:673.142 - 0.815ms returns FALSE +T1E08 000:673.190 JLINK_HasError() +T1E08 000:674.328 JLINK_IsHalted() +T1E08 000:675.182 - 0.852ms returns FALSE +T1E08 000:675.256 JLINK_HasError() +T1E08 000:677.100 JLINK_IsHalted() +T1E08 000:677.895 - 0.794ms returns FALSE +T1E08 000:677.979 JLINK_HasError() +T1E08 000:679.973 JLINK_IsHalted() +T1E08 000:680.786 - 0.812ms returns FALSE +T1E08 000:680.894 JLINK_HasError() +T1E08 000:682.912 JLINK_IsHalted() +T1E08 000:683.635 - 0.722ms returns FALSE +T1E08 000:683.692 JLINK_HasError() +T1E08 000:686.545 JLINK_IsHalted() +T1E08 000:687.407 - 0.862ms returns FALSE +T1E08 000:687.469 JLINK_HasError() +T1E08 000:689.332 JLINK_IsHalted() +T1E08 000:690.155 - 0.822ms returns FALSE +T1E08 000:690.203 JLINK_HasError() +T1E08 000:691.371 JLINK_IsHalted() +T1E08 000:692.181 - 0.809ms returns FALSE +T1E08 000:692.253 JLINK_HasError() +T1E08 000:695.335 JLINK_IsHalted() +T1E08 000:696.282 - 0.947ms returns FALSE +T1E08 000:696.350 JLINK_HasError() +T1E08 000:697.668 JLINK_IsHalted() +T1E08 000:698.531 - 0.863ms returns FALSE +T1E08 000:698.598 JLINK_HasError() +T1E08 000:701.693 JLINK_IsHalted() +T1E08 000:702.535 - 0.842ms returns FALSE +T1E08 000:702.615 JLINK_HasError() +T1E08 000:703.906 JLINK_IsHalted() +T1E08 000:704.647 - 0.740ms returns FALSE +T1E08 000:704.692 JLINK_HasError() +T1E08 000:705.904 JLINK_IsHalted() +T1E08 000:706.718 - 0.813ms returns FALSE +T1E08 000:706.781 JLINK_HasError() +T1E08 000:708.047 JLINK_IsHalted() +T1E08 000:708.928 - 0.880ms returns FALSE +T1E08 000:709.047 JLINK_HasError() +T1E08 000:711.057 JLINK_IsHalted() +T1E08 000:711.950 - 0.892ms returns FALSE +T1E08 000:712.083 JLINK_HasError() +T1E08 000:714.058 JLINK_IsHalted() +T1E08 000:715.018 - 0.958ms returns FALSE +T1E08 000:715.178 JLINK_HasError() +T1E08 000:717.061 JLINK_IsHalted() +T1E08 000:717.990 - 0.928ms returns FALSE +T1E08 000:718.123 JLINK_HasError() +T1E08 000:720.028 JLINK_IsHalted() +T1E08 000:720.755 - 0.727ms returns FALSE +T1E08 000:720.802 JLINK_HasError() +T1E08 000:722.021 JLINK_IsHalted() +T1E08 000:722.861 - 0.840ms returns FALSE +T1E08 000:722.970 JLINK_HasError() +T1E08 000:725.027 JLINK_IsHalted() +T1E08 000:725.783 - 0.756ms returns FALSE +T1E08 000:725.859 JLINK_HasError() +T1E08 000:727.038 JLINK_IsHalted() +T1E08 000:727.908 - 0.870ms returns FALSE +T1E08 000:727.973 JLINK_HasError() +T1E08 000:730.030 JLINK_IsHalted() +T1E08 000:730.775 - 0.744ms returns FALSE +T1E08 000:730.864 JLINK_HasError() +T1E08 000:732.537 JLINK_IsHalted() +T1E08 000:733.297 - 0.760ms returns FALSE +T1E08 000:733.359 JLINK_HasError() +T1E08 000:735.346 JLINK_IsHalted() +T1E08 000:736.164 - 0.817ms returns FALSE +T1E08 000:736.246 JLINK_HasError() +T1E08 000:738.062 JLINK_IsHalted() +T1E08 000:738.897 - 0.834ms returns FALSE +T1E08 000:739.039 JLINK_HasError() +T1E08 000:743.451 JLINK_IsHalted() +T1E08 000:744.279 - 0.827ms returns FALSE +T1E08 000:744.344 JLINK_HasError() +T1E08 000:745.452 JLINK_IsHalted() +T1E08 000:746.276 - 0.823ms returns FALSE +T1E08 000:746.324 JLINK_HasError() +T1E08 000:749.448 JLINK_IsHalted() +T1E08 000:750.287 - 0.838ms returns FALSE +T1E08 000:750.369 JLINK_HasError() +T1E08 000:751.759 JLINK_IsHalted() +T1E08 000:752.524 - 0.764ms returns FALSE +T1E08 000:752.587 JLINK_HasError() +T1E08 000:754.131 JLINK_IsHalted() +T1E08 000:754.923 - 0.791ms returns FALSE +T1E08 000:755.051 JLINK_HasError() +T1E08 000:758.011 JLINK_IsHalted() +T1E08 000:758.787 - 0.775ms returns FALSE +T1E08 000:758.873 JLINK_HasError() +T1E08 000:760.328 JLINK_IsHalted() +T1E08 000:761.152 - 0.822ms returns FALSE +T1E08 000:761.229 JLINK_HasError() +T1E08 000:762.339 JLINK_IsHalted() +T1E08 000:763.202 - 0.863ms returns FALSE +T1E08 000:763.256 JLINK_HasError() +T1E08 000:764.503 JLINK_IsHalted() +T1E08 000:765.282 - 0.778ms returns FALSE +T1E08 000:765.376 JLINK_HasError() +T1E08 000:767.349 JLINK_IsHalted() +T1E08 000:768.152 - 0.802ms returns FALSE +T1E08 000:768.227 JLINK_HasError() +T1E08 000:769.902 JLINK_IsHalted() +T1E08 000:770.789 - 0.886ms returns FALSE +T1E08 000:770.853 JLINK_HasError() +T1E08 000:773.382 JLINK_IsHalted() +T1E08 000:774.153 - 0.771ms returns FALSE +T1E08 000:774.203 JLINK_HasError() +T1E08 000:775.386 JLINK_IsHalted() +T1E08 000:776.146 - 0.760ms returns FALSE +T1E08 000:776.192 JLINK_HasError() +T1E08 000:777.380 JLINK_IsHalted() +T1E08 000:778.147 - 0.766ms returns FALSE +T1E08 000:778.204 JLINK_HasError() +T1E08 000:779.375 JLINK_IsHalted() +T1E08 000:780.136 - 0.761ms returns FALSE +T1E08 000:780.181 JLINK_HasError() +T1E08 000:781.883 JLINK_IsHalted() +T1E08 000:782.636 - 0.753ms returns FALSE +T1E08 000:782.683 JLINK_HasError() +T1E08 000:783.884 JLINK_IsHalted() +T1E08 000:784.722 - 0.837ms returns FALSE +T1E08 000:784.767 JLINK_HasError() +T1E08 000:785.886 JLINK_IsHalted() +T1E08 000:786.660 - 0.773ms returns FALSE +T1E08 000:786.727 JLINK_HasError() +T1E08 000:788.057 JLINK_IsHalted() +T1E08 000:788.961 - 0.904ms returns FALSE +T1E08 000:789.012 JLINK_HasError() +T1E08 000:791.150 JLINK_IsHalted() +T1E08 000:791.949 - 0.798ms returns FALSE +T1E08 000:792.020 JLINK_HasError() +T1E08 000:793.138 JLINK_IsHalted() +T1E08 000:793.912 - 0.773ms returns FALSE +T1E08 000:794.001 JLINK_HasError() +T1E08 000:795.162 JLINK_IsHalted() +T1E08 000:796.135 - 0.972ms returns FALSE +T1E08 000:796.292 JLINK_HasError() +T1E08 000:798.398 JLINK_IsHalted() +T1E08 000:799.396 - 0.996ms returns FALSE +T1E08 000:799.554 JLINK_HasError() +T1E08 000:801.396 JLINK_IsHalted() +T1E08 000:802.294 - 0.897ms returns FALSE +T1E08 000:802.359 JLINK_HasError() +T1E08 000:803.661 JLINK_IsHalted() +T1E08 000:804.470 - 0.808ms returns FALSE +T1E08 000:804.581 JLINK_HasError() +T1E08 000:806.637 JLINK_IsHalted() +T1E08 000:807.521 - 0.882ms returns FALSE +T1E08 000:807.678 JLINK_HasError() +T1E08 000:809.659 JLINK_IsHalted() +T1E08 000:810.593 - 0.932ms returns FALSE +T1E08 000:810.752 JLINK_HasError() +T1E08 000:812.661 JLINK_IsHalted() +T1E08 000:813.646 - 0.983ms returns FALSE +T1E08 000:813.803 JLINK_HasError() +T1E08 000:815.664 JLINK_IsHalted() +T1E08 000:816.575 - 0.909ms returns FALSE +T1E08 000:816.778 JLINK_HasError() +T1E08 000:818.643 JLINK_IsHalted() +T1E08 000:819.522 - 0.878ms returns FALSE +T1E08 000:819.581 JLINK_HasError() +T1E08 000:821.621 JLINK_IsHalted() +T1E08 000:822.390 - 0.768ms returns FALSE +T1E08 000:822.436 JLINK_HasError() +T1E08 000:823.622 JLINK_IsHalted() +T1E08 000:824.397 - 0.774ms returns FALSE +T1E08 000:824.441 JLINK_HasError() +T1E08 000:825.624 JLINK_IsHalted() +T1E08 000:826.398 - 0.773ms returns FALSE +T1E08 000:826.441 JLINK_HasError() +T1E08 000:828.130 JLINK_IsHalted() +T1E08 000:828.908 - 0.778ms returns FALSE +T1E08 000:828.954 JLINK_HasError() +T1E08 000:830.128 JLINK_IsHalted() +T1E08 000:830.898 - 0.769ms returns FALSE +T1E08 000:830.972 JLINK_HasError() +T1E08 000:832.135 JLINK_IsHalted() +T1E08 000:833.037 - 0.900ms returns FALSE +T1E08 000:833.309 JLINK_HasError() +T1E08 000:834.641 JLINK_IsHalted() +T1E08 000:835.428 - 0.786ms returns FALSE +T1E08 000:835.507 JLINK_HasError() +T1E08 000:839.865 JLINK_IsHalted() +T1E08 000:840.737 - 0.871ms returns FALSE +T1E08 000:840.809 JLINK_HasError() +T1E08 000:842.219 JLINK_IsHalted() +T1E08 000:843.042 - 0.822ms returns FALSE +T1E08 000:843.116 JLINK_HasError() +T1E08 000:846.746 JLINK_IsHalted() +T1E08 000:847.556 - 0.809ms returns FALSE +T1E08 000:847.672 JLINK_HasError() +T1E08 000:849.785 JLINK_IsHalted() +T1E08 000:850.782 - 0.997ms returns FALSE +T1E08 000:850.851 JLINK_HasError() +T1E08 000:852.761 JLINK_IsHalted() +T1E08 000:855.678 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 000:856.559 - 3.797ms returns TRUE +T1E08 000:856.632 JLINK_ReadReg(R15 (PC)) +T1E08 000:856.677 - 0.045ms returns 0x20000000 +T1E08 000:856.717 JLINK_ClrBPEx(BPHandle = 0x00000003) +T1E08 000:856.758 - 0.041ms returns 0x00 +T1E08 000:856.799 JLINK_ReadReg(R0) +T1E08 000:856.838 - 0.039ms returns 0x00000000 +T1E08 000:857.718 JLINK_HasError() +T1E08 000:857.805 JLINK_WriteReg(R0, 0x08004000) +T1E08 000:857.864 - 0.058ms returns 0 +T1E08 000:857.925 JLINK_WriteReg(R1, 0x00004000) +T1E08 000:857.981 - 0.056ms returns 0 +T1E08 000:858.040 JLINK_WriteReg(R2, 0x000000FF) +T1E08 000:858.097 - 0.056ms returns 0 +T1E08 000:858.153 JLINK_WriteReg(R3, 0x00000000) +T1E08 000:858.211 - 0.057ms returns 0 +T1E08 000:858.274 JLINK_WriteReg(R4, 0x00000000) +T1E08 000:858.330 - 0.056ms returns 0 +T1E08 000:858.387 JLINK_WriteReg(R5, 0x00000000) +T1E08 000:858.443 - 0.055ms returns 0 +T1E08 000:858.501 JLINK_WriteReg(R6, 0x00000000) +T1E08 000:858.557 - 0.056ms returns 0 +T1E08 000:858.615 JLINK_WriteReg(R7, 0x00000000) +T1E08 000:858.671 - 0.056ms returns 0 +T1E08 000:858.729 JLINK_WriteReg(R8, 0x00000000) +T1E08 000:858.784 - 0.056ms returns 0 +T1E08 000:858.841 JLINK_WriteReg(R9, 0x20000180) +T1E08 000:858.897 - 0.055ms returns 0 +T1E08 000:858.963 JLINK_WriteReg(R10, 0x00000000) +T1E08 000:859.020 - 0.057ms returns 0 +T1E08 000:859.077 JLINK_WriteReg(R11, 0x00000000) +T1E08 000:859.133 - 0.056ms returns 0 +T1E08 000:859.190 JLINK_WriteReg(R12, 0x00000000) +T1E08 000:859.246 - 0.056ms returns 0 +T1E08 000:859.301 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 000:859.356 - 0.055ms returns 0 +T1E08 000:859.411 JLINK_WriteReg(R14, 0x20000001) +T1E08 000:859.467 - 0.055ms returns 0 +T1E08 000:859.523 JLINK_WriteReg(R15 (PC), 0x20000020) +T1E08 000:859.580 - 0.057ms returns 0 +T1E08 000:859.638 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 000:859.693 - 0.055ms returns 0 +T1E08 000:859.750 JLINK_WriteReg(MSP, 0x20001000) +T1E08 000:859.805 - 0.055ms returns 0 +T1E08 000:859.861 JLINK_WriteReg(PSP, 0x20001000) +T1E08 000:859.916 - 0.055ms returns 0 +T1E08 000:859.972 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 000:860.027 - 0.055ms returns 0 +T1E08 000:860.085 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 000:860.140 - 0.056ms returns 0x00000004 +T1E08 000:860.192 JLINK_Go() +T1E08 000:860.257 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:863.965 - 3.772ms +T1E08 000:864.057 JLINK_IsHalted() +T1E08 000:867.247 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 000:868.170 - 4.112ms returns TRUE +T1E08 000:868.230 JLINK_ReadReg(R15 (PC)) +T1E08 000:868.271 - 0.041ms returns 0x20000000 +T1E08 000:868.313 JLINK_ClrBPEx(BPHandle = 0x00000004) +T1E08 000:868.352 - 0.038ms returns 0x00 +T1E08 000:868.393 JLINK_ReadReg(R0) +T1E08 000:868.432 - 0.038ms returns 0x00000001 +T1E08 000:868.474 JLINK_HasError() +T1E08 000:868.521 JLINK_WriteReg(R0, 0x08004000) +T1E08 000:868.574 - 0.052ms returns 0 +T1E08 000:868.616 JLINK_WriteReg(R1, 0x00004000) +T1E08 000:868.654 - 0.037ms returns 0 +T1E08 000:868.697 JLINK_WriteReg(R2, 0x000000FF) +T1E08 000:868.735 - 0.038ms returns 0 +T1E08 000:868.777 JLINK_WriteReg(R3, 0x00000000) +T1E08 000:868.815 - 0.038ms returns 0 +T1E08 000:868.856 JLINK_WriteReg(R4, 0x00000000) +T1E08 000:868.895 - 0.038ms returns 0 +T1E08 000:868.936 JLINK_WriteReg(R5, 0x00000000) +T1E08 000:868.974 - 0.037ms returns 0 +T1E08 000:869.015 JLINK_WriteReg(R6, 0x00000000) +T1E08 000:869.063 - 0.047ms returns 0 +T1E08 000:869.108 JLINK_WriteReg(R7, 0x00000000) +T1E08 000:869.146 - 0.038ms returns 0 +T1E08 000:869.188 JLINK_WriteReg(R8, 0x00000000) +T1E08 000:869.226 - 0.038ms returns 0 +T1E08 000:869.267 JLINK_WriteReg(R9, 0x20000180) +T1E08 000:869.306 - 0.038ms returns 0 +T1E08 000:869.346 JLINK_WriteReg(R10, 0x00000000) +T1E08 000:869.384 - 0.037ms returns 0 +T1E08 000:869.425 JLINK_WriteReg(R11, 0x00000000) +T1E08 000:869.463 - 0.037ms returns 0 +T1E08 000:869.504 JLINK_WriteReg(R12, 0x00000000) +T1E08 000:869.542 - 0.038ms returns 0 +T1E08 000:869.585 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 000:869.624 - 0.039ms returns 0 +T1E08 000:869.665 JLINK_WriteReg(R14, 0x20000001) +T1E08 000:869.704 - 0.038ms returns 0 +T1E08 000:869.745 JLINK_WriteReg(R15 (PC), 0x200000C0) +T1E08 000:869.783 - 0.038ms returns 0 +T1E08 000:869.825 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 000:869.865 - 0.040ms returns 0 +T1E08 000:869.907 JLINK_WriteReg(MSP, 0x20001000) +T1E08 000:869.952 - 0.045ms returns 0 +T1E08 000:870.006 JLINK_WriteReg(PSP, 0x20001000) +T1E08 000:870.061 - 0.056ms returns 0 +T1E08 000:870.124 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 000:870.181 - 0.057ms returns 0 +T1E08 000:870.241 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 000:870.298 - 0.057ms returns 0x00000005 +T1E08 000:870.353 JLINK_Go() +T1E08 000:870.418 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 000:874.006 - 3.652ms +T1E08 000:874.199 JLINK_IsHalted() +T1E08 000:875.057 - 0.858ms returns FALSE +T1E08 000:875.136 JLINK_HasError() +T1E08 000:879.398 JLINK_IsHalted() +T1E08 000:880.181 - 0.783ms returns FALSE +T1E08 000:880.270 JLINK_HasError() +T1E08 000:887.809 JLINK_IsHalted() +T1E08 000:888.776 - 0.966ms returns FALSE +T1E08 000:888.888 JLINK_HasError() +T1E08 000:890.789 JLINK_IsHalted() +T1E08 000:891.619 - 0.828ms returns FALSE +T1E08 000:891.733 JLINK_HasError() +T1E08 000:894.777 JLINK_IsHalted() +T1E08 000:895.669 - 0.891ms returns FALSE +T1E08 000:895.725 JLINK_HasError() +T1E08 000:897.144 JLINK_IsHalted() +T1E08 000:898.059 - 0.914ms returns FALSE +T1E08 000:898.157 JLINK_HasError() +T1E08 000:901.936 JLINK_IsHalted() +T1E08 000:902.900 - 0.964ms returns FALSE +T1E08 000:903.018 JLINK_HasError() +T1E08 000:904.848 JLINK_IsHalted() +T1E08 000:905.675 - 0.826ms returns FALSE +T1E08 000:905.782 JLINK_HasError() +T1E08 000:909.077 JLINK_IsHalted() +T1E08 000:910.006 - 0.928ms returns FALSE +T1E08 000:910.118 JLINK_HasError() +T1E08 000:911.664 JLINK_IsHalted() +T1E08 000:912.742 - 1.078ms returns FALSE +T1E08 000:912.806 JLINK_HasError() +T1E08 000:914.504 JLINK_IsHalted() +T1E08 000:915.293 - 0.788ms returns FALSE +T1E08 000:915.344 JLINK_HasError() +T1E08 000:918.722 JLINK_IsHalted() +T1E08 000:919.656 - 0.932ms returns FALSE +T1E08 000:919.783 JLINK_HasError() +T1E08 000:921.199 JLINK_IsHalted() +T1E08 000:922.058 - 0.858ms returns FALSE +T1E08 000:922.142 JLINK_HasError() +T1E08 000:925.187 JLINK_IsHalted() +T1E08 000:925.928 - 0.740ms returns FALSE +T1E08 000:926.051 JLINK_HasError() +T1E08 000:927.297 JLINK_IsHalted() +T1E08 000:928.175 - 0.877ms returns FALSE +T1E08 000:928.261 JLINK_HasError() +T1E08 000:929.792 JLINK_IsHalted() +T1E08 000:930.759 - 0.966ms returns FALSE +T1E08 000:930.847 JLINK_HasError() +T1E08 000:934.676 JLINK_IsHalted() +T1E08 000:935.574 - 0.897ms returns FALSE +T1E08 000:935.724 JLINK_HasError() +T1E08 000:937.684 JLINK_IsHalted() +T1E08 000:938.572 - 0.887ms returns FALSE +T1E08 000:938.639 JLINK_HasError() +T1E08 000:941.663 JLINK_IsHalted() +T1E08 000:942.602 - 0.938ms returns FALSE +T1E08 000:942.688 JLINK_HasError() +T1E08 000:943.949 JLINK_IsHalted() +T1E08 000:945.020 - 1.070ms returns FALSE +T1E08 000:945.088 JLINK_HasError() +T1E08 000:947.160 JLINK_IsHalted() +T1E08 000:947.925 - 0.764ms returns FALSE +T1E08 000:948.004 JLINK_HasError() +T1E08 000:951.283 JLINK_IsHalted() +T1E08 000:952.204 - 0.921ms returns FALSE +T1E08 000:952.315 JLINK_HasError() +T1E08 000:953.646 JLINK_IsHalted() +T1E08 000:954.569 - 0.922ms returns FALSE +T1E08 000:954.679 JLINK_HasError() +T1E08 000:956.270 JLINK_IsHalted() +T1E08 000:957.187 - 0.916ms returns FALSE +T1E08 000:957.245 JLINK_HasError() +T1E08 000:958.337 JLINK_IsHalted() +T1E08 000:959.187 - 0.849ms returns FALSE +T1E08 000:959.297 JLINK_HasError() +T1E08 000:960.576 JLINK_IsHalted() +T1E08 000:961.437 - 0.861ms returns FALSE +T1E08 000:961.540 JLINK_HasError() +T1E08 000:962.790 JLINK_IsHalted() +T1E08 000:963.546 - 0.755ms returns FALSE +T1E08 000:963.612 JLINK_HasError() +T1E08 000:964.927 JLINK_IsHalted() +T1E08 000:965.799 - 0.872ms returns FALSE +T1E08 000:965.880 JLINK_HasError() +T1E08 000:967.192 JLINK_IsHalted() +T1E08 000:968.173 - 0.981ms returns FALSE +T1E08 000:968.253 JLINK_HasError() +T1E08 000:969.558 JLINK_IsHalted() +T1E08 000:970.421 - 0.862ms returns FALSE +T1E08 000:970.479 JLINK_HasError() +T1E08 000:971.807 JLINK_IsHalted() +T1E08 000:972.743 - 0.936ms returns FALSE +T1E08 000:972.824 JLINK_HasError() +T1E08 000:974.095 JLINK_IsHalted() +T1E08 000:974.939 - 0.843ms returns FALSE +T1E08 000:975.028 JLINK_HasError() +T1E08 000:976.361 JLINK_IsHalted() +T1E08 000:977.223 - 0.860ms returns FALSE +T1E08 000:977.386 JLINK_HasError() +T1E08 000:978.590 JLINK_IsHalted() +T1E08 000:979.420 - 0.830ms returns FALSE +T1E08 000:979.475 JLINK_HasError() +T1E08 000:981.337 JLINK_IsHalted() +T1E08 000:982.250 - 0.912ms returns FALSE +T1E08 000:982.364 JLINK_HasError() +T1E08 000:983.643 JLINK_IsHalted() +T1E08 000:984.424 - 0.781ms returns FALSE +T1E08 000:984.512 JLINK_HasError() +T1E08 000:985.829 JLINK_IsHalted() +T1E08 000:986.744 - 0.914ms returns FALSE +T1E08 000:986.849 JLINK_HasError() +T1E08 000:988.119 JLINK_IsHalted() +T1E08 000:988.912 - 0.792ms returns FALSE +T1E08 000:988.972 JLINK_HasError() +T1E08 000:990.288 JLINK_IsHalted() +T1E08 000:991.234 - 0.944ms returns FALSE +T1E08 000:991.343 JLINK_HasError() +T1E08 000:992.667 JLINK_IsHalted() +T1E08 000:994.033 - 1.365ms returns FALSE +T1E08 000:994.190 JLINK_HasError() +T1E08 000:995.677 JLINK_IsHalted() +T1E08 000:996.573 - 0.894ms returns FALSE +T1E08 000:996.683 JLINK_HasError() +T1E08 000:997.995 JLINK_IsHalted() +T1E08 000:998.925 - 0.929ms returns FALSE +T1E08 000:999.006 JLINK_HasError() +T1E08 001:000.291 JLINK_IsHalted() +T1E08 001:001.041 - 0.750ms returns FALSE +T1E08 001:001.106 JLINK_HasError() +T1E08 001:002.479 JLINK_IsHalted() +T1E08 001:003.447 - 0.968ms returns FALSE +T1E08 001:003.548 JLINK_HasError() +T1E08 001:006.214 JLINK_IsHalted() +T1E08 001:007.074 - 0.859ms returns FALSE +T1E08 001:007.185 JLINK_HasError() +T1E08 001:008.489 JLINK_IsHalted() +T1E08 001:009.448 - 0.958ms returns FALSE +T1E08 001:009.558 JLINK_HasError() +T1E08 001:010.876 JLINK_IsHalted() +T1E08 001:011.796 - 0.920ms returns FALSE +T1E08 001:011.857 JLINK_HasError() +T1E08 001:013.226 JLINK_IsHalted() +T1E08 001:014.194 - 0.968ms returns FALSE +T1E08 001:014.278 JLINK_HasError() +T1E08 001:016.248 JLINK_IsHalted() +T1E08 001:017.343 - 1.093ms returns FALSE +T1E08 001:017.500 JLINK_HasError() +T1E08 001:019.577 JLINK_IsHalted() +T1E08 001:020.423 - 0.846ms returns FALSE +T1E08 001:020.528 JLINK_HasError() +T1E08 001:021.784 JLINK_IsHalted() +T1E08 001:022.549 - 0.764ms returns FALSE +T1E08 001:022.610 JLINK_HasError() +T1E08 001:023.722 JLINK_IsHalted() +T1E08 001:024.605 - 0.882ms returns FALSE +T1E08 001:024.708 JLINK_HasError() +T1E08 001:025.994 JLINK_IsHalted() +T1E08 001:026.949 - 0.954ms returns FALSE +T1E08 001:027.056 JLINK_HasError() +T1E08 001:028.735 JLINK_IsHalted() +T1E08 001:029.578 - 0.842ms returns FALSE +T1E08 001:029.699 JLINK_HasError() +T1E08 001:030.956 JLINK_IsHalted() +T1E08 001:031.804 - 0.847ms returns FALSE +T1E08 001:031.886 JLINK_HasError() +T1E08 001:033.547 JLINK_IsHalted() +T1E08 001:034.483 - 0.934ms returns FALSE +T1E08 001:034.655 JLINK_HasError() +T1E08 001:035.902 JLINK_IsHalted() +T1E08 001:036.750 - 0.847ms returns FALSE +T1E08 001:036.862 JLINK_HasError() +T1E08 001:038.091 JLINK_IsHalted() +T1E08 001:039.078 - 0.986ms returns FALSE +T1E08 001:039.187 JLINK_HasError() +T1E08 001:040.486 JLINK_IsHalted() +T1E08 001:041.305 - 0.818ms returns FALSE +T1E08 001:041.401 JLINK_HasError() +T1E08 001:042.710 JLINK_IsHalted() +T1E08 001:043.660 - 0.948ms returns FALSE +T1E08 001:043.818 JLINK_HasError() +T1E08 001:045.023 JLINK_IsHalted() +T1E08 001:045.933 - 0.909ms returns FALSE +T1E08 001:046.037 JLINK_HasError() +T1E08 001:047.332 JLINK_IsHalted() +T1E08 001:048.182 - 0.849ms returns FALSE +T1E08 001:048.265 JLINK_HasError() +T1E08 001:049.596 JLINK_IsHalted() +T1E08 001:050.611 - 1.015ms returns FALSE +T1E08 001:050.679 JLINK_HasError() +T1E08 001:052.876 JLINK_IsHalted() +T1E08 001:053.751 - 0.873ms returns FALSE +T1E08 001:053.862 JLINK_HasError() +T1E08 001:056.017 JLINK_IsHalted() +T1E08 001:057.045 - 1.027ms returns FALSE +T1E08 001:057.155 JLINK_HasError() +T1E08 001:059.074 JLINK_IsHalted() +T1E08 001:059.935 - 0.860ms returns FALSE +T1E08 001:060.047 JLINK_HasError() +T1E08 001:061.340 JLINK_IsHalted() +T1E08 001:062.194 - 0.853ms returns FALSE +T1E08 001:062.306 JLINK_HasError() +T1E08 001:063.645 JLINK_IsHalted() +T1E08 001:064.664 - 1.018ms returns FALSE +T1E08 001:064.822 JLINK_HasError() +T1E08 001:066.022 JLINK_IsHalted() +T1E08 001:066.843 - 0.820ms returns FALSE +T1E08 001:066.957 JLINK_HasError() +T1E08 001:070.088 JLINK_IsHalted() +T1E08 001:070.989 - 0.901ms returns FALSE +T1E08 001:071.102 JLINK_HasError() +T1E08 001:072.460 JLINK_IsHalted() +T1E08 001:073.325 - 0.865ms returns FALSE +T1E08 001:073.435 JLINK_HasError() +T1E08 001:074.694 JLINK_IsHalted() +T1E08 001:075.554 - 0.859ms returns FALSE +T1E08 001:075.619 JLINK_HasError() +T1E08 001:077.346 JLINK_IsHalted() +T1E08 001:078.421 - 1.075ms returns FALSE +T1E08 001:078.482 JLINK_HasError() +T1E08 001:079.870 JLINK_IsHalted() +T1E08 001:080.917 - 1.047ms returns FALSE +T1E08 001:081.027 JLINK_HasError() +T1E08 001:082.344 JLINK_IsHalted() +T1E08 001:083.171 - 0.827ms returns FALSE +T1E08 001:083.238 JLINK_HasError() +T1E08 001:084.609 JLINK_IsHalted() +T1E08 001:085.530 - 0.920ms returns FALSE +T1E08 001:085.688 JLINK_HasError() +T1E08 001:087.607 JLINK_IsHalted() +T1E08 001:088.722 - 1.114ms returns FALSE +T1E08 001:088.857 JLINK_HasError() +T1E08 001:090.079 JLINK_IsHalted() +T1E08 001:090.987 - 0.907ms returns FALSE +T1E08 001:091.051 JLINK_HasError() +T1E08 001:092.384 JLINK_IsHalted() +T1E08 001:093.202 - 0.817ms returns FALSE +T1E08 001:093.278 JLINK_HasError() +T1E08 001:094.796 JLINK_IsHalted() +T1E08 001:095.608 - 0.810ms returns FALSE +T1E08 001:095.683 JLINK_HasError() +T1E08 001:097.480 JLINK_IsHalted() +T1E08 001:098.340 - 0.859ms returns FALSE +T1E08 001:098.424 JLINK_HasError() +T1E08 001:105.456 JLINK_IsHalted() +T1E08 001:106.349 - 0.893ms returns FALSE +T1E08 001:106.505 JLINK_HasError() +T1E08 001:107.740 JLINK_IsHalted() +T1E08 001:108.612 - 0.871ms returns FALSE +T1E08 001:108.689 JLINK_HasError() +T1E08 001:110.063 JLINK_IsHalted() +T1E08 001:110.987 - 0.923ms returns FALSE +T1E08 001:111.064 JLINK_HasError() +T1E08 001:113.099 JLINK_IsHalted() +T1E08 001:113.984 - 0.883ms returns FALSE +T1E08 001:114.067 JLINK_HasError() +T1E08 001:116.128 JLINK_IsHalted() +T1E08 001:116.969 - 0.841ms returns FALSE +T1E08 001:117.056 JLINK_HasError() +T1E08 001:123.035 JLINK_IsHalted() +T1E08 001:123.957 - 0.920ms returns FALSE +T1E08 001:124.044 JLINK_HasError() +T1E08 001:125.530 JLINK_IsHalted() +T1E08 001:126.316 - 0.784ms returns FALSE +T1E08 001:126.396 JLINK_HasError() +T1E08 001:127.915 JLINK_IsHalted() +T1E08 001:128.761 - 0.845ms returns FALSE +T1E08 001:128.847 JLINK_HasError() +T1E08 001:130.259 JLINK_IsHalted() +T1E08 001:131.072 - 0.812ms returns FALSE +T1E08 001:131.154 JLINK_HasError() +T1E08 001:132.420 JLINK_IsHalted() +T1E08 001:133.192 - 0.771ms returns FALSE +T1E08 001:133.291 JLINK_HasError() +T1E08 001:134.423 JLINK_IsHalted() +T1E08 001:135.303 - 0.880ms returns FALSE +T1E08 001:135.385 JLINK_HasError() +T1E08 001:136.936 JLINK_IsHalted() +T1E08 001:137.777 - 0.840ms returns FALSE +T1E08 001:137.846 JLINK_HasError() +T1E08 001:138.957 JLINK_IsHalted() +T1E08 001:139.807 - 0.849ms returns FALSE +T1E08 001:139.871 JLINK_HasError() +T1E08 001:141.200 JLINK_IsHalted() +T1E08 001:142.064 - 0.864ms returns FALSE +T1E08 001:142.149 JLINK_HasError() +T1E08 001:143.471 JLINK_IsHalted() +T1E08 001:144.314 - 0.842ms returns FALSE +T1E08 001:144.401 JLINK_HasError() +T1E08 001:145.678 JLINK_IsHalted() +T1E08 001:146.447 - 0.767ms returns FALSE +T1E08 001:146.512 JLINK_HasError() +T1E08 001:147.661 JLINK_IsHalted() +T1E08 001:148.569 - 0.906ms returns FALSE +T1E08 001:148.689 JLINK_HasError() +T1E08 001:150.697 JLINK_IsHalted() +T1E08 001:151.604 - 0.907ms returns FALSE +T1E08 001:151.719 JLINK_HasError() +T1E08 001:153.036 JLINK_IsHalted() +T1E08 001:154.031 - 0.995ms returns FALSE +T1E08 001:154.101 JLINK_HasError() +T1E08 001:156.055 JLINK_IsHalted() +T1E08 001:157.041 - 0.984ms returns FALSE +T1E08 001:157.198 JLINK_HasError() +T1E08 001:158.496 JLINK_IsHalted() +T1E08 001:159.546 - 1.048ms returns FALSE +T1E08 001:159.724 JLINK_HasError() +T1E08 001:161.430 JLINK_IsHalted() +T1E08 001:162.185 - 0.754ms returns FALSE +T1E08 001:162.300 JLINK_HasError() +T1E08 001:163.643 JLINK_IsHalted() +T1E08 001:164.586 - 0.942ms returns FALSE +T1E08 001:164.712 JLINK_HasError() +T1E08 001:165.996 JLINK_IsHalted() +T1E08 001:166.821 - 0.824ms returns FALSE +T1E08 001:166.901 JLINK_HasError() +T1E08 001:168.232 JLINK_IsHalted() +T1E08 001:169.147 - 0.914ms returns FALSE +T1E08 001:169.293 JLINK_HasError() +T1E08 001:170.771 JLINK_IsHalted() +T1E08 001:171.758 - 0.986ms returns FALSE +T1E08 001:171.870 JLINK_HasError() +T1E08 001:173.161 JLINK_IsHalted() +T1E08 001:174.115 - 0.954ms returns FALSE +T1E08 001:174.227 JLINK_HasError() +T1E08 001:175.502 JLINK_IsHalted() +T1E08 001:176.331 - 0.828ms returns FALSE +T1E08 001:176.573 JLINK_HasError() +T1E08 001:178.474 JLINK_IsHalted() +T1E08 001:179.337 - 0.862ms returns FALSE +T1E08 001:179.437 JLINK_HasError() +T1E08 001:181.472 JLINK_IsHalted() +T1E08 001:182.378 - 0.905ms returns FALSE +T1E08 001:182.490 JLINK_HasError() +T1E08 001:184.479 JLINK_IsHalted() +T1E08 001:185.449 - 0.968ms returns FALSE +T1E08 001:185.621 JLINK_HasError() +T1E08 001:186.891 JLINK_IsHalted() +T1E08 001:187.766 - 0.875ms returns FALSE +T1E08 001:187.879 JLINK_HasError() +T1E08 001:189.131 JLINK_IsHalted() +T1E08 001:189.999 - 0.866ms returns FALSE +T1E08 001:190.159 JLINK_HasError() +T1E08 001:192.157 JLINK_IsHalted() +T1E08 001:193.234 - 1.076ms returns FALSE +T1E08 001:211.805 JLINK_HasError() +T1E08 001:215.993 JLINK_IsHalted() +T1E08 001:216.970 - 0.976ms returns FALSE +T1E08 001:217.085 JLINK_HasError() +T1E08 001:218.334 JLINK_IsHalted() +T1E08 001:221.460 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 001:222.352 - 4.017ms returns TRUE +T1E08 001:222.465 JLINK_ReadReg(R15 (PC)) +T1E08 001:222.540 - 0.075ms returns 0x20000000 +T1E08 001:222.609 JLINK_ClrBPEx(BPHandle = 0x00000005) +T1E08 001:222.677 - 0.068ms returns 0x00 +T1E08 001:222.747 JLINK_ReadReg(R0) +T1E08 001:222.829 - 0.082ms returns 0x00000000 +T1E08 001:223.613 JLINK_HasError() +T1E08 001:223.675 JLINK_WriteReg(R0, 0x08008000) +T1E08 001:223.717 - 0.041ms returns 0 +T1E08 001:223.831 JLINK_WriteReg(R1, 0x00004000) +T1E08 001:223.883 - 0.053ms returns 0 +T1E08 001:223.926 JLINK_WriteReg(R2, 0x000000FF) +T1E08 001:223.967 - 0.040ms returns 0 +T1E08 001:224.008 JLINK_WriteReg(R3, 0x00000000) +T1E08 001:224.047 - 0.039ms returns 0 +T1E08 001:224.088 JLINK_WriteReg(R4, 0x00000000) +T1E08 001:224.127 - 0.039ms returns 0 +T1E08 001:224.167 JLINK_WriteReg(R5, 0x00000000) +T1E08 001:224.206 - 0.039ms returns 0 +T1E08 001:224.246 JLINK_WriteReg(R6, 0x00000000) +T1E08 001:224.286 - 0.039ms returns 0 +T1E08 001:224.325 JLINK_WriteReg(R7, 0x00000000) +T1E08 001:224.363 - 0.038ms returns 0 +T1E08 001:224.404 JLINK_WriteReg(R8, 0x00000000) +T1E08 001:224.443 - 0.039ms returns 0 +T1E08 001:224.487 JLINK_WriteReg(R9, 0x20000180) +T1E08 001:224.526 - 0.039ms returns 0 +T1E08 001:224.566 JLINK_WriteReg(R10, 0x00000000) +T1E08 001:224.605 - 0.039ms returns 0 +T1E08 001:224.645 JLINK_WriteReg(R11, 0x00000000) +T1E08 001:224.685 - 0.039ms returns 0 +T1E08 001:224.724 JLINK_WriteReg(R12, 0x00000000) +T1E08 001:224.769 - 0.045ms returns 0 +T1E08 001:224.820 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 001:224.859 - 0.039ms returns 0 +T1E08 001:224.899 JLINK_WriteReg(R14, 0x20000001) +T1E08 001:224.938 - 0.038ms returns 0 +T1E08 001:224.977 JLINK_WriteReg(R15 (PC), 0x20000020) +T1E08 001:225.016 - 0.039ms returns 0 +T1E08 001:225.057 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 001:225.096 - 0.039ms returns 0 +T1E08 001:225.136 JLINK_WriteReg(MSP, 0x20001000) +T1E08 001:225.174 - 0.038ms returns 0 +T1E08 001:225.213 JLINK_WriteReg(PSP, 0x20001000) +T1E08 001:225.252 - 0.038ms returns 0 +T1E08 001:225.291 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 001:225.330 - 0.038ms returns 0 +T1E08 001:225.370 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 001:225.411 - 0.040ms returns 0x00000006 +T1E08 001:225.451 JLINK_Go() +T1E08 001:225.500 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 001:229.495 - 4.043ms +T1E08 001:229.656 JLINK_IsHalted() +T1E08 001:232.708 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 001:233.586 - 3.929ms returns TRUE +T1E08 001:233.701 JLINK_ReadReg(R15 (PC)) +T1E08 001:233.773 - 0.072ms returns 0x20000000 +T1E08 001:233.842 JLINK_ClrBPEx(BPHandle = 0x00000006) +T1E08 001:233.911 - 0.068ms returns 0x00 +T1E08 001:234.003 JLINK_ReadReg(R0) +T1E08 001:234.071 - 0.068ms returns 0x00000001 +T1E08 001:234.128 JLINK_HasError() +T1E08 001:234.170 JLINK_WriteReg(R0, 0x08008000) +T1E08 001:234.211 - 0.041ms returns 0 +T1E08 001:234.252 JLINK_WriteReg(R1, 0x00004000) +T1E08 001:234.291 - 0.039ms returns 0 +T1E08 001:234.331 JLINK_WriteReg(R2, 0x000000FF) +T1E08 001:234.369 - 0.038ms returns 0 +T1E08 001:234.409 JLINK_WriteReg(R3, 0x00000000) +T1E08 001:234.455 - 0.046ms returns 0 +T1E08 001:234.495 JLINK_WriteReg(R4, 0x00000000) +T1E08 001:234.534 - 0.038ms returns 0 +T1E08 001:234.574 JLINK_WriteReg(R5, 0x00000000) +T1E08 001:234.613 - 0.038ms returns 0 +T1E08 001:234.653 JLINK_WriteReg(R6, 0x00000000) +T1E08 001:234.692 - 0.039ms returns 0 +T1E08 001:234.732 JLINK_WriteReg(R7, 0x00000000) +T1E08 001:234.771 - 0.039ms returns 0 +T1E08 001:234.811 JLINK_WriteReg(R8, 0x00000000) +T1E08 001:234.850 - 0.039ms returns 0 +T1E08 001:234.890 JLINK_WriteReg(R9, 0x20000180) +T1E08 001:234.929 - 0.039ms returns 0 +T1E08 001:234.969 JLINK_WriteReg(R10, 0x00000000) +T1E08 001:235.008 - 0.039ms returns 0 +T1E08 001:235.048 JLINK_WriteReg(R11, 0x00000000) +T1E08 001:235.090 - 0.042ms returns 0 +T1E08 001:235.130 JLINK_WriteReg(R12, 0x00000000) +T1E08 001:235.252 - 0.122ms returns 0 +T1E08 001:235.294 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 001:235.335 - 0.041ms returns 0 +T1E08 001:235.375 JLINK_WriteReg(R14, 0x20000001) +T1E08 001:235.414 - 0.039ms returns 0 +T1E08 001:235.462 JLINK_WriteReg(R15 (PC), 0x200000C0) +T1E08 001:235.502 - 0.039ms returns 0 +T1E08 001:235.542 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 001:235.581 - 0.039ms returns 0 +T1E08 001:235.621 JLINK_WriteReg(MSP, 0x20001000) +T1E08 001:235.660 - 0.038ms returns 0 +T1E08 001:235.700 JLINK_WriteReg(PSP, 0x20001000) +T1E08 001:235.738 - 0.038ms returns 0 +T1E08 001:235.778 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 001:235.817 - 0.038ms returns 0 +T1E08 001:235.857 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 001:235.896 - 0.039ms returns 0x00000007 +T1E08 001:235.937 JLINK_Go() +T1E08 001:235.983 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 001:240.016 - 4.078ms +T1E08 001:240.116 JLINK_IsHalted() +T1E08 001:240.986 - 0.870ms returns FALSE +T1E08 001:241.110 JLINK_HasError() +T1E08 001:242.675 JLINK_IsHalted() +T1E08 001:243.638 - 0.963ms returns FALSE +T1E08 001:243.813 JLINK_HasError() +T1E08 001:246.014 JLINK_IsHalted() +T1E08 001:246.992 - 0.977ms returns FALSE +T1E08 001:247.109 JLINK_HasError() +T1E08 001:248.440 JLINK_IsHalted() +T1E08 001:249.392 - 0.950ms returns FALSE +T1E08 001:249.557 JLINK_HasError() +T1E08 001:251.747 JLINK_IsHalted() +T1E08 001:252.861 - 1.112ms returns FALSE +T1E08 001:253.030 JLINK_HasError() +T1E08 001:254.742 JLINK_IsHalted() +T1E08 001:255.662 - 0.919ms returns FALSE +T1E08 001:255.759 JLINK_HasError() +T1E08 001:257.125 JLINK_IsHalted() +T1E08 001:258.108 - 0.983ms returns FALSE +T1E08 001:258.186 JLINK_HasError() +T1E08 001:259.573 JLINK_IsHalted() +T1E08 001:260.554 - 0.980ms returns FALSE +T1E08 001:260.697 JLINK_HasError() +T1E08 001:262.565 JLINK_IsHalted() +T1E08 001:263.324 - 0.758ms returns FALSE +T1E08 001:263.383 JLINK_HasError() +T1E08 001:264.568 JLINK_IsHalted() +T1E08 001:265.459 - 0.890ms returns FALSE +T1E08 001:265.537 JLINK_HasError() +T1E08 001:267.574 JLINK_IsHalted() +T1E08 001:268.473 - 0.898ms returns FALSE +T1E08 001:268.586 JLINK_HasError() +T1E08 001:270.595 JLINK_IsHalted() +T1E08 001:271.467 - 0.871ms returns FALSE +T1E08 001:271.541 JLINK_HasError() +T1E08 001:276.040 JLINK_IsHalted() +T1E08 001:276.999 - 0.958ms returns FALSE +T1E08 001:277.119 JLINK_HasError() +T1E08 001:278.587 JLINK_IsHalted() +T1E08 001:279.465 - 0.877ms returns FALSE +T1E08 001:279.578 JLINK_HasError() +T1E08 001:281.099 JLINK_IsHalted() +T1E08 001:281.962 - 0.861ms returns FALSE +T1E08 001:282.100 JLINK_HasError() +T1E08 001:283.709 JLINK_IsHalted() +T1E08 001:284.582 - 0.873ms returns FALSE +T1E08 001:284.670 JLINK_HasError() +T1E08 001:287.038 JLINK_IsHalted() +T1E08 001:287.945 - 0.906ms returns FALSE +T1E08 001:288.010 JLINK_HasError() +T1E08 001:289.502 JLINK_IsHalted() +T1E08 001:290.331 - 0.829ms returns FALSE +T1E08 001:290.389 JLINK_HasError() +T1E08 001:291.666 JLINK_IsHalted() +T1E08 001:292.453 - 0.786ms returns FALSE +T1E08 001:292.617 JLINK_HasError() +T1E08 001:294.672 JLINK_IsHalted() +T1E08 001:295.478 - 0.804ms returns FALSE +T1E08 001:295.564 JLINK_HasError() +T1E08 001:297.012 JLINK_IsHalted() +T1E08 001:297.896 - 0.883ms returns FALSE +T1E08 001:297.954 JLINK_HasError() +T1E08 001:299.269 JLINK_IsHalted() +T1E08 001:300.061 - 0.791ms returns FALSE +T1E08 001:300.117 JLINK_HasError() +T1E08 001:301.994 JLINK_IsHalted() +T1E08 001:302.836 - 0.840ms returns FALSE +T1E08 001:302.941 JLINK_HasError() +T1E08 001:304.923 JLINK_IsHalted() +T1E08 001:305.831 - 0.906ms returns FALSE +T1E08 001:305.911 JLINK_HasError() +T1E08 001:307.954 JLINK_IsHalted() +T1E08 001:308.768 - 0.813ms returns FALSE +T1E08 001:308.881 JLINK_HasError() +T1E08 001:310.124 JLINK_IsHalted() +T1E08 001:311.136 - 1.011ms returns FALSE +T1E08 001:311.193 JLINK_HasError() +T1E08 001:312.457 JLINK_IsHalted() +T1E08 001:313.251 - 0.794ms returns FALSE +T1E08 001:313.333 JLINK_HasError() +T1E08 001:314.619 JLINK_IsHalted() +T1E08 001:315.529 - 0.905ms returns FALSE +T1E08 001:316.088 JLINK_HasError() +T1E08 001:317.929 JLINK_IsHalted() +T1E08 001:318.814 - 0.883ms returns FALSE +T1E08 001:318.905 JLINK_HasError() +T1E08 001:323.133 JLINK_IsHalted() +T1E08 001:324.002 - 0.869ms returns FALSE +T1E08 001:324.114 JLINK_HasError() +T1E08 001:325.376 JLINK_IsHalted() +T1E08 001:326.313 - 0.936ms returns FALSE +T1E08 001:326.378 JLINK_HasError() +T1E08 001:328.291 JLINK_IsHalted() +T1E08 001:329.223 - 0.930ms returns FALSE +T1E08 001:329.340 JLINK_HasError() +T1E08 001:330.959 JLINK_IsHalted() +T1E08 001:331.766 - 0.806ms returns FALSE +T1E08 001:331.878 JLINK_HasError() +T1E08 001:334.502 JLINK_IsHalted() +T1E08 001:335.347 - 0.844ms returns FALSE +T1E08 001:335.441 JLINK_HasError() +T1E08 001:337.502 JLINK_IsHalted() +T1E08 001:338.379 - 0.876ms returns FALSE +T1E08 001:338.491 JLINK_HasError() +T1E08 001:339.824 JLINK_IsHalted() +T1E08 001:340.817 - 0.991ms returns FALSE +T1E08 001:340.953 JLINK_HasError() +T1E08 001:342.857 JLINK_IsHalted() +T1E08 001:343.781 - 0.923ms returns FALSE +T1E08 001:343.854 JLINK_HasError() +T1E08 001:345.124 JLINK_IsHalted() +T1E08 001:345.944 - 0.819ms returns FALSE +T1E08 001:346.057 JLINK_HasError() +T1E08 001:347.348 JLINK_IsHalted() +T1E08 001:348.313 - 0.963ms returns FALSE +T1E08 001:348.476 JLINK_HasError() +T1E08 001:350.579 JLINK_IsHalted() +T1E08 001:351.337 - 0.757ms returns FALSE +T1E08 001:351.397 JLINK_HasError() +T1E08 001:352.632 JLINK_IsHalted() +T1E08 001:353.466 - 0.833ms returns FALSE +T1E08 001:353.536 JLINK_HasError() +T1E08 001:354.853 JLINK_IsHalted() +T1E08 001:355.776 - 0.923ms returns FALSE +T1E08 001:355.858 JLINK_HasError() +T1E08 001:357.918 JLINK_IsHalted() +T1E08 001:358.770 - 0.850ms returns FALSE +T1E08 001:358.881 JLINK_HasError() +T1E08 001:360.513 JLINK_IsHalted() +T1E08 001:361.325 - 0.811ms returns FALSE +T1E08 001:361.380 JLINK_HasError() +T1E08 001:363.194 JLINK_IsHalted() +T1E08 001:363.978 - 0.782ms returns FALSE +T1E08 001:364.091 JLINK_HasError() +T1E08 001:365.275 JLINK_IsHalted() +T1E08 001:366.119 - 0.843ms returns FALSE +T1E08 001:366.213 JLINK_HasError() +T1E08 001:367.939 JLINK_IsHalted() +T1E08 001:368.934 - 0.994ms returns FALSE +T1E08 001:369.030 JLINK_HasError() +T1E08 001:370.606 JLINK_IsHalted() +T1E08 001:371.454 - 0.846ms returns FALSE +T1E08 001:371.521 JLINK_HasError() +T1E08 001:373.163 JLINK_IsHalted() +T1E08 001:373.968 - 0.804ms returns FALSE +T1E08 001:374.027 JLINK_HasError() +T1E08 001:375.470 JLINK_IsHalted() +T1E08 001:376.401 - 0.930ms returns FALSE +T1E08 001:376.455 JLINK_HasError() +T1E08 001:377.642 JLINK_IsHalted() +T1E08 001:378.459 - 0.816ms returns FALSE +T1E08 001:378.523 JLINK_HasError() +T1E08 001:380.282 JLINK_IsHalted() +T1E08 001:381.089 - 0.806ms returns FALSE +T1E08 001:381.220 JLINK_HasError() +T1E08 001:382.387 JLINK_IsHalted() +T1E08 001:383.224 - 0.837ms returns FALSE +T1E08 001:383.283 JLINK_HasError() +T1E08 001:384.901 JLINK_IsHalted() +T1E08 001:385.774 - 0.871ms returns FALSE +T1E08 001:385.882 JLINK_HasError() +T1E08 001:387.174 JLINK_IsHalted() +T1E08 001:388.080 - 0.905ms returns FALSE +T1E08 001:388.192 JLINK_HasError() +T1E08 001:389.461 JLINK_IsHalted() +T1E08 001:390.205 - 0.743ms returns FALSE +T1E08 001:390.288 JLINK_HasError() +T1E08 001:391.620 JLINK_IsHalted() +T1E08 001:392.470 - 0.848ms returns FALSE +T1E08 001:392.585 JLINK_HasError() +T1E08 001:394.305 JLINK_IsHalted() +T1E08 001:395.258 - 0.953ms returns FALSE +T1E08 001:395.366 JLINK_HasError() +T1E08 001:396.640 JLINK_IsHalted() +T1E08 001:397.511 - 0.870ms returns FALSE +T1E08 001:397.632 JLINK_HasError() +T1E08 001:405.652 JLINK_IsHalted() +T1E08 001:406.607 - 0.954ms returns FALSE +T1E08 001:406.688 JLINK_HasError() +T1E08 001:408.351 JLINK_IsHalted() +T1E08 001:409.089 - 0.737ms returns FALSE +T1E08 001:409.147 JLINK_HasError() +T1E08 001:410.544 JLINK_IsHalted() +T1E08 001:411.345 - 0.800ms returns FALSE +T1E08 001:411.449 JLINK_HasError() +T1E08 001:413.058 JLINK_IsHalted() +T1E08 001:413.983 - 0.924ms returns FALSE +T1E08 001:414.153 JLINK_HasError() +T1E08 001:415.360 JLINK_IsHalted() +T1E08 001:416.237 - 0.876ms returns FALSE +T1E08 001:416.304 JLINK_HasError() +T1E08 001:417.573 JLINK_IsHalted() +T1E08 001:418.369 - 0.795ms returns FALSE +T1E08 001:418.468 JLINK_HasError() +T1E08 001:419.858 JLINK_IsHalted() +T1E08 001:420.764 - 0.905ms returns FALSE +T1E08 001:420.845 JLINK_HasError() +T1E08 001:423.383 JLINK_IsHalted() +T1E08 001:424.220 - 0.836ms returns FALSE +T1E08 001:424.314 JLINK_HasError() +T1E08 001:425.847 JLINK_IsHalted() +T1E08 001:426.623 - 0.774ms returns FALSE +T1E08 001:426.720 JLINK_HasError() +T1E08 001:428.262 JLINK_IsHalted() +T1E08 001:429.175 - 0.912ms returns FALSE +T1E08 001:429.313 JLINK_HasError() +T1E08 001:433.929 JLINK_IsHalted() +T1E08 001:434.919 - 0.989ms returns FALSE +T1E08 001:434.992 JLINK_HasError() +T1E08 001:436.462 JLINK_IsHalted() +T1E08 001:437.362 - 0.898ms returns FALSE +T1E08 001:437.485 JLINK_HasError() +T1E08 001:439.445 JLINK_IsHalted() +T1E08 001:440.376 - 0.930ms returns FALSE +T1E08 001:440.454 JLINK_HasError() +T1E08 001:442.326 JLINK_IsHalted() +T1E08 001:443.301 - 0.973ms returns FALSE +T1E08 001:443.398 JLINK_HasError() +T1E08 001:444.744 JLINK_IsHalted() +T1E08 001:445.631 - 0.885ms returns FALSE +T1E08 001:445.704 JLINK_HasError() +T1E08 001:446.964 JLINK_IsHalted() +T1E08 001:447.923 - 0.959ms returns FALSE +T1E08 001:447.997 JLINK_HasError() +T1E08 001:450.385 JLINK_IsHalted() +T1E08 001:451.226 - 0.840ms returns FALSE +T1E08 001:451.284 JLINK_HasError() +T1E08 001:453.262 JLINK_IsHalted() +T1E08 001:454.082 - 0.819ms returns FALSE +T1E08 001:454.149 JLINK_HasError() +T1E08 001:456.197 JLINK_IsHalted() +T1E08 001:456.957 - 0.759ms returns FALSE +T1E08 001:457.200 JLINK_HasError() +T1E08 001:458.507 JLINK_IsHalted() +T1E08 001:459.349 - 0.841ms returns FALSE +T1E08 001:459.425 JLINK_HasError() +T1E08 001:461.247 JLINK_IsHalted() +T1E08 001:462.106 - 0.857ms returns FALSE +T1E08 001:462.163 JLINK_HasError() +T1E08 001:463.458 JLINK_IsHalted() +T1E08 001:464.215 - 0.756ms returns FALSE +T1E08 001:464.269 JLINK_HasError() +T1E08 001:465.639 JLINK_IsHalted() +T1E08 001:466.466 - 0.826ms returns FALSE +T1E08 001:466.518 JLINK_HasError() +T1E08 001:467.925 JLINK_IsHalted() +T1E08 001:468.817 - 0.891ms returns FALSE +T1E08 001:468.897 JLINK_HasError() +T1E08 001:470.335 JLINK_IsHalted() +T1E08 001:471.101 - 0.766ms returns FALSE +T1E08 001:471.150 JLINK_HasError() +T1E08 001:472.730 JLINK_IsHalted() +T1E08 001:473.575 - 0.844ms returns FALSE +T1E08 001:473.643 JLINK_HasError() +T1E08 001:474.957 JLINK_IsHalted() +T1E08 001:475.777 - 0.820ms returns FALSE +T1E08 001:475.854 JLINK_HasError() +T1E08 001:477.003 JLINK_IsHalted() +T1E08 001:477.917 - 0.913ms returns FALSE +T1E08 001:478.007 JLINK_HasError() +T1E08 001:480.108 JLINK_IsHalted() +T1E08 001:480.990 - 0.881ms returns FALSE +T1E08 001:481.050 JLINK_HasError() +T1E08 001:483.147 JLINK_IsHalted() +T1E08 001:483.956 - 0.807ms returns FALSE +T1E08 001:484.015 JLINK_HasError() +T1E08 001:485.852 JLINK_IsHalted() +T1E08 001:486.792 - 0.939ms returns FALSE +T1E08 001:486.859 JLINK_HasError() +T1E08 001:488.010 JLINK_IsHalted() +T1E08 001:488.838 - 0.827ms returns FALSE +T1E08 001:488.903 JLINK_HasError() +T1E08 001:490.006 JLINK_IsHalted() +T1E08 001:490.838 - 0.831ms returns FALSE +T1E08 001:490.884 JLINK_HasError() +T1E08 001:492.846 JLINK_IsHalted() +T1E08 001:493.609 - 0.761ms returns FALSE +T1E08 001:493.679 JLINK_HasError() +T1E08 001:495.596 JLINK_IsHalted() +T1E08 001:496.461 - 0.864ms returns FALSE +T1E08 001:496.569 JLINK_HasError() +T1E08 001:497.754 JLINK_IsHalted() +T1E08 001:498.601 - 0.846ms returns FALSE +T1E08 001:498.699 JLINK_HasError() +T1E08 001:500.239 JLINK_IsHalted() +T1E08 001:501.093 - 0.852ms returns FALSE +T1E08 001:501.161 JLINK_HasError() +T1E08 001:502.343 JLINK_IsHalted() +T1E08 001:503.089 - 0.745ms returns FALSE +T1E08 001:503.201 JLINK_HasError() +T1E08 001:504.618 JLINK_IsHalted() +T1E08 001:506.110 - 1.491ms returns FALSE +T1E08 001:506.177 JLINK_HasError() +T1E08 001:507.641 JLINK_IsHalted() +T1E08 001:508.452 - 0.810ms returns FALSE +T1E08 001:508.509 JLINK_HasError() +T1E08 001:510.837 JLINK_IsHalted() +T1E08 001:511.623 - 0.785ms returns FALSE +T1E08 001:511.715 JLINK_HasError() +T1E08 001:512.953 JLINK_IsHalted() +T1E08 001:513.910 - 0.956ms returns FALSE +T1E08 001:513.965 JLINK_HasError() +T1E08 001:515.212 JLINK_IsHalted() +T1E08 001:515.951 - 0.739ms returns FALSE +T1E08 001:516.063 JLINK_HasError() +T1E08 001:517.367 JLINK_IsHalted() +T1E08 001:518.208 - 0.840ms returns FALSE +T1E08 001:518.291 JLINK_HasError() +T1E08 001:519.569 JLINK_IsHalted() +T1E08 001:520.330 - 0.759ms returns FALSE +T1E08 001:520.442 JLINK_HasError() +T1E08 001:522.990 JLINK_IsHalted() +T1E08 001:523.932 - 0.941ms returns FALSE +T1E08 001:524.046 JLINK_HasError() +T1E08 001:525.434 JLINK_IsHalted() +T1E08 001:526.252 - 0.817ms returns FALSE +T1E08 001:526.326 JLINK_HasError() +T1E08 001:528.047 JLINK_IsHalted() +T1E08 001:528.833 - 0.785ms returns FALSE +T1E08 001:528.901 JLINK_HasError() +T1E08 001:530.290 JLINK_IsHalted() +T1E08 001:531.092 - 0.801ms returns FALSE +T1E08 001:531.186 JLINK_HasError() +T1E08 001:533.293 JLINK_IsHalted() +T1E08 001:534.084 - 0.790ms returns FALSE +T1E08 001:534.149 JLINK_HasError() +T1E08 001:535.666 JLINK_IsHalted() +T1E08 001:536.457 - 0.789ms returns FALSE +T1E08 001:536.562 JLINK_HasError() +T1E08 001:538.163 JLINK_IsHalted() +T1E08 001:539.096 - 0.932ms returns FALSE +T1E08 001:539.188 JLINK_HasError() +T1E08 001:542.196 JLINK_IsHalted() +T1E08 001:543.155 - 0.958ms returns FALSE +T1E08 001:543.325 JLINK_HasError() +T1E08 001:544.664 JLINK_IsHalted() +T1E08 001:545.471 - 0.806ms returns FALSE +T1E08 001:545.538 JLINK_HasError() +T1E08 001:547.409 JLINK_IsHalted() +T1E08 001:548.291 - 0.880ms returns FALSE +T1E08 001:548.356 JLINK_HasError() +T1E08 001:549.760 JLINK_IsHalted() +T1E08 001:550.619 - 0.857ms returns FALSE +T1E08 001:550.741 JLINK_HasError() +T1E08 001:552.010 JLINK_IsHalted() +T1E08 001:552.847 - 0.835ms returns FALSE +T1E08 001:552.904 JLINK_HasError() +T1E08 001:554.020 JLINK_IsHalted() +T1E08 001:554.839 - 0.818ms returns FALSE +T1E08 001:554.904 JLINK_HasError() +T1E08 001:556.018 JLINK_IsHalted() +T1E08 001:556.842 - 0.824ms returns FALSE +T1E08 001:556.908 JLINK_HasError() +T1E08 001:558.808 JLINK_IsHalted() +T1E08 001:559.655 - 0.846ms returns FALSE +T1E08 001:559.767 JLINK_HasError() +T1E08 001:561.115 JLINK_IsHalted() +T1E08 001:562.115 - 1.000ms returns FALSE +T1E08 001:562.177 JLINK_HasError() +T1E08 001:563.319 JLINK_IsHalted() +T1E08 001:564.229 - 0.909ms returns FALSE +T1E08 001:564.334 JLINK_HasError() +T1E08 001:566.063 JLINK_IsHalted() +T1E08 001:566.861 - 0.797ms returns FALSE +T1E08 001:566.927 JLINK_HasError() +T1E08 001:568.934 JLINK_IsHalted() +T1E08 001:569.821 - 0.884ms returns FALSE +T1E08 001:570.054 JLINK_HasError() +T1E08 001:571.367 JLINK_IsHalted() +T1E08 001:572.215 - 0.848ms returns FALSE +T1E08 001:572.273 JLINK_HasError() +T1E08 001:573.708 JLINK_IsHalted() +T1E08 001:574.600 - 0.891ms returns FALSE +T1E08 001:574.708 JLINK_HasError() +T1E08 001:576.111 JLINK_IsHalted() +T1E08 001:576.933 - 0.821ms returns FALSE +T1E08 001:577.020 JLINK_HasError() +T1E08 001:578.563 JLINK_IsHalted() +T1E08 001:579.342 - 0.778ms returns FALSE +T1E08 001:579.401 JLINK_HasError() +T1E08 001:581.197 JLINK_IsHalted() +T1E08 001:582.092 - 0.893ms returns FALSE +T1E08 001:582.185 JLINK_HasError() +T1E08 001:583.851 JLINK_IsHalted() +T1E08 001:586.726 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 001:587.599 - 3.747ms returns TRUE +T1E08 001:587.666 JLINK_ReadReg(R15 (PC)) +T1E08 001:587.710 - 0.044ms returns 0x20000000 +T1E08 001:587.754 JLINK_ClrBPEx(BPHandle = 0x00000007) +T1E08 001:587.794 - 0.040ms returns 0x00 +T1E08 001:587.835 JLINK_ReadReg(R0) +T1E08 001:587.874 - 0.038ms returns 0x00000000 +T1E08 001:589.558 JLINK_HasError() +T1E08 001:589.694 JLINK_WriteReg(R0, 0x0800C000) +T1E08 001:589.799 - 0.104ms returns 0 +T1E08 001:589.920 JLINK_WriteReg(R1, 0x00004000) +T1E08 001:590.004 - 0.084ms returns 0 +T1E08 001:590.092 JLINK_WriteReg(R2, 0x000000FF) +T1E08 001:590.159 - 0.068ms returns 0 +T1E08 001:590.229 JLINK_WriteReg(R3, 0x00000000) +T1E08 001:590.296 - 0.067ms returns 0 +T1E08 001:590.365 JLINK_WriteReg(R4, 0x00000000) +T1E08 001:590.431 - 0.066ms returns 0 +T1E08 001:590.499 JLINK_WriteReg(R5, 0x00000000) +T1E08 001:590.561 - 0.062ms returns 0 +T1E08 001:590.600 JLINK_WriteReg(R6, 0x00000000) +T1E08 001:590.639 - 0.038ms returns 0 +T1E08 001:590.677 JLINK_WriteReg(R7, 0x00000000) +T1E08 001:590.716 - 0.038ms returns 0 +T1E08 001:590.773 JLINK_WriteReg(R8, 0x00000000) +T1E08 001:590.850 - 0.077ms returns 0 +T1E08 001:590.913 JLINK_WriteReg(R9, 0x20000180) +T1E08 001:590.979 - 0.066ms returns 0 +T1E08 001:591.038 JLINK_WriteReg(R10, 0x00000000) +T1E08 001:591.095 - 0.056ms returns 0 +T1E08 001:591.160 JLINK_WriteReg(R11, 0x00000000) +T1E08 001:591.216 - 0.056ms returns 0 +T1E08 001:591.273 JLINK_WriteReg(R12, 0x00000000) +T1E08 001:591.332 - 0.059ms returns 0 +T1E08 001:591.391 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 001:591.447 - 0.056ms returns 0 +T1E08 001:591.503 JLINK_WriteReg(R14, 0x20000001) +T1E08 001:591.558 - 0.055ms returns 0 +T1E08 001:591.614 JLINK_WriteReg(R15 (PC), 0x20000020) +T1E08 001:591.669 - 0.055ms returns 0 +T1E08 001:591.726 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 001:591.781 - 0.054ms returns 0 +T1E08 001:591.833 JLINK_WriteReg(MSP, 0x20001000) +T1E08 001:591.878 - 0.044ms returns 0 +T1E08 001:591.917 JLINK_WriteReg(PSP, 0x20001000) +T1E08 001:591.963 - 0.046ms returns 0 +T1E08 001:592.003 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 001:592.048 - 0.045ms returns 0 +T1E08 001:592.088 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 001:592.133 - 0.044ms returns 0x00000008 +T1E08 001:592.177 JLINK_Go() +T1E08 001:592.235 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 001:595.794 - 3.615ms +T1E08 001:595.865 JLINK_IsHalted() +T1E08 001:598.706 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 001:599.608 - 3.743ms returns TRUE +T1E08 001:599.662 JLINK_ReadReg(R15 (PC)) +T1E08 001:599.706 - 0.044ms returns 0x20000000 +T1E08 001:599.746 JLINK_ClrBPEx(BPHandle = 0x00000008) +T1E08 001:599.787 - 0.040ms returns 0x00 +T1E08 001:599.827 JLINK_ReadReg(R0) +T1E08 001:599.866 - 0.039ms returns 0x00000001 +T1E08 001:599.907 JLINK_HasError() +T1E08 001:599.948 JLINK_WriteReg(R0, 0x0800C000) +T1E08 001:599.992 - 0.044ms returns 0 +T1E08 001:600.032 JLINK_WriteReg(R1, 0x00004000) +T1E08 001:600.073 - 0.040ms returns 0 +T1E08 001:600.113 JLINK_WriteReg(R2, 0x000000FF) +T1E08 001:600.153 - 0.039ms returns 0 +T1E08 001:600.193 JLINK_WriteReg(R3, 0x00000000) +T1E08 001:600.232 - 0.038ms returns 0 +T1E08 001:600.272 JLINK_WriteReg(R4, 0x00000000) +T1E08 001:600.312 - 0.039ms returns 0 +T1E08 001:600.352 JLINK_WriteReg(R5, 0x00000000) +T1E08 001:600.391 - 0.039ms returns 0 +T1E08 001:600.431 JLINK_WriteReg(R6, 0x00000000) +T1E08 001:600.471 - 0.039ms returns 0 +T1E08 001:600.512 JLINK_WriteReg(R7, 0x00000000) +T1E08 001:600.553 - 0.040ms returns 0 +T1E08 001:600.593 JLINK_WriteReg(R8, 0x00000000) +T1E08 001:600.633 - 0.040ms returns 0 +T1E08 001:600.675 JLINK_WriteReg(R9, 0x20000180) +T1E08 001:600.719 - 0.044ms returns 0 +T1E08 001:600.759 JLINK_WriteReg(R10, 0x00000000) +T1E08 001:600.799 - 0.039ms returns 0 +T1E08 001:600.839 JLINK_WriteReg(R11, 0x00000000) +T1E08 001:600.877 - 0.038ms returns 0 +T1E08 001:600.917 JLINK_WriteReg(R12, 0x00000000) +T1E08 001:600.956 - 0.039ms returns 0 +T1E08 001:600.996 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 001:601.035 - 0.039ms returns 0 +T1E08 001:601.077 JLINK_WriteReg(R14, 0x20000001) +T1E08 001:601.115 - 0.038ms returns 0 +T1E08 001:601.156 JLINK_WriteReg(R15 (PC), 0x200000C0) +T1E08 001:601.195 - 0.039ms returns 0 +T1E08 001:601.234 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 001:601.274 - 0.040ms returns 0 +T1E08 001:601.314 JLINK_WriteReg(MSP, 0x20001000) +T1E08 001:601.360 - 0.045ms returns 0 +T1E08 001:601.399 JLINK_WriteReg(PSP, 0x20001000) +T1E08 001:601.437 - 0.038ms returns 0 +T1E08 001:601.477 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 001:601.529 - 0.052ms returns 0 +T1E08 001:601.589 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 001:601.633 - 0.044ms returns 0x00000009 +T1E08 001:601.694 JLINK_Go() +T1E08 001:601.764 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 001:605.411 - 3.715ms +T1E08 001:605.500 JLINK_IsHalted() +T1E08 001:606.219 - 0.719ms returns FALSE +T1E08 001:606.294 JLINK_HasError() +T1E08 001:608.729 JLINK_IsHalted() +T1E08 001:609.664 - 0.934ms returns FALSE +T1E08 001:609.764 JLINK_HasError() +T1E08 001:611.454 JLINK_IsHalted() +T1E08 001:612.346 - 0.891ms returns FALSE +T1E08 001:612.413 JLINK_HasError() +T1E08 001:613.908 JLINK_IsHalted() +T1E08 001:614.779 - 0.870ms returns FALSE +T1E08 001:614.842 JLINK_HasError() +T1E08 001:616.361 JLINK_IsHalted() +T1E08 001:617.270 - 0.909ms returns FALSE +T1E08 001:617.338 JLINK_HasError() +T1E08 001:618.677 JLINK_IsHalted() +T1E08 001:619.476 - 0.798ms returns FALSE +T1E08 001:619.563 JLINK_HasError() +T1E08 001:622.737 JLINK_IsHalted() +T1E08 001:623.594 - 0.856ms returns FALSE +T1E08 001:623.654 JLINK_HasError() +T1E08 001:625.943 JLINK_IsHalted() +T1E08 001:626.784 - 0.840ms returns FALSE +T1E08 001:627.005 JLINK_HasError() +T1E08 001:629.116 JLINK_IsHalted() +T1E08 001:629.982 - 0.865ms returns FALSE +T1E08 001:630.099 JLINK_HasError() +T1E08 001:631.468 JLINK_IsHalted() +T1E08 001:632.335 - 0.867ms returns FALSE +T1E08 001:632.395 JLINK_HasError() +T1E08 001:633.821 JLINK_IsHalted() +T1E08 001:634.780 - 0.959ms returns FALSE +T1E08 001:634.868 JLINK_HasError() +T1E08 001:637.065 JLINK_IsHalted() +T1E08 001:637.840 - 0.774ms returns FALSE +T1E08 001:637.896 JLINK_HasError() +T1E08 001:639.383 JLINK_IsHalted() +T1E08 001:640.285 - 0.901ms returns FALSE +T1E08 001:640.401 JLINK_HasError() +T1E08 001:641.857 JLINK_IsHalted() +T1E08 001:642.627 - 0.769ms returns FALSE +T1E08 001:642.694 JLINK_HasError() +T1E08 001:644.534 JLINK_IsHalted() +T1E08 001:645.437 - 0.903ms returns FALSE +T1E08 001:645.557 JLINK_HasError() +T1E08 001:647.632 JLINK_IsHalted() +T1E08 001:648.495 - 0.862ms returns FALSE +T1E08 001:648.598 JLINK_HasError() +T1E08 001:651.389 JLINK_IsHalted() +T1E08 001:652.205 - 0.816ms returns FALSE +T1E08 001:652.266 JLINK_HasError() +T1E08 001:653.804 JLINK_IsHalted() +T1E08 001:654.612 - 0.806ms returns FALSE +T1E08 001:654.721 JLINK_HasError() +T1E08 001:656.196 JLINK_IsHalted() +T1E08 001:656.953 - 0.756ms returns FALSE +T1E08 001:657.006 JLINK_HasError() +T1E08 001:658.487 JLINK_IsHalted() +T1E08 001:659.338 - 0.850ms returns FALSE +T1E08 001:659.382 JLINK_HasError() +T1E08 001:660.857 JLINK_IsHalted() +T1E08 001:661.643 - 0.785ms returns FALSE +T1E08 001:661.705 JLINK_HasError() +T1E08 001:663.298 JLINK_IsHalted() +T1E08 001:664.124 - 0.825ms returns FALSE +T1E08 001:664.201 JLINK_HasError() +T1E08 001:665.696 JLINK_IsHalted() +T1E08 001:666.492 - 0.794ms returns FALSE +T1E08 001:666.597 JLINK_HasError() +T1E08 001:668.732 JLINK_IsHalted() +T1E08 001:669.627 - 0.893ms returns FALSE +T1E08 001:669.726 JLINK_HasError() +T1E08 001:671.339 JLINK_IsHalted() +T1E08 001:672.224 - 0.884ms returns FALSE +T1E08 001:672.279 JLINK_HasError() +T1E08 001:673.856 JLINK_IsHalted() +T1E08 001:674.596 - 0.739ms returns FALSE +T1E08 001:674.647 JLINK_HasError() +T1E08 001:676.185 JLINK_IsHalted() +T1E08 001:676.972 - 0.786ms returns FALSE +T1E08 001:677.083 JLINK_HasError() +T1E08 001:678.328 JLINK_IsHalted() +T1E08 001:679.119 - 0.790ms returns FALSE +T1E08 001:679.221 JLINK_HasError() +T1E08 001:680.882 JLINK_IsHalted() +T1E08 001:681.792 - 0.909ms returns FALSE +T1E08 001:681.846 JLINK_HasError() +T1E08 001:683.320 JLINK_IsHalted() +T1E08 001:684.237 - 0.917ms returns FALSE +T1E08 001:684.302 JLINK_HasError() +T1E08 001:686.081 JLINK_IsHalted() +T1E08 001:687.079 - 0.997ms returns FALSE +T1E08 001:687.137 JLINK_HasError() +T1E08 001:688.854 JLINK_IsHalted() +T1E08 001:689.788 - 0.933ms returns FALSE +T1E08 001:689.900 JLINK_HasError() +T1E08 001:691.288 JLINK_IsHalted() +T1E08 001:692.165 - 0.876ms returns FALSE +T1E08 001:692.278 JLINK_HasError() +T1E08 001:693.644 JLINK_IsHalted() +T1E08 001:694.497 - 0.852ms returns FALSE +T1E08 001:694.605 JLINK_HasError() +T1E08 001:695.811 JLINK_IsHalted() +T1E08 001:696.600 - 0.788ms returns FALSE +T1E08 001:696.697 JLINK_HasError() +T1E08 001:698.014 JLINK_IsHalted() +T1E08 001:699.000 - 0.985ms returns FALSE +T1E08 001:699.066 JLINK_HasError() +T1E08 001:701.996 JLINK_IsHalted() +T1E08 001:702.943 - 0.945ms returns FALSE +T1E08 001:702.992 JLINK_HasError() +T1E08 001:704.229 JLINK_IsHalted() +T1E08 001:705.168 - 0.937ms returns FALSE +T1E08 001:705.275 JLINK_HasError() +T1E08 001:706.499 JLINK_IsHalted() +T1E08 001:707.222 - 0.722ms returns FALSE +T1E08 001:707.333 JLINK_HasError() +T1E08 001:708.641 JLINK_IsHalted() +T1E08 001:709.486 - 0.843ms returns FALSE +T1E08 001:709.605 JLINK_HasError() +T1E08 001:710.891 JLINK_IsHalted() +T1E08 001:711.777 - 0.885ms returns FALSE +T1E08 001:711.827 JLINK_HasError() +T1E08 001:713.894 JLINK_IsHalted() +T1E08 001:714.800 - 0.905ms returns FALSE +T1E08 001:714.925 JLINK_HasError() +T1E08 001:717.071 JLINK_IsHalted() +T1E08 001:717.992 - 0.920ms returns FALSE +T1E08 001:718.056 JLINK_HasError() +T1E08 001:720.051 JLINK_IsHalted() +T1E08 001:721.035 - 0.983ms returns FALSE +T1E08 001:721.140 JLINK_HasError() +T1E08 001:723.093 JLINK_IsHalted() +T1E08 001:724.044 - 0.950ms returns FALSE +T1E08 001:724.203 JLINK_HasError() +T1E08 001:726.266 JLINK_IsHalted() +T1E08 001:727.169 - 0.902ms returns FALSE +T1E08 001:727.282 JLINK_HasError() +T1E08 001:729.272 JLINK_IsHalted() +T1E08 001:730.151 - 0.878ms returns FALSE +T1E08 001:730.218 JLINK_HasError() +T1E08 001:732.290 JLINK_IsHalted() +T1E08 001:733.346 - 1.054ms returns FALSE +T1E08 001:733.467 JLINK_HasError() +T1E08 001:734.775 JLINK_IsHalted() +T1E08 001:735.686 - 0.911ms returns FALSE +T1E08 001:735.741 JLINK_HasError() +T1E08 001:737.768 JLINK_IsHalted() +T1E08 001:738.637 - 0.868ms returns FALSE +T1E08 001:738.705 JLINK_HasError() +T1E08 001:740.803 JLINK_IsHalted() +T1E08 001:741.845 - 1.041ms returns FALSE +T1E08 001:742.003 JLINK_HasError() +T1E08 001:743.789 JLINK_IsHalted() +T1E08 001:744.792 - 1.003ms returns FALSE +T1E08 001:744.858 JLINK_HasError() +T1E08 001:746.858 JLINK_IsHalted() +T1E08 001:747.805 - 0.946ms returns FALSE +T1E08 001:747.918 JLINK_HasError() +T1E08 001:749.153 JLINK_IsHalted() +T1E08 001:750.102 - 0.948ms returns FALSE +T1E08 001:750.181 JLINK_HasError() +T1E08 001:751.548 JLINK_IsHalted() +T1E08 001:752.529 - 0.980ms returns FALSE +T1E08 001:752.639 JLINK_HasError() +T1E08 001:753.933 JLINK_IsHalted() +T1E08 001:754.805 - 0.871ms returns FALSE +T1E08 001:754.910 JLINK_HasError() +T1E08 001:756.645 JLINK_IsHalted() +T1E08 001:757.602 - 0.957ms returns FALSE +T1E08 001:757.699 JLINK_HasError() +T1E08 001:759.028 JLINK_IsHalted() +T1E08 001:759.982 - 0.953ms returns FALSE +T1E08 001:760.041 JLINK_HasError() +T1E08 001:763.434 JLINK_IsHalted() +T1E08 001:764.365 - 0.930ms returns FALSE +T1E08 001:764.467 JLINK_HasError() +T1E08 001:765.763 JLINK_IsHalted() +T1E08 001:766.599 - 0.835ms returns FALSE +T1E08 001:766.664 JLINK_HasError() +T1E08 001:768.000 JLINK_IsHalted() +T1E08 001:768.917 - 0.915ms returns FALSE +T1E08 001:769.091 JLINK_HasError() +T1E08 001:771.236 JLINK_IsHalted() +T1E08 001:772.173 - 0.936ms returns FALSE +T1E08 001:772.283 JLINK_HasError() +T1E08 001:773.566 JLINK_IsHalted() +T1E08 001:774.410 - 0.843ms returns FALSE +T1E08 001:774.520 JLINK_HasError() +T1E08 001:775.840 JLINK_IsHalted() +T1E08 001:776.590 - 0.749ms returns FALSE +T1E08 001:776.638 JLINK_HasError() +T1E08 001:777.991 JLINK_IsHalted() +T1E08 001:778.723 - 0.732ms returns FALSE +T1E08 001:778.776 JLINK_HasError() +T1E08 001:780.040 JLINK_IsHalted() +T1E08 001:780.930 - 0.889ms returns FALSE +T1E08 001:780.975 JLINK_HasError() +T1E08 001:782.237 JLINK_IsHalted() +T1E08 001:783.106 - 0.868ms returns FALSE +T1E08 001:783.212 JLINK_HasError() +T1E08 001:784.515 JLINK_IsHalted() +T1E08 001:785.338 - 0.822ms returns FALSE +T1E08 001:785.425 JLINK_HasError() +T1E08 001:787.498 JLINK_IsHalted() +T1E08 001:788.240 - 0.741ms returns FALSE +T1E08 001:788.340 JLINK_HasError() +T1E08 001:789.613 JLINK_IsHalted() +T1E08 001:790.339 - 0.725ms returns FALSE +T1E08 001:790.395 JLINK_HasError() +T1E08 001:791.728 JLINK_IsHalted() +T1E08 001:792.482 - 0.752ms returns FALSE +T1E08 001:792.584 JLINK_HasError() +T1E08 001:794.240 JLINK_IsHalted() +T1E08 001:795.127 - 0.887ms returns FALSE +T1E08 001:795.196 JLINK_HasError() +T1E08 001:796.508 JLINK_IsHalted() +T1E08 001:797.356 - 0.846ms returns FALSE +T1E08 001:797.449 JLINK_HasError() +T1E08 001:798.773 JLINK_IsHalted() +T1E08 001:799.845 - 1.071ms returns FALSE +T1E08 001:800.004 JLINK_HasError() +T1E08 001:802.144 JLINK_IsHalted() +T1E08 001:803.238 - 1.093ms returns FALSE +T1E08 001:803.348 JLINK_HasError() +T1E08 001:805.182 JLINK_IsHalted() +T1E08 001:806.010 - 0.827ms returns FALSE +T1E08 001:806.130 JLINK_HasError() +T1E08 001:808.204 JLINK_IsHalted() +T1E08 001:809.236 - 1.031ms returns FALSE +T1E08 001:809.407 JLINK_HasError() +T1E08 001:811.162 JLINK_IsHalted() +T1E08 001:812.139 - 0.975ms returns FALSE +T1E08 001:812.367 JLINK_HasError() +T1E08 001:814.405 JLINK_IsHalted() +T1E08 001:815.286 - 0.881ms returns FALSE +T1E08 001:815.397 JLINK_HasError() +T1E08 001:817.422 JLINK_IsHalted() +T1E08 001:818.455 - 1.032ms returns FALSE +T1E08 001:818.662 JLINK_HasError() +T1E08 001:820.456 JLINK_IsHalted() +T1E08 001:821.374 - 0.918ms returns FALSE +T1E08 001:821.450 JLINK_HasError() +T1E08 001:823.459 JLINK_IsHalted() +T1E08 001:824.454 - 0.993ms returns FALSE +T1E08 001:824.619 JLINK_HasError() +T1E08 001:826.192 JLINK_IsHalted() +T1E08 001:827.311 - 1.118ms returns FALSE +T1E08 001:827.378 JLINK_HasError() +T1E08 001:829.209 JLINK_IsHalted() +T1E08 001:830.007 - 0.797ms returns FALSE +T1E08 001:830.124 JLINK_HasError() +T1E08 001:831.762 JLINK_IsHalted() +T1E08 001:832.812 - 1.049ms returns FALSE +T1E08 001:832.934 JLINK_HasError() +T1E08 001:834.218 JLINK_IsHalted() +T1E08 001:835.142 - 0.923ms returns FALSE +T1E08 001:835.295 JLINK_HasError() +T1E08 001:837.373 JLINK_IsHalted() +T1E08 001:838.422 - 1.048ms returns FALSE +T1E08 001:838.504 JLINK_HasError() +T1E08 001:840.400 JLINK_IsHalted() +T1E08 001:841.392 - 0.991ms returns FALSE +T1E08 001:841.508 JLINK_HasError() +T1E08 001:843.389 JLINK_IsHalted() +T1E08 001:844.496 - 1.105ms returns FALSE +T1E08 001:844.657 JLINK_HasError() +T1E08 001:846.364 JLINK_IsHalted() +T1E08 001:847.102 - 0.737ms returns FALSE +T1E08 001:847.171 JLINK_HasError() +T1E08 001:848.352 JLINK_IsHalted() +T1E08 001:849.306 - 0.952ms returns FALSE +T1E08 001:849.466 JLINK_HasError() +T1E08 001:851.384 JLINK_IsHalted() +T1E08 001:852.275 - 0.890ms returns FALSE +T1E08 001:852.399 JLINK_HasError() +T1E08 001:854.358 JLINK_IsHalted() +T1E08 001:855.244 - 0.885ms returns FALSE +T1E08 001:855.348 JLINK_HasError() +T1E08 001:857.807 JLINK_IsHalted() +T1E08 001:858.759 - 0.950ms returns FALSE +T1E08 001:858.916 JLINK_HasError() +T1E08 001:860.972 JLINK_IsHalted() +T1E08 001:861.980 - 1.006ms returns FALSE +T1E08 001:862.103 JLINK_HasError() +T1E08 001:864.404 JLINK_IsHalted() +T1E08 001:865.314 - 0.910ms returns FALSE +T1E08 001:865.395 JLINK_HasError() +T1E08 001:869.716 JLINK_IsHalted() +T1E08 001:870.502 - 0.785ms returns FALSE +T1E08 001:870.571 JLINK_HasError() +T1E08 001:871.917 JLINK_IsHalted() +T1E08 001:872.800 - 0.882ms returns FALSE +T1E08 001:872.912 JLINK_HasError() +T1E08 001:874.238 JLINK_IsHalted() +T1E08 001:875.113 - 0.874ms returns FALSE +T1E08 001:875.180 JLINK_HasError() +T1E08 001:877.267 JLINK_IsHalted() +T1E08 001:878.190 - 0.922ms returns FALSE +T1E08 001:878.259 JLINK_HasError() +T1E08 001:879.733 JLINK_IsHalted() +T1E08 001:880.496 - 0.762ms returns FALSE +T1E08 001:880.604 JLINK_HasError() +T1E08 001:881.747 JLINK_IsHalted() +T1E08 001:882.667 - 0.919ms returns FALSE +T1E08 001:882.777 JLINK_HasError() +T1E08 001:884.890 JLINK_IsHalted() +T1E08 001:885.839 - 0.949ms returns FALSE +T1E08 001:885.906 JLINK_HasError() +T1E08 001:887.138 JLINK_IsHalted() +T1E08 001:887.998 - 0.858ms returns FALSE +T1E08 001:888.112 JLINK_HasError() +T1E08 001:889.607 JLINK_IsHalted() +T1E08 001:890.517 - 0.907ms returns FALSE +T1E08 001:890.640 JLINK_HasError() +T1E08 001:892.630 JLINK_IsHalted() +T1E08 001:893.741 - 1.109ms returns FALSE +T1E08 001:893.948 JLINK_HasError() +T1E08 001:895.703 JLINK_IsHalted() +T1E08 001:896.656 - 0.951ms returns FALSE +T1E08 001:896.772 JLINK_HasError() +T1E08 001:902.898 JLINK_IsHalted() +T1E08 001:903.807 - 0.908ms returns FALSE +T1E08 001:903.913 JLINK_HasError() +T1E08 001:905.956 JLINK_IsHalted() +T1E08 001:906.992 - 1.036ms returns FALSE +T1E08 001:907.103 JLINK_HasError() +T1E08 001:909.215 JLINK_IsHalted() +T1E08 001:910.372 - 1.155ms returns FALSE +T1E08 001:910.568 JLINK_HasError() +T1E08 001:912.216 JLINK_IsHalted() +T1E08 001:913.193 - 0.976ms returns FALSE +T1E08 001:913.266 JLINK_HasError() +T1E08 001:915.242 JLINK_IsHalted() +T1E08 001:916.253 - 1.010ms returns FALSE +T1E08 001:916.329 JLINK_HasError() +T1E08 001:918.221 JLINK_IsHalted() +T1E08 001:919.117 - 0.895ms returns FALSE +T1E08 001:919.185 JLINK_HasError() +T1E08 001:920.468 JLINK_IsHalted() +T1E08 001:921.378 - 0.908ms returns FALSE +T1E08 001:921.466 JLINK_HasError() +T1E08 001:922.742 JLINK_IsHalted() +T1E08 001:923.510 - 0.766ms returns FALSE +T1E08 001:923.614 JLINK_HasError() +T1E08 001:924.788 JLINK_IsHalted() +T1E08 001:925.653 - 0.864ms returns FALSE +T1E08 001:925.764 JLINK_HasError() +T1E08 001:927.440 JLINK_IsHalted() +T1E08 001:928.469 - 1.028ms returns FALSE +T1E08 001:928.537 JLINK_HasError() +T1E08 001:930.541 JLINK_IsHalted() +T1E08 001:931.408 - 0.866ms returns FALSE +T1E08 001:931.491 JLINK_HasError() +T1E08 001:933.506 JLINK_IsHalted() +T1E08 001:934.403 - 0.896ms returns FALSE +T1E08 001:934.544 JLINK_HasError() +T1E08 001:936.050 JLINK_IsHalted() +T1E08 001:936.860 - 0.809ms returns FALSE +T1E08 001:936.926 JLINK_HasError() +T1E08 001:938.075 JLINK_IsHalted() +T1E08 001:938.995 - 0.919ms returns FALSE +T1E08 001:939.095 JLINK_HasError() +T1E08 001:941.029 JLINK_IsHalted() +T1E08 001:941.969 - 0.939ms returns FALSE +T1E08 001:942.038 JLINK_HasError() +T1E08 001:943.448 JLINK_IsHalted() +T1E08 001:944.264 - 0.816ms returns FALSE +T1E08 001:944.368 JLINK_HasError() +T1E08 001:945.688 JLINK_IsHalted() +T1E08 001:946.504 - 0.816ms returns FALSE +T1E08 001:946.558 JLINK_HasError() +T1E08 001:947.882 JLINK_IsHalted() +T1E08 001:950.957 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 001:951.998 - 4.115ms returns TRUE +T1E08 001:952.114 JLINK_ReadReg(R15 (PC)) +T1E08 001:952.201 - 0.086ms returns 0x20000000 +T1E08 001:952.288 JLINK_ClrBPEx(BPHandle = 0x00000009) +T1E08 001:952.358 - 0.069ms returns 0x00 +T1E08 001:952.428 JLINK_ReadReg(R0) +T1E08 001:952.496 - 0.068ms returns 0x00000000 +T1E08 001:953.404 JLINK_HasError() +T1E08 001:953.464 JLINK_WriteReg(R0, 0x08010000) +T1E08 001:953.505 - 0.040ms returns 0 +T1E08 001:953.544 JLINK_WriteReg(R1, 0x00010000) +T1E08 001:953.583 - 0.038ms returns 0 +T1E08 001:953.622 JLINK_WriteReg(R2, 0x000000FF) +T1E08 001:953.660 - 0.038ms returns 0 +T1E08 001:953.706 JLINK_WriteReg(R3, 0x00000000) +T1E08 001:953.745 - 0.038ms returns 0 +T1E08 001:953.783 JLINK_WriteReg(R4, 0x00000000) +T1E08 001:953.821 - 0.038ms returns 0 +T1E08 001:953.860 JLINK_WriteReg(R5, 0x00000000) +T1E08 001:953.898 - 0.037ms returns 0 +T1E08 001:953.937 JLINK_WriteReg(R6, 0x00000000) +T1E08 001:953.974 - 0.037ms returns 0 +T1E08 001:954.014 JLINK_WriteReg(R7, 0x00000000) +T1E08 001:954.052 - 0.037ms returns 0 +T1E08 001:954.090 JLINK_WriteReg(R8, 0x00000000) +T1E08 001:954.129 - 0.038ms returns 0 +T1E08 001:954.167 JLINK_WriteReg(R9, 0x20000180) +T1E08 001:954.205 - 0.037ms returns 0 +T1E08 001:954.251 JLINK_WriteReg(R10, 0x00000000) +T1E08 001:954.290 - 0.039ms returns 0 +T1E08 001:954.329 JLINK_WriteReg(R11, 0x00000000) +T1E08 001:954.367 - 0.038ms returns 0 +T1E08 001:954.407 JLINK_WriteReg(R12, 0x00000000) +T1E08 001:954.445 - 0.038ms returns 0 +T1E08 001:954.485 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 001:954.522 - 0.038ms returns 0 +T1E08 001:954.561 JLINK_WriteReg(R14, 0x20000001) +T1E08 001:954.599 - 0.037ms returns 0 +T1E08 001:954.638 JLINK_WriteReg(R15 (PC), 0x20000020) +T1E08 001:954.676 - 0.037ms returns 0 +T1E08 001:954.715 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 001:954.757 - 0.042ms returns 0 +T1E08 001:954.796 JLINK_WriteReg(MSP, 0x20001000) +T1E08 001:954.834 - 0.037ms returns 0 +T1E08 001:954.873 JLINK_WriteReg(PSP, 0x20001000) +T1E08 001:954.911 - 0.038ms returns 0 +T1E08 001:954.949 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 001:954.988 - 0.038ms returns 0 +T1E08 001:955.028 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 001:955.068 - 0.039ms returns 0x0000000A +T1E08 001:955.107 JLINK_Go() +T1E08 001:955.159 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 001:958.811 - 3.703ms +T1E08 001:958.881 JLINK_IsHalted() +T1E08 001:961.772 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 001:962.640 - 3.758ms returns TRUE +T1E08 001:962.722 JLINK_ReadReg(R15 (PC)) +T1E08 001:962.796 - 0.074ms returns 0x20000000 +T1E08 001:962.865 JLINK_ClrBPEx(BPHandle = 0x0000000A) +T1E08 001:962.933 - 0.067ms returns 0x00 +T1E08 001:963.010 JLINK_ReadReg(R0) +T1E08 001:963.080 - 0.069ms returns 0x00000001 +T1E08 001:963.152 JLINK_HasError() +T1E08 001:963.226 JLINK_WriteReg(R0, 0x08010000) +T1E08 001:963.296 - 0.068ms returns 0 +T1E08 001:963.394 JLINK_WriteReg(R1, 0x00010000) +T1E08 001:963.465 - 0.070ms returns 0 +T1E08 001:963.534 JLINK_WriteReg(R2, 0x000000FF) +T1E08 001:963.608 - 0.074ms returns 0 +T1E08 001:963.683 JLINK_WriteReg(R3, 0x00000000) +T1E08 001:963.752 - 0.071ms returns 0 +T1E08 001:963.816 JLINK_WriteReg(R4, 0x00000000) +T1E08 001:963.855 - 0.039ms returns 0 +T1E08 001:963.894 JLINK_WriteReg(R5, 0x00000000) +T1E08 001:963.933 - 0.038ms returns 0 +T1E08 001:963.975 JLINK_WriteReg(R6, 0x00000000) +T1E08 001:964.020 - 0.045ms returns 0 +T1E08 001:964.062 JLINK_WriteReg(R7, 0x00000000) +T1E08 001:964.101 - 0.039ms returns 0 +T1E08 001:964.150 JLINK_WriteReg(R8, 0x00000000) +T1E08 001:964.192 - 0.041ms returns 0 +T1E08 001:964.232 JLINK_WriteReg(R9, 0x20000180) +T1E08 001:964.271 - 0.039ms returns 0 +T1E08 001:964.310 JLINK_WriteReg(R10, 0x00000000) +T1E08 001:964.349 - 0.038ms returns 0 +T1E08 001:964.388 JLINK_WriteReg(R11, 0x00000000) +T1E08 001:964.427 - 0.038ms returns 0 +T1E08 001:964.466 JLINK_WriteReg(R12, 0x00000000) +T1E08 001:964.505 - 0.038ms returns 0 +T1E08 001:964.544 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 001:964.583 - 0.039ms returns 0 +T1E08 001:964.623 JLINK_WriteReg(R14, 0x20000001) +T1E08 001:964.662 - 0.038ms returns 0 +T1E08 001:964.701 JLINK_WriteReg(R15 (PC), 0x200000C0) +T1E08 001:964.739 - 0.038ms returns 0 +T1E08 001:964.779 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 001:964.818 - 0.038ms returns 0 +T1E08 001:964.857 JLINK_WriteReg(MSP, 0x20001000) +T1E08 001:964.896 - 0.038ms returns 0 +T1E08 001:964.935 JLINK_WriteReg(PSP, 0x20001000) +T1E08 001:964.974 - 0.038ms returns 0 +T1E08 001:965.017 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 001:965.056 - 0.038ms returns 0 +T1E08 001:965.097 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 001:965.137 - 0.040ms returns 0x0000000B +T1E08 001:965.177 JLINK_Go() +T1E08 001:965.224 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 001:969.062 - 3.884ms +T1E08 001:969.256 JLINK_IsHalted() +T1E08 001:970.171 - 0.914ms returns FALSE +T1E08 001:970.268 JLINK_HasError() +T1E08 001:972.090 JLINK_IsHalted() +T1E08 001:973.030 - 0.939ms returns FALSE +T1E08 001:973.132 JLINK_HasError() +T1E08 001:976.296 JLINK_IsHalted() +T1E08 001:977.230 - 0.933ms returns FALSE +T1E08 001:977.301 JLINK_HasError() +T1E08 001:978.678 JLINK_IsHalted() +T1E08 001:979.554 - 0.875ms returns FALSE +T1E08 001:979.666 JLINK_HasError() +T1E08 001:981.139 JLINK_IsHalted() +T1E08 001:981.996 - 0.856ms returns FALSE +T1E08 001:982.104 JLINK_HasError() +T1E08 001:984.152 JLINK_IsHalted() +T1E08 001:985.358 - 1.206ms returns FALSE +T1E08 001:985.468 JLINK_HasError() +T1E08 001:987.159 JLINK_IsHalted() +T1E08 001:988.090 - 0.931ms returns FALSE +T1E08 001:988.156 JLINK_HasError() +T1E08 001:989.378 JLINK_IsHalted() +T1E08 001:990.311 - 0.932ms returns FALSE +T1E08 001:990.470 JLINK_HasError() +T1E08 001:992.779 JLINK_IsHalted() +T1E08 001:993.704 - 0.924ms returns FALSE +T1E08 001:993.815 JLINK_HasError() +T1E08 001:995.877 JLINK_IsHalted() +T1E08 001:996.856 - 0.977ms returns FALSE +T1E08 001:997.016 JLINK_HasError() +T1E08 001:998.988 JLINK_IsHalted() +T1E08 001:999.884 - 0.894ms returns FALSE +T1E08 001:999.999 JLINK_HasError() +T1E08 002:001.990 JLINK_IsHalted() +T1E08 002:002.832 - 0.841ms returns FALSE +T1E08 002:002.882 JLINK_HasError() +T1E08 002:004.491 JLINK_IsHalted() +T1E08 002:005.389 - 0.897ms returns FALSE +T1E08 002:005.455 JLINK_HasError() +T1E08 002:006.824 JLINK_IsHalted() +T1E08 002:007.687 - 0.862ms returns FALSE +T1E08 002:007.845 JLINK_HasError() +T1E08 002:009.965 JLINK_IsHalted() +T1E08 002:010.906 - 0.939ms returns FALSE +T1E08 002:011.068 JLINK_HasError() +T1E08 002:013.233 JLINK_IsHalted() +T1E08 002:014.217 - 0.980ms returns FALSE +T1E08 002:014.407 JLINK_HasError() +T1E08 002:015.820 JLINK_IsHalted() +T1E08 002:016.891 - 1.070ms returns FALSE +T1E08 002:017.005 JLINK_HasError() +T1E08 002:018.805 JLINK_IsHalted() +T1E08 002:019.637 - 0.831ms returns FALSE +T1E08 002:019.766 JLINK_HasError() +T1E08 002:021.845 JLINK_IsHalted() +T1E08 002:022.820 - 0.974ms returns FALSE +T1E08 002:022.886 JLINK_HasError() +T1E08 002:024.797 JLINK_IsHalted() +T1E08 002:025.633 - 0.834ms returns FALSE +T1E08 002:025.715 JLINK_HasError() +T1E08 002:027.794 JLINK_IsHalted() +T1E08 002:028.626 - 0.831ms returns FALSE +T1E08 002:028.727 JLINK_HasError() +T1E08 002:030.814 JLINK_IsHalted() +T1E08 002:031.860 - 1.045ms returns FALSE +T1E08 002:031.974 JLINK_HasError() +T1E08 002:033.331 JLINK_IsHalted() +T1E08 002:034.137 - 0.804ms returns FALSE +T1E08 002:034.241 JLINK_HasError() +T1E08 002:035.832 JLINK_IsHalted() +T1E08 002:036.698 - 0.864ms returns FALSE +T1E08 002:036.857 JLINK_HasError() +T1E08 002:038.838 JLINK_IsHalted() +T1E08 002:039.698 - 0.860ms returns FALSE +T1E08 002:039.766 JLINK_HasError() +T1E08 002:040.888 JLINK_IsHalted() +T1E08 002:041.837 - 0.948ms returns FALSE +T1E08 002:041.904 JLINK_HasError() +T1E08 002:043.828 JLINK_IsHalted() +T1E08 002:044.642 - 0.813ms returns FALSE +T1E08 002:044.755 JLINK_HasError() +T1E08 002:046.878 JLINK_IsHalted() +T1E08 002:047.828 - 0.948ms returns FALSE +T1E08 002:047.984 JLINK_HasError() +T1E08 002:049.917 JLINK_IsHalted() +T1E08 002:051.048 - 1.130ms returns FALSE +T1E08 002:051.233 JLINK_HasError() +T1E08 002:053.001 JLINK_IsHalted() +T1E08 002:054.067 - 1.065ms returns FALSE +T1E08 002:054.182 JLINK_HasError() +T1E08 002:056.011 JLINK_IsHalted() +T1E08 002:056.985 - 0.973ms returns FALSE +T1E08 002:057.092 JLINK_HasError() +T1E08 002:058.388 JLINK_IsHalted() +T1E08 002:059.250 - 0.861ms returns FALSE +T1E08 002:059.323 JLINK_HasError() +T1E08 002:060.674 JLINK_IsHalted() +T1E08 002:061.639 - 0.966ms returns FALSE +T1E08 002:061.732 JLINK_HasError() +T1E08 002:063.072 JLINK_IsHalted() +T1E08 002:063.975 - 0.901ms returns FALSE +T1E08 002:064.156 JLINK_HasError() +T1E08 002:066.346 JLINK_IsHalted() +T1E08 002:067.388 - 1.041ms returns FALSE +T1E08 002:067.570 JLINK_HasError() +T1E08 002:069.327 JLINK_IsHalted() +T1E08 002:070.136 - 0.808ms returns FALSE +T1E08 002:070.224 JLINK_HasError() +T1E08 002:071.575 JLINK_IsHalted() +T1E08 002:072.378 - 0.801ms returns FALSE +T1E08 002:072.460 JLINK_HasError() +T1E08 002:073.793 JLINK_IsHalted() +T1E08 002:074.629 - 0.835ms returns FALSE +T1E08 002:074.722 JLINK_HasError() +T1E08 002:076.007 JLINK_IsHalted() +T1E08 002:076.974 - 0.966ms returns FALSE +T1E08 002:077.115 JLINK_HasError() +T1E08 002:078.817 JLINK_IsHalted() +T1E08 002:079.684 - 0.866ms returns FALSE +T1E08 002:079.791 JLINK_HasError() +T1E08 002:081.104 JLINK_IsHalted() +T1E08 002:082.000 - 0.896ms returns FALSE +T1E08 002:082.074 JLINK_HasError() +T1E08 002:083.982 JLINK_IsHalted() +T1E08 002:085.144 - 1.160ms returns FALSE +T1E08 002:085.275 JLINK_HasError() +T1E08 002:089.030 JLINK_IsHalted() +T1E08 002:090.032 - 1.000ms returns FALSE +T1E08 002:090.216 JLINK_HasError() +T1E08 002:092.052 JLINK_IsHalted() +T1E08 002:093.141 - 1.087ms returns FALSE +T1E08 002:093.320 JLINK_HasError() +T1E08 002:095.052 JLINK_IsHalted() +T1E08 002:096.193 - 1.140ms returns FALSE +T1E08 002:096.375 JLINK_HasError() +T1E08 002:098.052 JLINK_IsHalted() +T1E08 002:099.103 - 1.050ms returns FALSE +T1E08 002:099.222 JLINK_HasError() +T1E08 002:100.821 JLINK_IsHalted() +T1E08 002:101.615 - 0.794ms returns FALSE +T1E08 002:101.680 JLINK_HasError() +T1E08 002:103.606 JLINK_IsHalted() +T1E08 002:104.516 - 0.910ms returns FALSE +T1E08 002:104.623 JLINK_HasError() +T1E08 002:105.944 JLINK_IsHalted() +T1E08 002:106.880 - 0.934ms returns FALSE +T1E08 002:107.070 JLINK_HasError() +T1E08 002:109.156 JLINK_IsHalted() +T1E08 002:110.140 - 0.983ms returns FALSE +T1E08 002:110.307 JLINK_HasError() +T1E08 002:111.674 JLINK_IsHalted() +T1E08 002:112.650 - 0.975ms returns FALSE +T1E08 002:112.756 JLINK_HasError() +T1E08 002:114.601 JLINK_IsHalted() +T1E08 002:115.734 - 1.132ms returns FALSE +T1E08 002:115.917 JLINK_HasError() +T1E08 002:141.210 JLINK_IsHalted() +T1E08 002:142.233 - 1.023ms returns FALSE +T1E08 002:142.350 JLINK_HasError() +T1E08 002:144.610 JLINK_IsHalted() +T1E08 002:145.626 - 1.015ms returns FALSE +T1E08 002:145.696 JLINK_HasError() +T1E08 002:149.393 JLINK_IsHalted() +T1E08 002:150.382 - 0.989ms returns FALSE +T1E08 002:150.478 JLINK_HasError() +T1E08 002:151.780 JLINK_IsHalted() +T1E08 002:152.721 - 0.940ms returns FALSE +T1E08 002:152.804 JLINK_HasError() +T1E08 002:154.193 JLINK_IsHalted() +T1E08 002:155.018 - 0.824ms returns FALSE +T1E08 002:155.116 JLINK_HasError() +T1E08 002:156.420 JLINK_IsHalted() +T1E08 002:157.256 - 0.836ms returns FALSE +T1E08 002:157.347 JLINK_HasError() +T1E08 002:158.620 JLINK_IsHalted() +T1E08 002:159.508 - 0.887ms returns FALSE +T1E08 002:159.615 JLINK_HasError() +T1E08 002:161.615 JLINK_IsHalted() +T1E08 002:162.664 - 1.048ms returns FALSE +T1E08 002:162.786 JLINK_HasError() +T1E08 002:164.409 JLINK_IsHalted() +T1E08 002:165.533 - 1.122ms returns FALSE +T1E08 002:165.713 JLINK_HasError() +T1E08 002:167.509 JLINK_IsHalted() +T1E08 002:168.512 - 1.002ms returns FALSE +T1E08 002:168.724 JLINK_HasError() +T1E08 002:170.390 JLINK_IsHalted() +T1E08 002:171.362 - 0.971ms returns FALSE +T1E08 002:171.488 JLINK_HasError() +T1E08 002:173.007 JLINK_IsHalted() +T1E08 002:174.025 - 1.016ms returns FALSE +T1E08 002:174.235 JLINK_HasError() +T1E08 002:175.983 JLINK_IsHalted() +T1E08 002:177.050 - 1.065ms returns FALSE +T1E08 002:177.243 JLINK_HasError() +T1E08 002:179.010 JLINK_IsHalted() +T1E08 002:179.903 - 0.892ms returns FALSE +T1E08 002:180.026 JLINK_HasError() +T1E08 002:181.269 JLINK_IsHalted() +T1E08 002:182.194 - 0.924ms returns FALSE +T1E08 002:182.312 JLINK_HasError() +T1E08 002:183.614 JLINK_IsHalted() +T1E08 002:184.598 - 0.983ms returns FALSE +T1E08 002:184.752 JLINK_HasError() +T1E08 002:186.020 JLINK_IsHalted() +T1E08 002:186.997 - 0.976ms returns FALSE +T1E08 002:187.075 JLINK_HasError() +T1E08 002:189.023 JLINK_IsHalted() +T1E08 002:190.105 - 1.080ms returns FALSE +T1E08 002:190.290 JLINK_HasError() +T1E08 002:192.085 JLINK_IsHalted() +T1E08 002:193.169 - 1.082ms returns FALSE +T1E08 002:193.289 JLINK_HasError() +T1E08 002:198.049 JLINK_IsHalted() +T1E08 002:199.106 - 1.056ms returns FALSE +T1E08 002:199.234 JLINK_HasError() +T1E08 002:201.085 JLINK_IsHalted() +T1E08 002:202.121 - 1.034ms returns FALSE +T1E08 002:202.345 JLINK_HasError() +T1E08 002:204.420 JLINK_IsHalted() +T1E08 002:205.300 - 0.879ms returns FALSE +T1E08 002:205.422 JLINK_HasError() +T1E08 002:206.730 JLINK_IsHalted() +T1E08 002:207.663 - 0.932ms returns FALSE +T1E08 002:207.845 JLINK_HasError() +T1E08 002:209.336 JLINK_IsHalted() +T1E08 002:210.121 - 0.786ms returns FALSE +T1E08 002:210.172 JLINK_HasError() +T1E08 002:211.337 JLINK_IsHalted() +T1E08 002:212.148 - 0.810ms returns FALSE +T1E08 002:212.285 JLINK_HasError() +T1E08 002:214.371 JLINK_IsHalted() +T1E08 002:215.376 - 1.005ms returns FALSE +T1E08 002:215.494 JLINK_HasError() +T1E08 002:217.375 JLINK_IsHalted() +T1E08 002:218.357 - 0.981ms returns FALSE +T1E08 002:218.465 JLINK_HasError() +T1E08 002:220.378 JLINK_IsHalted() +T1E08 002:221.328 - 0.949ms returns FALSE +T1E08 002:221.435 JLINK_HasError() +T1E08 002:223.601 JLINK_IsHalted() +T1E08 002:224.651 - 1.049ms returns FALSE +T1E08 002:224.765 JLINK_HasError() +T1E08 002:226.078 JLINK_IsHalted() +T1E08 002:227.000 - 0.921ms returns FALSE +T1E08 002:227.131 JLINK_HasError() +T1E08 002:228.324 JLINK_IsHalted() +T1E08 002:229.141 - 0.816ms returns FALSE +T1E08 002:229.262 JLINK_HasError() +T1E08 002:230.756 JLINK_IsHalted() +T1E08 002:231.834 - 1.078ms returns FALSE +T1E08 002:231.955 JLINK_HasError() +T1E08 002:234.251 JLINK_IsHalted() +T1E08 002:235.292 - 1.039ms returns FALSE +T1E08 002:235.472 JLINK_HasError() +T1E08 002:236.774 JLINK_IsHalted() +T1E08 002:237.668 - 0.893ms returns FALSE +T1E08 002:237.789 JLINK_HasError() +T1E08 002:239.138 JLINK_IsHalted() +T1E08 002:240.149 - 1.011ms returns FALSE +T1E08 002:240.213 JLINK_HasError() +T1E08 002:241.556 JLINK_IsHalted() +T1E08 002:242.400 - 0.843ms returns FALSE +T1E08 002:242.522 JLINK_HasError() +T1E08 002:243.790 JLINK_IsHalted() +T1E08 002:244.824 - 1.033ms returns FALSE +T1E08 002:244.886 JLINK_HasError() +T1E08 002:246.136 JLINK_IsHalted() +T1E08 002:247.112 - 0.975ms returns FALSE +T1E08 002:247.234 JLINK_HasError() +T1E08 002:248.571 JLINK_IsHalted() +T1E08 002:249.533 - 0.961ms returns FALSE +T1E08 002:249.672 JLINK_HasError() +T1E08 002:251.431 JLINK_IsHalted() +T1E08 002:252.392 - 0.956ms returns FALSE +T1E08 002:252.949 JLINK_HasError() +T1E08 002:255.458 JLINK_IsHalted() +T1E08 002:256.264 - 0.805ms returns FALSE +T1E08 002:256.330 JLINK_HasError() +T1E08 002:259.919 JLINK_IsHalted() +T1E08 002:260.923 - 1.003ms returns FALSE +T1E08 002:261.162 JLINK_HasError() +T1E08 002:263.362 JLINK_IsHalted() +T1E08 002:264.166 - 0.803ms returns FALSE +T1E08 002:264.296 JLINK_HasError() +T1E08 002:265.716 JLINK_IsHalted() +T1E08 002:266.535 - 0.818ms returns FALSE +T1E08 002:266.678 JLINK_HasError() +T1E08 002:268.341 JLINK_IsHalted() +T1E08 002:269.153 - 0.811ms returns FALSE +T1E08 002:269.220 JLINK_HasError() +T1E08 002:271.205 JLINK_IsHalted() +T1E08 002:272.003 - 0.797ms returns FALSE +T1E08 002:272.064 JLINK_HasError() +T1E08 002:273.165 JLINK_IsHalted() +T1E08 002:274.013 - 0.848ms returns FALSE +T1E08 002:274.095 JLINK_HasError() +T1E08 002:276.275 JLINK_IsHalted() +T1E08 002:277.233 - 0.957ms returns FALSE +T1E08 002:277.430 JLINK_HasError() +T1E08 002:279.146 JLINK_IsHalted() +T1E08 002:280.052 - 0.904ms returns FALSE +T1E08 002:280.240 JLINK_HasError() +T1E08 002:281.501 JLINK_IsHalted() +T1E08 002:282.486 - 0.984ms returns FALSE +T1E08 002:282.589 JLINK_HasError() +T1E08 002:284.173 JLINK_IsHalted() +T1E08 002:285.120 - 0.946ms returns FALSE +T1E08 002:285.222 JLINK_HasError() +T1E08 002:286.468 JLINK_IsHalted() +T1E08 002:287.269 - 0.800ms returns FALSE +T1E08 002:287.354 JLINK_HasError() +T1E08 002:289.606 JLINK_IsHalted() +T1E08 002:290.573 - 0.966ms returns FALSE +T1E08 002:290.688 JLINK_HasError() +T1E08 002:292.024 JLINK_IsHalted() +T1E08 002:293.029 - 1.004ms returns FALSE +T1E08 002:293.219 JLINK_HasError() +T1E08 002:295.379 JLINK_IsHalted() +T1E08 002:296.276 - 0.896ms returns FALSE +T1E08 002:296.378 JLINK_HasError() +T1E08 002:297.641 JLINK_IsHalted() +T1E08 002:298.375 - 0.733ms returns FALSE +T1E08 002:298.420 JLINK_HasError() +T1E08 002:299.840 JLINK_IsHalted() +T1E08 002:300.835 - 0.995ms returns FALSE +T1E08 002:300.941 JLINK_HasError() +T1E08 002:302.169 JLINK_IsHalted() +T1E08 002:303.061 - 0.891ms returns FALSE +T1E08 002:303.214 JLINK_HasError() +T1E08 002:306.372 JLINK_IsHalted() +T1E08 002:307.328 - 0.955ms returns FALSE +T1E08 002:307.433 JLINK_HasError() +T1E08 002:308.673 JLINK_IsHalted() +T1E08 002:309.573 - 0.899ms returns FALSE +T1E08 002:309.684 JLINK_HasError() +T1E08 002:311.607 JLINK_IsHalted() +T1E08 002:312.672 - 1.065ms returns FALSE +T1E08 002:312.738 JLINK_HasError() +T1E08 002:314.600 JLINK_IsHalted() +T1E08 002:315.661 - 1.060ms returns FALSE +T1E08 002:315.840 JLINK_HasError() +T1E08 002:317.541 JLINK_IsHalted() +T1E08 002:318.419 - 0.877ms returns FALSE +T1E08 002:318.526 JLINK_HasError() +T1E08 002:320.521 JLINK_IsHalted() +T1E08 002:321.410 - 0.889ms returns FALSE +T1E08 002:321.527 JLINK_HasError() +T1E08 002:323.556 JLINK_IsHalted() +T1E08 002:325.112 - 1.554ms returns FALSE +T1E08 002:325.261 JLINK_HasError() +T1E08 002:326.854 JLINK_IsHalted() +T1E08 002:327.864 - 1.009ms returns FALSE +T1E08 002:327.979 JLINK_HasError() +T1E08 002:329.327 JLINK_IsHalted() +T1E08 002:330.171 - 0.844ms returns FALSE +T1E08 002:330.274 JLINK_HasError() +T1E08 002:332.112 JLINK_IsHalted() +T1E08 002:333.055 - 0.941ms returns FALSE +T1E08 002:333.247 JLINK_HasError() +T1E08 002:335.092 JLINK_IsHalted() +T1E08 002:336.061 - 0.968ms returns FALSE +T1E08 002:336.188 JLINK_HasError() +T1E08 002:337.470 JLINK_IsHalted() +T1E08 002:338.272 - 0.801ms returns FALSE +T1E08 002:338.374 JLINK_HasError() +T1E08 002:339.657 JLINK_IsHalted() +T1E08 002:340.550 - 0.892ms returns FALSE +T1E08 002:340.618 JLINK_HasError() +T1E08 002:342.011 JLINK_IsHalted() +T1E08 002:342.972 - 0.960ms returns FALSE +T1E08 002:343.085 JLINK_HasError() +T1E08 002:344.415 JLINK_IsHalted() +T1E08 002:345.322 - 0.906ms returns FALSE +T1E08 002:345.427 JLINK_HasError() +T1E08 002:346.631 JLINK_IsHalted() +T1E08 002:347.566 - 0.933ms returns FALSE +T1E08 002:347.671 JLINK_HasError() +T1E08 002:348.926 JLINK_IsHalted() +T1E08 002:349.772 - 0.845ms returns FALSE +T1E08 002:349.875 JLINK_HasError() +T1E08 002:351.591 JLINK_IsHalted() +T1E08 002:352.647 - 1.055ms returns FALSE +T1E08 002:352.825 JLINK_HasError() +T1E08 002:354.557 JLINK_IsHalted() +T1E08 002:355.403 - 0.845ms returns FALSE +T1E08 002:355.482 JLINK_HasError() +T1E08 002:356.863 JLINK_IsHalted() +T1E08 002:357.838 - 0.975ms returns FALSE +T1E08 002:357.944 JLINK_HasError() +T1E08 002:359.206 JLINK_IsHalted() +T1E08 002:360.062 - 0.855ms returns FALSE +T1E08 002:360.146 JLINK_HasError() +T1E08 002:361.930 JLINK_IsHalted() +T1E08 002:362.840 - 0.909ms returns FALSE +T1E08 002:362.953 JLINK_HasError() +T1E08 002:364.202 JLINK_IsHalted() +T1E08 002:365.155 - 0.953ms returns FALSE +T1E08 002:365.251 JLINK_HasError() +T1E08 002:368.798 JLINK_IsHalted() +T1E08 002:369.856 - 1.057ms returns FALSE +T1E08 002:370.023 JLINK_HasError() +T1E08 002:371.596 JLINK_IsHalted() +T1E08 002:372.417 - 0.820ms returns FALSE +T1E08 002:372.523 JLINK_HasError() +T1E08 002:374.398 JLINK_IsHalted() +T1E08 002:375.292 - 0.894ms returns FALSE +T1E08 002:375.394 JLINK_HasError() +T1E08 002:376.751 JLINK_IsHalted() +T1E08 002:377.778 - 1.025ms returns FALSE +T1E08 002:377.985 JLINK_HasError() +T1E08 002:379.699 JLINK_IsHalted() +T1E08 002:380.519 - 0.820ms returns FALSE +T1E08 002:380.590 JLINK_HasError() +T1E08 002:381.924 JLINK_IsHalted() +T1E08 002:382.892 - 0.967ms returns FALSE +T1E08 002:382.976 JLINK_HasError() +T1E08 002:384.378 JLINK_IsHalted() +T1E08 002:385.363 - 0.983ms returns FALSE +T1E08 002:385.602 JLINK_HasError() +T1E08 002:387.071 JLINK_IsHalted() +T1E08 002:387.977 - 0.906ms returns FALSE +T1E08 002:388.051 JLINK_HasError() +T1E08 002:389.302 JLINK_IsHalted() +T1E08 002:390.166 - 0.862ms returns FALSE +T1E08 002:390.272 JLINK_HasError() +T1E08 002:391.533 JLINK_IsHalted() +T1E08 002:392.314 - 0.779ms returns FALSE +T1E08 002:392.503 JLINK_HasError() +T1E08 002:394.306 JLINK_IsHalted() +T1E08 002:395.272 - 0.966ms returns FALSE +T1E08 002:395.342 JLINK_HasError() +T1E08 002:400.743 JLINK_IsHalted() +T1E08 002:401.873 - 1.129ms returns FALSE +T1E08 002:402.109 JLINK_HasError() +T1E08 002:403.677 JLINK_IsHalted() +T1E08 002:404.534 - 0.857ms returns FALSE +T1E08 002:404.630 JLINK_HasError() +T1E08 002:405.981 JLINK_IsHalted() +T1E08 002:406.771 - 0.789ms returns FALSE +T1E08 002:406.864 JLINK_HasError() +T1E08 002:408.220 JLINK_IsHalted() +T1E08 002:409.029 - 0.808ms returns FALSE +T1E08 002:409.130 JLINK_HasError() +T1E08 002:410.887 JLINK_IsHalted() +T1E08 002:411.921 - 1.033ms returns FALSE +T1E08 002:412.143 JLINK_HasError() +T1E08 002:414.887 JLINK_IsHalted() +T1E08 002:415.840 - 0.952ms returns FALSE +T1E08 002:415.927 JLINK_HasError() +T1E08 002:417.951 JLINK_IsHalted() +T1E08 002:419.018 - 1.066ms returns FALSE +T1E08 002:419.123 JLINK_HasError() +T1E08 002:420.638 JLINK_IsHalted() +T1E08 002:421.536 - 0.898ms returns FALSE +T1E08 002:421.640 JLINK_HasError() +T1E08 002:422.943 JLINK_IsHalted() +T1E08 002:423.839 - 0.895ms returns FALSE +T1E08 002:423.917 JLINK_HasError() +T1E08 002:425.541 JLINK_IsHalted() +T1E08 002:427.863 - 2.321ms returns FALSE +T1E08 002:427.962 JLINK_HasError() +T1E08 002:430.257 JLINK_IsHalted() +T1E08 002:431.028 - 0.771ms returns FALSE +T1E08 002:431.130 JLINK_HasError() +T1E08 002:432.850 JLINK_IsHalted() +T1E08 002:433.845 - 0.994ms returns FALSE +T1E08 002:433.951 JLINK_HasError() +T1E08 002:435.573 JLINK_IsHalted() +T1E08 002:436.416 - 0.840ms returns FALSE +T1E08 002:436.639 JLINK_HasError() +T1E08 002:438.233 JLINK_IsHalted() +T1E08 002:439.027 - 0.794ms returns FALSE +T1E08 002:439.126 JLINK_HasError() +T1E08 002:440.454 JLINK_IsHalted() +T1E08 002:441.397 - 0.943ms returns FALSE +T1E08 002:441.472 JLINK_HasError() +T1E08 002:442.815 JLINK_IsHalted() +T1E08 002:443.675 - 0.859ms returns FALSE +T1E08 002:443.808 JLINK_HasError() +T1E08 002:445.575 JLINK_IsHalted() +T1E08 002:446.398 - 0.823ms returns FALSE +T1E08 002:446.469 JLINK_HasError() +T1E08 002:447.806 JLINK_IsHalted() +T1E08 002:448.659 - 0.852ms returns FALSE +T1E08 002:448.748 JLINK_HasError() +T1E08 002:450.462 JLINK_IsHalted() +T1E08 002:451.420 - 0.957ms returns FALSE +T1E08 002:451.526 JLINK_HasError() +T1E08 002:452.810 JLINK_IsHalted() +T1E08 002:453.740 - 0.929ms returns FALSE +T1E08 002:453.838 JLINK_HasError() +T1E08 002:455.162 JLINK_IsHalted() +T1E08 002:456.026 - 0.864ms returns FALSE +T1E08 002:456.107 JLINK_HasError() +T1E08 002:457.394 JLINK_IsHalted() +T1E08 002:458.332 - 0.936ms returns FALSE +T1E08 002:458.439 JLINK_HasError() +T1E08 002:459.695 JLINK_IsHalted() +T1E08 002:460.525 - 0.829ms returns FALSE +T1E08 002:460.644 JLINK_HasError() +T1E08 002:462.244 JLINK_IsHalted() +T1E08 002:463.097 - 0.851ms returns FALSE +T1E08 002:463.201 JLINK_HasError() +T1E08 002:465.257 JLINK_IsHalted() +T1E08 002:466.255 - 0.997ms returns FALSE +T1E08 002:466.368 JLINK_HasError() +T1E08 002:468.274 JLINK_IsHalted() +T1E08 002:469.172 - 0.899ms returns FALSE +T1E08 002:469.280 JLINK_HasError() +T1E08 002:471.260 JLINK_IsHalted() +T1E08 002:472.284 - 1.023ms returns FALSE +T1E08 002:472.470 JLINK_HasError() +T1E08 002:474.243 JLINK_IsHalted() +T1E08 002:475.029 - 0.785ms returns FALSE +T1E08 002:475.128 JLINK_HasError() +T1E08 002:479.473 JLINK_IsHalted() +T1E08 002:480.370 - 0.895ms returns FALSE +T1E08 002:480.552 JLINK_HasError() +T1E08 002:482.357 JLINK_IsHalted() +T1E08 002:483.154 - 0.796ms returns FALSE +T1E08 002:483.236 JLINK_HasError() +T1E08 002:485.846 JLINK_IsHalted() +T1E08 002:486.845 - 0.999ms returns FALSE +T1E08 002:486.936 JLINK_HasError() +T1E08 002:488.152 JLINK_IsHalted() +T1E08 002:489.164 - 1.009ms returns FALSE +T1E08 002:489.425 JLINK_HasError() +T1E08 002:490.959 JLINK_IsHalted() +T1E08 002:491.782 - 0.822ms returns FALSE +T1E08 002:491.874 JLINK_HasError() +T1E08 002:495.234 JLINK_IsHalted() +T1E08 002:496.192 - 0.957ms returns FALSE +T1E08 002:496.298 JLINK_HasError() +T1E08 002:497.585 JLINK_IsHalted() +T1E08 002:498.404 - 0.818ms returns FALSE +T1E08 002:498.476 JLINK_HasError() +T1E08 002:500.330 JLINK_IsHalted() +T1E08 002:501.390 - 1.059ms returns FALSE +T1E08 002:501.497 JLINK_HasError() +T1E08 002:503.339 JLINK_IsHalted() +T1E08 002:504.386 - 1.046ms returns FALSE +T1E08 002:504.488 JLINK_HasError() +T1E08 002:506.347 JLINK_IsHalted() +T1E08 002:507.404 - 1.055ms returns FALSE +T1E08 002:507.570 JLINK_HasError() +T1E08 002:509.312 JLINK_IsHalted() +T1E08 002:510.337 - 1.023ms returns FALSE +T1E08 002:510.520 JLINK_HasError() +T1E08 002:512.312 JLINK_IsHalted() +T1E08 002:513.259 - 0.946ms returns FALSE +T1E08 002:513.362 JLINK_HasError() +T1E08 002:515.335 JLINK_IsHalted() +T1E08 002:516.457 - 1.121ms returns FALSE +T1E08 002:516.653 JLINK_HasError() +T1E08 002:518.322 JLINK_IsHalted() +T1E08 002:519.271 - 0.947ms returns FALSE +T1E08 002:519.476 JLINK_HasError() +T1E08 002:521.304 JLINK_IsHalted() +T1E08 002:522.180 - 0.875ms returns FALSE +T1E08 002:522.289 JLINK_HasError() +T1E08 002:526.326 JLINK_IsHalted() +T1E08 002:527.498 - 1.170ms returns FALSE +T1E08 002:527.682 JLINK_HasError() +T1E08 002:529.320 JLINK_IsHalted() +T1E08 002:530.685 - 1.363ms returns FALSE +T1E08 002:530.933 JLINK_HasError() +T1E08 002:532.895 JLINK_IsHalted() +T1E08 002:533.876 - 0.979ms returns FALSE +T1E08 002:534.073 JLINK_HasError() +T1E08 002:535.475 JLINK_IsHalted() +T1E08 002:536.290 - 0.814ms returns FALSE +T1E08 002:536.381 JLINK_HasError() +T1E08 002:537.681 JLINK_IsHalted() +T1E08 002:538.532 - 0.851ms returns FALSE +T1E08 002:538.623 JLINK_HasError() +T1E08 002:539.899 JLINK_IsHalted() +T1E08 002:540.769 - 0.869ms returns FALSE +T1E08 002:540.833 JLINK_HasError() +T1E08 002:542.232 JLINK_IsHalted() +T1E08 002:543.167 - 0.936ms returns FALSE +T1E08 002:543.268 JLINK_HasError() +T1E08 002:544.580 JLINK_IsHalted() +T1E08 002:545.534 - 0.954ms returns FALSE +T1E08 002:545.626 JLINK_HasError() +T1E08 002:546.979 JLINK_IsHalted() +T1E08 002:547.916 - 0.936ms returns FALSE +T1E08 002:548.018 JLINK_HasError() +T1E08 002:549.358 JLINK_IsHalted() +T1E08 002:550.286 - 0.927ms returns FALSE +T1E08 002:550.387 JLINK_HasError() +T1E08 002:551.654 JLINK_IsHalted() +T1E08 002:552.552 - 0.896ms returns FALSE +T1E08 002:552.647 JLINK_HasError() +T1E08 002:554.792 JLINK_IsHalted() +T1E08 002:571.803 - 17.008ms returns FALSE +T1E08 002:572.045 JLINK_HasError() +T1E08 002:574.113 JLINK_IsHalted() +T1E08 002:574.992 - 0.878ms returns FALSE +T1E08 002:575.101 JLINK_HasError() +T1E08 002:577.114 JLINK_IsHalted() +T1E08 002:578.279 - 1.164ms returns FALSE +T1E08 002:578.388 JLINK_HasError() +T1E08 002:579.624 JLINK_IsHalted() +T1E08 002:580.497 - 0.872ms returns FALSE +T1E08 002:580.615 JLINK_HasError() +T1E08 002:582.629 JLINK_IsHalted() +T1E08 002:583.664 - 1.032ms returns FALSE +T1E08 002:583.939 JLINK_HasError() +T1E08 002:585.612 JLINK_IsHalted() +T1E08 002:586.434 - 0.822ms returns FALSE +T1E08 002:586.549 JLINK_HasError() +T1E08 002:587.785 JLINK_IsHalted() +T1E08 002:588.678 - 0.891ms returns FALSE +T1E08 002:588.789 JLINK_HasError() +T1E08 002:590.065 JLINK_IsHalted() +T1E08 002:590.992 - 0.926ms returns FALSE +T1E08 002:591.100 JLINK_HasError() +T1E08 002:592.388 JLINK_IsHalted() +T1E08 002:593.304 - 0.915ms returns FALSE +T1E08 002:593.407 JLINK_HasError() +T1E08 002:594.697 JLINK_IsHalted() +T1E08 002:595.570 - 0.872ms returns FALSE +T1E08 002:595.685 JLINK_HasError() +T1E08 002:596.958 JLINK_IsHalted() +T1E08 002:597.890 - 0.931ms returns FALSE +T1E08 002:597.984 JLINK_HasError() +T1E08 002:599.176 JLINK_IsHalted() +T1E08 002:600.211 - 1.034ms returns FALSE +T1E08 002:600.305 JLINK_HasError() +T1E08 002:603.555 JLINK_IsHalted() +T1E08 002:604.500 - 0.944ms returns FALSE +T1E08 002:604.620 JLINK_HasError() +T1E08 002:606.555 JLINK_IsHalted() +T1E08 002:607.550 - 0.993ms returns FALSE +T1E08 002:607.746 JLINK_HasError() +T1E08 002:609.053 JLINK_IsHalted() +T1E08 002:610.016 - 0.962ms returns FALSE +T1E08 002:610.108 JLINK_HasError() +T1E08 002:611.276 JLINK_IsHalted() +T1E08 002:612.253 - 0.975ms returns FALSE +T1E08 002:612.367 JLINK_HasError() +T1E08 002:614.302 JLINK_IsHalted() +T1E08 002:615.426 - 1.124ms returns FALSE +T1E08 002:615.537 JLINK_HasError() +T1E08 002:617.406 JLINK_IsHalted() +T1E08 002:618.421 - 1.013ms returns FALSE +T1E08 002:618.615 JLINK_HasError() +T1E08 002:620.407 JLINK_IsHalted() +T1E08 002:621.376 - 0.968ms returns FALSE +T1E08 002:621.550 JLINK_HasError() +T1E08 002:623.412 JLINK_IsHalted() +T1E08 002:624.418 - 1.005ms returns FALSE +T1E08 002:624.698 JLINK_HasError() +T1E08 002:626.924 JLINK_IsHalted() +T1E08 002:627.937 - 1.012ms returns FALSE +T1E08 002:628.133 JLINK_HasError() +T1E08 002:629.919 JLINK_IsHalted() +T1E08 002:630.878 - 0.957ms returns FALSE +T1E08 002:631.022 JLINK_HasError() +T1E08 002:635.769 JLINK_IsHalted() +T1E08 002:636.668 - 0.899ms returns FALSE +T1E08 002:636.736 JLINK_HasError() +T1E08 002:638.041 JLINK_IsHalted() +T1E08 002:638.919 - 0.877ms returns FALSE +T1E08 002:638.999 JLINK_HasError() +T1E08 002:640.285 JLINK_IsHalted() +T1E08 002:641.030 - 0.744ms returns FALSE +T1E08 002:641.101 JLINK_HasError() +T1E08 002:642.395 JLINK_IsHalted() +T1E08 002:643.160 - 0.764ms returns FALSE +T1E08 002:643.236 JLINK_HasError() +T1E08 002:644.539 JLINK_IsHalted() +T1E08 002:645.421 - 0.881ms returns FALSE +T1E08 002:645.500 JLINK_HasError() +T1E08 002:646.843 JLINK_IsHalted() +T1E08 002:647.664 - 0.821ms returns FALSE +T1E08 002:647.742 JLINK_HasError() +T1E08 002:649.037 JLINK_IsHalted() +T1E08 002:649.916 - 0.878ms returns FALSE +T1E08 002:650.008 JLINK_HasError() +T1E08 002:652.066 JLINK_IsHalted() +T1E08 002:653.001 - 0.935ms returns FALSE +T1E08 002:653.105 JLINK_HasError() +T1E08 002:654.404 JLINK_IsHalted() +T1E08 002:655.160 - 0.756ms returns FALSE +T1E08 002:655.238 JLINK_HasError() +T1E08 002:656.534 JLINK_IsHalted() +T1E08 002:657.427 - 0.892ms returns FALSE +T1E08 002:657.508 JLINK_HasError() +T1E08 002:659.530 JLINK_IsHalted() +T1E08 002:660.365 - 0.834ms returns FALSE +T1E08 002:660.464 JLINK_HasError() +T1E08 002:661.792 JLINK_IsHalted() +T1E08 002:662.693 - 0.900ms returns FALSE +T1E08 002:662.776 JLINK_HasError() +T1E08 002:664.731 JLINK_IsHalted() +T1E08 002:665.539 - 0.808ms returns FALSE +T1E08 002:665.617 JLINK_HasError() +T1E08 002:666.911 JLINK_IsHalted() +T1E08 002:667.859 - 0.947ms returns FALSE +T1E08 002:667.947 JLINK_HasError() +T1E08 002:669.914 JLINK_IsHalted() +T1E08 002:670.854 - 0.940ms returns FALSE +T1E08 002:670.933 JLINK_HasError() +T1E08 002:672.168 JLINK_IsHalted() +T1E08 002:673.045 - 0.876ms returns FALSE +T1E08 002:673.137 JLINK_HasError() +T1E08 002:674.414 JLINK_IsHalted() +T1E08 002:675.166 - 0.751ms returns FALSE +T1E08 002:675.244 JLINK_HasError() +T1E08 002:676.576 JLINK_IsHalted() +T1E08 002:677.441 - 0.864ms returns FALSE +T1E08 002:677.522 JLINK_HasError() +T1E08 002:678.811 JLINK_IsHalted() +T1E08 002:679.673 - 0.861ms returns FALSE +T1E08 002:679.751 JLINK_HasError() +T1E08 002:681.037 JLINK_IsHalted() +T1E08 002:681.853 - 0.815ms returns FALSE +T1E08 002:681.928 JLINK_HasError() +T1E08 002:683.153 JLINK_IsHalted() +T1E08 002:683.910 - 0.757ms returns FALSE +T1E08 002:683.986 JLINK_HasError() +T1E08 002:685.356 JLINK_IsHalted() +T1E08 002:686.329 - 0.972ms returns FALSE +T1E08 002:686.436 JLINK_HasError() +T1E08 002:687.708 JLINK_IsHalted() +T1E08 002:688.539 - 0.829ms returns FALSE +T1E08 002:688.606 JLINK_HasError() +T1E08 002:689.903 JLINK_IsHalted() +T1E08 002:690.664 - 0.760ms returns FALSE +T1E08 002:690.741 JLINK_HasError() +T1E08 002:692.082 JLINK_IsHalted() +T1E08 002:693.332 - 1.248ms returns FALSE +T1E08 002:693.473 JLINK_HasError() +T1E08 002:697.418 JLINK_IsHalted() +T1E08 002:698.375 - 0.957ms returns FALSE +T1E08 002:698.466 JLINK_HasError() +T1E08 002:700.402 JLINK_IsHalted() +T1E08 002:701.434 - 1.030ms returns FALSE +T1E08 002:701.626 JLINK_HasError() +T1E08 002:703.846 JLINK_IsHalted() +T1E08 002:704.877 - 1.029ms returns FALSE +T1E08 002:705.069 JLINK_HasError() +T1E08 002:707.264 JLINK_IsHalted() +T1E08 002:708.182 - 0.917ms returns FALSE +T1E08 002:708.284 JLINK_HasError() +T1E08 002:711.536 JLINK_IsHalted() +T1E08 002:712.454 - 0.917ms returns FALSE +T1E08 002:712.574 JLINK_HasError() +T1E08 002:713.833 JLINK_IsHalted() +T1E08 002:714.684 - 0.851ms returns FALSE +T1E08 002:714.786 JLINK_HasError() +T1E08 002:716.061 JLINK_IsHalted() +T1E08 002:716.933 - 0.871ms returns FALSE +T1E08 002:717.034 JLINK_HasError() +T1E08 002:718.310 JLINK_IsHalted() +T1E08 002:719.194 - 0.883ms returns FALSE +T1E08 002:719.312 JLINK_HasError() +T1E08 002:720.539 JLINK_IsHalted() +T1E08 002:721.425 - 0.886ms returns FALSE +T1E08 002:721.494 JLINK_HasError() +T1E08 002:722.818 JLINK_IsHalted() +T1E08 002:723.706 - 0.887ms returns FALSE +T1E08 002:723.846 JLINK_HasError() +T1E08 002:725.827 JLINK_IsHalted() +T1E08 002:726.727 - 0.899ms returns FALSE +T1E08 002:726.834 JLINK_HasError() +T1E08 002:728.141 JLINK_IsHalted() +T1E08 002:728.923 - 0.781ms returns FALSE +T1E08 002:729.005 JLINK_HasError() +T1E08 002:730.368 JLINK_IsHalted() +T1E08 002:731.182 - 0.813ms returns FALSE +T1E08 002:731.290 JLINK_HasError() +T1E08 002:732.545 JLINK_IsHalted() +T1E08 002:733.428 - 0.882ms returns FALSE +T1E08 002:733.540 JLINK_HasError() +T1E08 002:734.811 JLINK_IsHalted() +T1E08 002:735.698 - 0.885ms returns FALSE +T1E08 002:735.798 JLINK_HasError() +T1E08 002:737.389 JLINK_IsHalted() +T1E08 002:738.437 - 1.046ms returns FALSE +T1E08 002:738.631 JLINK_HasError() +T1E08 002:740.842 JLINK_IsHalted() +T1E08 002:741.696 - 0.854ms returns FALSE +T1E08 002:741.814 JLINK_HasError() +T1E08 002:744.848 JLINK_IsHalted() +T1E08 002:745.742 - 0.893ms returns FALSE +T1E08 002:745.850 JLINK_HasError() +T1E08 002:747.142 JLINK_IsHalted() +T1E08 002:747.926 - 0.783ms returns FALSE +T1E08 002:748.007 JLINK_HasError() +T1E08 002:749.297 JLINK_IsHalted() +T1E08 002:750.043 - 0.745ms returns FALSE +T1E08 002:750.121 JLINK_HasError() +T1E08 002:751.482 JLINK_IsHalted() +T1E08 002:752.333 - 0.850ms returns FALSE +T1E08 002:752.441 JLINK_HasError() +T1E08 002:753.698 JLINK_IsHalted() +T1E08 002:754.554 - 0.855ms returns FALSE +T1E08 002:754.636 JLINK_HasError() +T1E08 002:755.926 JLINK_IsHalted() +T1E08 002:756.876 - 0.948ms returns FALSE +T1E08 002:756.981 JLINK_HasError() +T1E08 002:758.242 JLINK_IsHalted() +T1E08 002:759.044 - 0.801ms returns FALSE +T1E08 002:759.126 JLINK_HasError() +T1E08 002:760.436 JLINK_IsHalted() +T1E08 002:761.317 - 0.880ms returns FALSE +T1E08 002:761.425 JLINK_HasError() +T1E08 002:762.675 JLINK_IsHalted() +T1E08 002:763.544 - 0.868ms returns FALSE +T1E08 002:763.613 JLINK_HasError() +T1E08 002:764.946 JLINK_IsHalted() +T1E08 002:765.862 - 0.915ms returns FALSE +T1E08 002:765.944 JLINK_HasError() +T1E08 002:767.225 JLINK_IsHalted() +T1E08 002:768.056 - 0.829ms returns FALSE +T1E08 002:768.137 JLINK_HasError() +T1E08 002:769.432 JLINK_IsHalted() +T1E08 002:770.297 - 0.865ms returns FALSE +T1E08 002:770.390 JLINK_HasError() +T1E08 002:771.688 JLINK_IsHalted() +T1E08 002:772.556 - 0.867ms returns FALSE +T1E08 002:772.635 JLINK_HasError() +T1E08 002:773.956 JLINK_IsHalted() +T1E08 002:774.862 - 0.905ms returns FALSE +T1E08 002:774.944 JLINK_HasError() +T1E08 002:776.209 JLINK_IsHalted() +T1E08 002:777.085 - 0.875ms returns FALSE +T1E08 002:777.179 JLINK_HasError() +T1E08 002:778.435 JLINK_IsHalted() +T1E08 002:779.306 - 0.871ms returns FALSE +T1E08 002:779.402 JLINK_HasError() +T1E08 002:781.221 JLINK_IsHalted() +T1E08 002:782.056 - 0.835ms returns FALSE +T1E08 002:782.156 JLINK_HasError() +T1E08 002:783.431 JLINK_IsHalted() +T1E08 002:784.168 - 0.736ms returns FALSE +T1E08 002:784.235 JLINK_HasError() +T1E08 002:785.567 JLINK_IsHalted() +T1E08 002:786.491 - 0.923ms returns FALSE +T1E08 002:786.572 JLINK_HasError() +T1E08 002:787.847 JLINK_IsHalted() +T1E08 002:788.671 - 0.824ms returns FALSE +T1E08 002:788.739 JLINK_HasError() +T1E08 002:790.072 JLINK_IsHalted() +T1E08 002:790.929 - 0.856ms returns FALSE +T1E08 002:791.010 JLINK_HasError() +T1E08 002:792.333 JLINK_IsHalted() +T1E08 002:793.182 - 0.848ms returns FALSE +T1E08 002:793.265 JLINK_HasError() +T1E08 002:794.581 JLINK_IsHalted() +T1E08 002:795.433 - 0.851ms returns FALSE +T1E08 002:795.514 JLINK_HasError() +T1E08 002:796.866 JLINK_IsHalted() +T1E08 002:797.861 - 0.995ms returns FALSE +T1E08 002:797.934 JLINK_HasError() +T1E08 002:799.833 JLINK_IsHalted() +T1E08 002:800.810 - 0.975ms returns FALSE +T1E08 002:801.003 JLINK_HasError() +T1E08 002:803.191 JLINK_IsHalted() +T1E08 002:804.050 - 0.858ms returns FALSE +T1E08 002:804.130 JLINK_HasError() +T1E08 002:805.454 JLINK_IsHalted() +T1E08 002:806.316 - 0.861ms returns FALSE +T1E08 002:806.398 JLINK_HasError() +T1E08 002:807.699 JLINK_IsHalted() +T1E08 002:808.547 - 0.847ms returns FALSE +T1E08 002:808.618 JLINK_HasError() +T1E08 002:809.950 JLINK_IsHalted() +T1E08 002:810.880 - 0.928ms returns FALSE +T1E08 002:810.981 JLINK_HasError() +T1E08 002:812.186 JLINK_IsHalted() +T1E08 002:813.057 - 0.870ms returns FALSE +T1E08 002:813.139 JLINK_HasError() +T1E08 002:814.468 JLINK_IsHalted() +T1E08 002:815.309 - 0.840ms returns FALSE +T1E08 002:815.391 JLINK_HasError() +T1E08 002:816.718 JLINK_IsHalted() +T1E08 002:817.558 - 0.840ms returns FALSE +T1E08 002:817.640 JLINK_HasError() +T1E08 002:818.932 JLINK_IsHalted() +T1E08 002:819.869 - 0.936ms returns FALSE +T1E08 002:819.959 JLINK_HasError() +T1E08 002:822.955 JLINK_IsHalted() +T1E08 002:823.870 - 0.914ms returns FALSE +T1E08 002:823.977 JLINK_HasError() +T1E08 002:825.290 JLINK_IsHalted() +T1E08 002:826.186 - 0.895ms returns FALSE +T1E08 002:826.269 JLINK_HasError() +T1E08 002:827.535 JLINK_IsHalted() +T1E08 002:828.308 - 0.773ms returns FALSE +T1E08 002:828.388 JLINK_HasError() +T1E08 002:830.071 JLINK_IsHalted() +T1E08 002:830.925 - 0.854ms returns FALSE +T1E08 002:831.019 JLINK_HasError() +T1E08 002:832.291 JLINK_IsHalted() +T1E08 002:833.044 - 0.752ms returns FALSE +T1E08 002:833.111 JLINK_HasError() +T1E08 002:834.424 JLINK_IsHalted() +T1E08 002:835.365 - 0.939ms returns FALSE +T1E08 002:835.494 JLINK_HasError() +T1E08 002:836.943 JLINK_IsHalted() +T1E08 002:837.810 - 0.866ms returns FALSE +T1E08 002:837.907 JLINK_HasError() +T1E08 002:839.263 JLINK_IsHalted() +T1E08 002:840.058 - 0.794ms returns FALSE +T1E08 002:840.145 JLINK_HasError() +T1E08 002:841.420 JLINK_IsHalted() +T1E08 002:842.309 - 0.887ms returns FALSE +T1E08 002:842.413 JLINK_HasError() +T1E08 002:844.426 JLINK_IsHalted() +T1E08 002:845.328 - 0.901ms returns FALSE +T1E08 002:845.450 JLINK_HasError() +T1E08 002:847.431 JLINK_IsHalted() +T1E08 002:848.332 - 0.899ms returns FALSE +T1E08 002:848.465 JLINK_HasError() +T1E08 002:850.431 JLINK_IsHalted() +T1E08 002:851.320 - 0.889ms returns FALSE +T1E08 002:851.450 JLINK_HasError() +T1E08 002:854.445 JLINK_IsHalted() +T1E08 002:855.374 - 0.928ms returns FALSE +T1E08 002:855.482 JLINK_HasError() +T1E08 002:856.744 JLINK_IsHalted() +T1E08 002:857.550 - 0.805ms returns FALSE +T1E08 002:857.625 JLINK_HasError() +T1E08 002:858.978 JLINK_IsHalted() +T1E08 002:860.051 - 1.072ms returns FALSE +T1E08 002:860.132 JLINK_HasError() +T1E08 002:861.510 JLINK_IsHalted() +T1E08 002:862.448 - 0.937ms returns FALSE +T1E08 002:862.555 JLINK_HasError() +T1E08 002:863.872 JLINK_IsHalted() +T1E08 002:864.866 - 0.994ms returns FALSE +T1E08 002:864.945 JLINK_HasError() +T1E08 002:866.209 JLINK_IsHalted() +T1E08 002:867.049 - 0.839ms returns FALSE +T1E08 002:867.115 JLINK_HasError() +T1E08 002:868.470 JLINK_IsHalted() +T1E08 002:869.450 - 0.979ms returns FALSE +T1E08 002:869.553 JLINK_HasError() +T1E08 002:870.872 JLINK_IsHalted() +T1E08 002:871.682 - 0.809ms returns FALSE +T1E08 002:871.789 JLINK_HasError() +T1E08 002:873.115 JLINK_IsHalted() +T1E08 002:874.015 - 0.898ms returns FALSE +T1E08 002:874.122 JLINK_HasError() +T1E08 002:875.456 JLINK_IsHalted() +T1E08 002:876.323 - 0.866ms returns FALSE +T1E08 002:876.430 JLINK_HasError() +T1E08 002:877.735 JLINK_IsHalted() +T1E08 002:878.564 - 0.828ms returns FALSE +T1E08 002:878.667 JLINK_HasError() +T1E08 002:879.996 JLINK_IsHalted() +T1E08 002:880.873 - 0.875ms returns FALSE +T1E08 002:880.980 JLINK_HasError() +T1E08 002:882.244 JLINK_IsHalted() +T1E08 002:883.182 - 0.938ms returns FALSE +T1E08 002:883.280 JLINK_HasError() +T1E08 002:884.609 JLINK_IsHalted() +T1E08 002:885.666 - 1.057ms returns FALSE +T1E08 002:885.775 JLINK_HasError() +T1E08 002:887.621 JLINK_IsHalted() +T1E08 002:888.728 - 1.105ms returns FALSE +T1E08 002:888.923 JLINK_HasError() +T1E08 002:891.070 JLINK_IsHalted() +T1E08 002:892.130 - 1.058ms returns FALSE +T1E08 002:892.324 JLINK_HasError() +T1E08 002:894.541 JLINK_IsHalted() +T1E08 002:895.531 - 0.989ms returns FALSE +T1E08 002:895.639 JLINK_HasError() +T1E08 002:896.964 JLINK_IsHalted() +T1E08 002:897.885 - 0.919ms returns FALSE +T1E08 002:898.107 JLINK_HasError() +T1E08 002:903.422 JLINK_IsHalted() +T1E08 002:904.901 - 1.479ms returns FALSE +T1E08 002:904.989 JLINK_HasError() +T1E08 002:906.138 JLINK_IsHalted() +T1E08 002:907.139 - 1.000ms returns FALSE +T1E08 002:907.217 JLINK_HasError() +T1E08 002:908.725 JLINK_IsHalted() +T1E08 002:909.693 - 0.967ms returns FALSE +T1E08 002:909.772 JLINK_HasError() +T1E08 002:911.676 JLINK_IsHalted() +T1E08 002:912.609 - 0.932ms returns FALSE +T1E08 002:912.852 JLINK_HasError() +T1E08 002:914.687 JLINK_IsHalted() +T1E08 002:915.578 - 0.890ms returns FALSE +T1E08 002:915.748 JLINK_HasError() +T1E08 002:917.720 JLINK_IsHalted() +T1E08 002:918.778 - 1.057ms returns FALSE +T1E08 002:918.890 JLINK_HasError() +T1E08 002:920.749 JLINK_IsHalted() +T1E08 002:921.627 - 0.877ms returns FALSE +T1E08 002:921.740 JLINK_HasError() +T1E08 002:923.204 JLINK_IsHalted() +T1E08 002:924.061 - 0.856ms returns FALSE +T1E08 002:924.172 JLINK_HasError() +T1E08 002:925.492 JLINK_IsHalted() +T1E08 002:926.429 - 0.937ms returns FALSE +T1E08 002:926.508 JLINK_HasError() +T1E08 002:927.874 JLINK_IsHalted() +T1E08 002:929.043 - 1.169ms returns FALSE +T1E08 002:929.178 JLINK_HasError() +T1E08 002:932.938 JLINK_IsHalted() +T1E08 002:933.875 - 0.936ms returns FALSE +T1E08 002:933.968 JLINK_HasError() +T1E08 002:935.741 JLINK_IsHalted() +T1E08 002:936.569 - 0.827ms returns FALSE +T1E08 002:936.675 JLINK_HasError() +T1E08 002:937.935 JLINK_IsHalted() +T1E08 002:939.407 - 1.470ms returns FALSE +T1E08 002:939.584 JLINK_HasError() +T1E08 002:940.986 JLINK_IsHalted() +T1E08 002:941.875 - 0.888ms returns FALSE +T1E08 002:941.971 JLINK_HasError() +T1E08 002:943.251 JLINK_IsHalted() +T1E08 002:944.241 - 0.990ms returns FALSE +T1E08 002:944.377 JLINK_HasError() +T1E08 002:946.215 JLINK_IsHalted() +T1E08 002:947.067 - 0.851ms returns FALSE +T1E08 002:947.177 JLINK_HasError() +T1E08 002:949.251 JLINK_IsHalted() +T1E08 002:950.278 - 1.027ms returns FALSE +T1E08 002:950.371 JLINK_HasError() +T1E08 002:952.202 JLINK_IsHalted() +T1E08 002:953.198 - 0.993ms returns FALSE +T1E08 002:953.396 JLINK_HasError() +T1E08 002:955.201 JLINK_IsHalted() +T1E08 002:956.102 - 0.900ms returns FALSE +T1E08 002:956.233 JLINK_HasError() +T1E08 002:958.249 JLINK_IsHalted() +T1E08 002:959.307 - 1.057ms returns FALSE +T1E08 002:959.867 JLINK_HasError() +T1E08 002:964.317 JLINK_IsHalted() +T1E08 002:965.240 - 0.922ms returns FALSE +T1E08 002:965.336 JLINK_HasError() +T1E08 002:967.305 JLINK_IsHalted() +T1E08 002:968.276 - 0.970ms returns FALSE +T1E08 002:968.451 JLINK_HasError() +T1E08 002:969.818 JLINK_IsHalted() +T1E08 002:970.755 - 0.936ms returns FALSE +T1E08 002:970.891 JLINK_HasError() +T1E08 002:972.824 JLINK_IsHalted() +T1E08 002:973.833 - 1.007ms returns FALSE +T1E08 002:974.030 JLINK_HasError() +T1E08 002:975.791 JLINK_IsHalted() +T1E08 002:976.696 - 0.904ms returns FALSE +T1E08 002:976.772 JLINK_HasError() +T1E08 002:978.818 JLINK_IsHalted() +T1E08 002:979.782 - 0.963ms returns FALSE +T1E08 002:979.892 JLINK_HasError() +T1E08 002:981.818 JLINK_IsHalted() +T1E08 002:985.013 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 002:986.048 - 4.230ms returns TRUE +T1E08 002:986.176 JLINK_ReadReg(R15 (PC)) +T1E08 002:986.249 - 0.073ms returns 0x20000000 +T1E08 002:986.311 JLINK_ClrBPEx(BPHandle = 0x0000000B) +T1E08 002:986.365 - 0.054ms returns 0x00 +T1E08 002:986.433 JLINK_ReadReg(R0) +T1E08 002:986.488 - 0.055ms returns 0x00000000 +T1E08 002:987.459 JLINK_HasError() +T1E08 002:987.544 JLINK_WriteReg(R0, 0x00000001) +T1E08 002:987.610 - 0.065ms returns 0 +T1E08 002:987.666 JLINK_WriteReg(R1, 0x00010000) +T1E08 002:987.720 - 0.053ms returns 0 +T1E08 002:987.774 JLINK_WriteReg(R2, 0x000000FF) +T1E08 002:987.827 - 0.053ms returns 0 +T1E08 002:987.882 JLINK_WriteReg(R3, 0x00000000) +T1E08 002:987.935 - 0.053ms returns 0 +T1E08 002:987.989 JLINK_WriteReg(R4, 0x00000000) +T1E08 002:988.043 - 0.053ms returns 0 +T1E08 002:988.097 JLINK_WriteReg(R5, 0x00000000) +T1E08 002:988.151 - 0.053ms returns 0 +T1E08 002:988.205 JLINK_WriteReg(R6, 0x00000000) +T1E08 002:988.259 - 0.053ms returns 0 +T1E08 002:988.313 JLINK_WriteReg(R7, 0x00000000) +T1E08 002:988.368 - 0.054ms returns 0 +T1E08 002:988.427 JLINK_WriteReg(R8, 0x00000000) +T1E08 002:988.482 - 0.054ms returns 0 +T1E08 002:988.536 JLINK_WriteReg(R9, 0x20000180) +T1E08 002:988.591 - 0.054ms returns 0 +T1E08 002:988.655 JLINK_WriteReg(R10, 0x00000000) +T1E08 002:988.709 - 0.054ms returns 0 +T1E08 002:988.764 JLINK_WriteReg(R11, 0x00000000) +T1E08 002:988.818 - 0.053ms returns 0 +T1E08 002:988.872 JLINK_WriteReg(R12, 0x00000000) +T1E08 002:988.926 - 0.053ms returns 0 +T1E08 002:988.980 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 002:989.034 - 0.054ms returns 0 +T1E08 002:989.089 JLINK_WriteReg(R14, 0x20000001) +T1E08 002:989.142 - 0.053ms returns 0 +T1E08 002:989.196 JLINK_WriteReg(R15 (PC), 0x20000086) +T1E08 002:989.250 - 0.053ms returns 0 +T1E08 002:989.304 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 002:989.358 - 0.053ms returns 0 +T1E08 002:989.412 JLINK_WriteReg(MSP, 0x20001000) +T1E08 002:989.466 - 0.053ms returns 0 +T1E08 002:989.520 JLINK_WriteReg(PSP, 0x20001000) +T1E08 002:989.573 - 0.053ms returns 0 +T1E08 002:989.627 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 002:989.680 - 0.053ms returns 0 +T1E08 002:989.736 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 002:989.790 - 0.055ms returns 0x0000000C +T1E08 002:989.845 JLINK_Go() +T1E08 002:989.911 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 002:993.894 - 4.047ms +T1E08 002:994.160 JLINK_IsHalted() +T1E08 002:997.982 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 002:998.954 - 4.794ms returns TRUE +T1E08 002:999.150 JLINK_ReadReg(R15 (PC)) +T1E08 002:999.297 - 0.146ms returns 0x20000000 +T1E08 002:999.418 JLINK_ClrBPEx(BPHandle = 0x0000000C) +T1E08 002:999.534 - 0.116ms returns 0x00 +T1E08 002:999.589 JLINK_ReadReg(R0) +T1E08 002:999.643 - 0.053ms returns 0x00000000 +T1E08 003:064.510 JLINK_WriteMem(0x20000000, 0x184 Bytes, ...) +T1E08 003:064.598 Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ... +T1E08 003:064.712 CPU_WriteMem(388 bytes @ 0x20000000) +T1E08 003:066.937 - 2.427ms returns 0x184 +T1E08 003:067.200 JLINK_HasError() +T1E08 003:067.288 JLINK_WriteReg(R0, 0x08000000) +T1E08 003:067.384 - 0.096ms returns 0 +T1E08 003:067.453 JLINK_WriteReg(R1, 0x00B71B00) +T1E08 003:067.522 - 0.068ms returns 0 +T1E08 003:067.588 JLINK_WriteReg(R2, 0x00000002) +T1E08 003:067.803 - 0.214ms returns 0 +T1E08 003:067.885 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:067.947 - 0.062ms returns 0 +T1E08 003:068.025 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:068.080 - 0.054ms returns 0 +T1E08 003:068.134 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:068.200 - 0.066ms returns 0 +T1E08 003:068.254 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:068.308 - 0.053ms returns 0 +T1E08 003:068.363 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:068.416 - 0.053ms returns 0 +T1E08 003:068.471 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:068.524 - 0.053ms returns 0 +T1E08 003:068.578 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:068.632 - 0.053ms returns 0 +T1E08 003:068.727 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:068.809 - 0.082ms returns 0 +T1E08 003:068.878 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:068.945 - 0.067ms returns 0 +T1E08 003:069.013 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:069.081 - 0.067ms returns 0 +T1E08 003:069.151 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:069.222 - 0.071ms returns 0 +T1E08 003:069.290 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:069.360 - 0.069ms returns 0 +T1E08 003:069.429 JLINK_WriteReg(R15 (PC), 0x20000054) +T1E08 003:069.498 - 0.069ms returns 0 +T1E08 003:069.572 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:069.643 - 0.072ms returns 0 +T1E08 003:069.716 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:069.787 - 0.070ms returns 0 +T1E08 003:069.857 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:069.928 - 0.071ms returns 0 +T1E08 003:070.001 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:070.071 - 0.070ms returns 0 +T1E08 003:070.142 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:070.233 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:071.118 - 0.975ms returns 0x0000000D +T1E08 003:071.225 JLINK_Go() +T1E08 003:071.308 CPU_WriteMem(2 bytes @ 0x20000000) +T1E08 003:072.264 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:076.020 - 4.794ms +T1E08 003:076.127 JLINK_IsHalted() +T1E08 003:079.160 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:080.038 - 3.909ms returns TRUE +T1E08 003:080.150 JLINK_ReadReg(R15 (PC)) +T1E08 003:080.222 - 0.072ms returns 0x20000000 +T1E08 003:080.290 JLINK_ClrBPEx(BPHandle = 0x0000000D) +T1E08 003:080.358 - 0.067ms returns 0x00 +T1E08 003:080.427 JLINK_ReadReg(R0) +T1E08 003:080.496 - 0.068ms returns 0x00000000 +T1E08 003:081.243 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:081.322 Data: 00 EF 01 20 B5 02 00 08 A9 8F 00 08 41 7D 00 08 ... +T1E08 003:081.421 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:084.371 - 3.128ms returns 0x27C +T1E08 003:084.477 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:084.544 Data: E8 F9 00 F0 65 FD 04 00 00 20 00 21 0F F0 B8 FA ... +T1E08 003:084.654 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:087.145 - 2.667ms returns 0x184 +T1E08 003:087.290 JLINK_HasError() +T1E08 003:087.364 JLINK_WriteReg(R0, 0x08000000) +T1E08 003:087.434 - 0.069ms returns 0 +T1E08 003:087.505 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:087.575 - 0.070ms returns 0 +T1E08 003:087.646 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:087.710 - 0.064ms returns 0 +T1E08 003:087.780 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:087.844 - 0.064ms returns 0 +T1E08 003:087.914 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:087.979 - 0.065ms returns 0 +T1E08 003:088.049 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:088.117 - 0.067ms returns 0 +T1E08 003:088.190 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:088.258 - 0.068ms returns 0 +T1E08 003:088.332 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:088.403 - 0.071ms returns 0 +T1E08 003:088.463 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:088.524 - 0.061ms returns 0 +T1E08 003:088.582 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:088.644 - 0.062ms returns 0 +T1E08 003:088.702 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:088.759 - 0.057ms returns 0 +T1E08 003:088.831 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:088.894 - 0.063ms returns 0 +T1E08 003:088.955 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:089.023 - 0.067ms returns 0 +T1E08 003:089.084 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:089.281 - 0.197ms returns 0 +T1E08 003:089.351 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:089.407 - 0.057ms returns 0 +T1E08 003:089.468 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:089.524 - 0.056ms returns 0 +T1E08 003:089.584 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:089.649 - 0.064ms returns 0 +T1E08 003:089.709 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:089.774 - 0.064ms returns 0 +T1E08 003:089.834 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:089.900 - 0.066ms returns 0 +T1E08 003:089.961 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:090.017 - 0.056ms returns 0 +T1E08 003:090.079 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:090.137 - 0.058ms returns 0x0000000E +T1E08 003:090.197 JLINK_Go() +T1E08 003:090.268 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:093.985 - 3.787ms +T1E08 003:094.084 JLINK_IsHalted() +T1E08 003:094.891 - 0.806ms returns FALSE +T1E08 003:095.025 JLINK_HasError() +T1E08 003:100.641 JLINK_IsHalted() +T1E08 003:103.743 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:104.721 - 4.079ms returns TRUE +T1E08 003:104.836 JLINK_ReadReg(R15 (PC)) +T1E08 003:104.912 - 0.075ms returns 0x20000000 +T1E08 003:104.978 JLINK_ClrBPEx(BPHandle = 0x0000000E) +T1E08 003:105.045 - 0.066ms returns 0x00 +T1E08 003:105.135 JLINK_ReadReg(R0) +T1E08 003:105.213 - 0.077ms returns 0x00000000 +T1E08 003:106.211 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:106.320 Data: 81 FC 20 46 1C BC 5D F8 14 FB 00 00 15 09 00 00 ... +T1E08 003:106.439 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:109.648 - 3.436ms returns 0x27C +T1E08 003:109.851 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:109.976 Data: C2 11 F9 D0 C0 1A 0A 06 03 D0 C0 1E 10 BD C0 1A ... +T1E08 003:110.164 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:112.511 - 2.660ms returns 0x184 +T1E08 003:112.624 JLINK_HasError() +T1E08 003:112.693 JLINK_WriteReg(R0, 0x08000400) +T1E08 003:112.761 - 0.068ms returns 0 +T1E08 003:112.831 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:112.895 - 0.064ms returns 0 +T1E08 003:112.961 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:113.033 - 0.072ms returns 0 +T1E08 003:113.099 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:113.163 - 0.064ms returns 0 +T1E08 003:113.228 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:113.292 - 0.063ms returns 0 +T1E08 003:113.357 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:113.420 - 0.063ms returns 0 +T1E08 003:113.486 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:113.547 - 0.061ms returns 0 +T1E08 003:113.601 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:113.655 - 0.053ms returns 0 +T1E08 003:113.709 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:113.762 - 0.053ms returns 0 +T1E08 003:113.817 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:113.871 - 0.053ms returns 0 +T1E08 003:113.925 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:113.984 - 0.058ms returns 0 +T1E08 003:114.053 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:114.108 - 0.054ms returns 0 +T1E08 003:114.162 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:114.215 - 0.053ms returns 0 +T1E08 003:114.294 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:114.349 - 0.055ms returns 0 +T1E08 003:114.403 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:114.457 - 0.053ms returns 0 +T1E08 003:114.512 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:114.565 - 0.053ms returns 0 +T1E08 003:114.620 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:114.673 - 0.053ms returns 0 +T1E08 003:114.727 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:114.780 - 0.053ms returns 0 +T1E08 003:114.835 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:114.888 - 0.053ms returns 0 +T1E08 003:115.042 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:115.127 - 0.085ms returns 0 +T1E08 003:115.196 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:115.263 - 0.067ms returns 0x0000000F +T1E08 003:115.330 JLINK_Go() +T1E08 003:115.408 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:118.989 - 3.658ms +T1E08 003:119.099 JLINK_IsHalted() +T1E08 003:119.946 - 0.846ms returns FALSE +T1E08 003:120.049 JLINK_HasError() +T1E08 003:121.334 JLINK_IsHalted() +T1E08 003:122.185 - 0.850ms returns FALSE +T1E08 003:122.436 JLINK_HasError() +T1E08 003:124.332 JLINK_IsHalted() +T1E08 003:127.302 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:128.580 - 4.248ms returns TRUE +T1E08 003:128.679 JLINK_ReadReg(R15 (PC)) +T1E08 003:128.745 - 0.066ms returns 0x20000000 +T1E08 003:128.813 JLINK_ClrBPEx(BPHandle = 0x0000000F) +T1E08 003:128.880 - 0.066ms returns 0x00 +T1E08 003:128.946 JLINK_ReadReg(R0) +T1E08 003:129.019 - 0.072ms returns 0x00000000 +T1E08 003:130.156 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:130.263 Data: A9 FA 04 60 10 BD 2D E9 F0 47 0D 46 99 46 92 46 ... +T1E08 003:130.373 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:133.248 - 3.092ms returns 0x27C +T1E08 003:133.361 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:133.426 Data: CD E9 0A 01 0D F0 9E FD 02 46 0B 98 C0 0F 01 D0 ... +T1E08 003:133.533 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:135.759 - 2.398ms returns 0x184 +T1E08 003:135.866 JLINK_HasError() +T1E08 003:135.948 JLINK_WriteReg(R0, 0x08000800) +T1E08 003:136.028 - 0.080ms returns 0 +T1E08 003:136.105 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:136.183 - 0.077ms returns 0 +T1E08 003:136.260 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:136.336 - 0.075ms returns 0 +T1E08 003:136.412 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:136.490 - 0.077ms returns 0 +T1E08 003:136.566 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:136.640 - 0.074ms returns 0 +T1E08 003:136.717 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:136.794 - 0.076ms returns 0 +T1E08 003:136.871 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:136.947 - 0.076ms returns 0 +T1E08 003:137.016 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:137.084 - 0.068ms returns 0 +T1E08 003:137.142 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:137.209 - 0.067ms returns 0 +T1E08 003:137.274 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:137.375 - 0.100ms returns 0 +T1E08 003:137.451 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:137.524 - 0.072ms returns 0 +T1E08 003:137.580 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:137.635 - 0.055ms returns 0 +T1E08 003:137.690 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:137.743 - 0.053ms returns 0 +T1E08 003:137.805 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:137.858 - 0.053ms returns 0 +T1E08 003:137.912 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:137.966 - 0.053ms returns 0 +T1E08 003:138.020 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:138.074 - 0.053ms returns 0 +T1E08 003:138.128 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:138.181 - 0.053ms returns 0 +T1E08 003:138.235 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:138.288 - 0.053ms returns 0 +T1E08 003:138.358 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:138.412 - 0.054ms returns 0 +T1E08 003:138.469 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:138.523 - 0.054ms returns 0 +T1E08 003:138.580 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:138.635 - 0.055ms returns 0x00000010 +T1E08 003:138.690 JLINK_Go() +T1E08 003:138.755 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:142.770 - 4.079ms +T1E08 003:142.850 JLINK_IsHalted() +T1E08 003:144.222 - 1.371ms returns FALSE +T1E08 003:144.336 JLINK_HasError() +T1E08 003:146.026 JLINK_IsHalted() +T1E08 003:146.822 - 0.796ms returns FALSE +T1E08 003:146.920 JLINK_HasError() +T1E08 003:149.030 JLINK_IsHalted() +T1E08 003:151.963 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:152.898 - 3.866ms returns TRUE +T1E08 003:152.986 JLINK_ReadReg(R15 (PC)) +T1E08 003:153.057 - 0.071ms returns 0x20000000 +T1E08 003:153.123 JLINK_ClrBPEx(BPHandle = 0x00000010) +T1E08 003:153.188 - 0.064ms returns 0x00 +T1E08 003:153.253 JLINK_ReadReg(R0) +T1E08 003:153.307 - 0.054ms returns 0x00000000 +T1E08 003:154.178 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:154.269 Data: 08 F8 01 CD EE E7 A8 F1 01 00 03 70 21 88 09 05 ... +T1E08 003:154.361 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:157.297 - 3.119ms returns 0x27C +T1E08 003:157.410 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:157.477 Data: 32 48 78 44 80 1C 03 AC 0D C8 84 E8 0D 00 41 F6 ... +T1E08 003:157.592 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:159.830 - 2.419ms returns 0x184 +T1E08 003:159.955 JLINK_HasError() +T1E08 003:160.045 JLINK_WriteReg(R0, 0x08000C00) +T1E08 003:160.115 - 0.069ms returns 0 +T1E08 003:160.207 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:160.341 - 0.133ms returns 0 +T1E08 003:160.484 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:160.561 - 0.078ms returns 0 +T1E08 003:160.631 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:160.699 - 0.067ms returns 0 +T1E08 003:160.780 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:160.876 - 0.095ms returns 0 +T1E08 003:161.004 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:161.124 - 0.120ms returns 0 +T1E08 003:161.205 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:161.284 - 0.078ms returns 0 +T1E08 003:161.365 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:161.457 - 0.092ms returns 0 +T1E08 003:161.540 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:161.617 - 0.076ms returns 0 +T1E08 003:161.695 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:161.772 - 0.077ms returns 0 +T1E08 003:161.849 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:161.926 - 0.076ms returns 0 +T1E08 003:162.003 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:162.077 - 0.074ms returns 0 +T1E08 003:162.146 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:162.218 - 0.071ms returns 0 +T1E08 003:162.297 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:162.376 - 0.079ms returns 0 +T1E08 003:162.454 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:162.530 - 0.076ms returns 0 +T1E08 003:162.608 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:162.684 - 0.076ms returns 0 +T1E08 003:162.769 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:162.846 - 0.077ms returns 0 +T1E08 003:162.923 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:162.999 - 0.075ms returns 0 +T1E08 003:163.075 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:163.152 - 0.077ms returns 0 +T1E08 003:163.229 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:163.304 - 0.074ms returns 0 +T1E08 003:163.382 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:163.469 - 0.086ms returns 0x00000011 +T1E08 003:163.546 JLINK_Go() +T1E08 003:163.650 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:167.483 - 3.936ms +T1E08 003:167.600 JLINK_IsHalted() +T1E08 003:168.460 - 0.859ms returns FALSE +T1E08 003:168.548 JLINK_HasError() +T1E08 003:170.860 JLINK_IsHalted() +T1E08 003:171.771 - 0.911ms returns FALSE +T1E08 003:171.867 JLINK_HasError() +T1E08 003:173.845 JLINK_IsHalted() +T1E08 003:177.106 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:178.027 - 4.181ms returns TRUE +T1E08 003:178.162 JLINK_ReadReg(R15 (PC)) +T1E08 003:178.319 - 0.157ms returns 0x20000000 +T1E08 003:178.427 JLINK_ClrBPEx(BPHandle = 0x00000011) +T1E08 003:178.682 - 0.254ms returns 0x00 +T1E08 003:178.769 JLINK_ReadReg(R0) +T1E08 003:178.847 - 0.078ms returns 0x00000000 +T1E08 003:180.092 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:180.198 Data: 30 BC 4F F0 00 00 70 47 29 BA B1 FA 81 F1 11 F0 ... +T1E08 003:180.315 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:183.302 - 3.209ms returns 0x27C +T1E08 003:183.411 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:183.477 Data: 39 32 C3 F6 19 73 0F C4 00 20 40 B2 BD EC 02 8B ... +T1E08 003:183.581 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:185.786 - 2.374ms returns 0x184 +T1E08 003:185.899 JLINK_HasError() +T1E08 003:185.980 JLINK_WriteReg(R0, 0x08001000) +T1E08 003:186.064 - 0.083ms returns 0 +T1E08 003:186.139 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:186.222 - 0.083ms returns 0 +T1E08 003:186.299 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:186.375 - 0.076ms returns 0 +T1E08 003:186.454 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:186.523 - 0.069ms returns 0 +T1E08 003:186.599 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:186.676 - 0.076ms returns 0 +T1E08 003:186.757 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:186.833 - 0.076ms returns 0 +T1E08 003:186.914 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:186.992 - 0.077ms returns 0 +T1E08 003:187.062 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:187.129 - 0.067ms returns 0 +T1E08 003:187.203 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:187.278 - 0.075ms returns 0 +T1E08 003:187.357 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:187.448 - 0.091ms returns 0 +T1E08 003:187.546 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:187.626 - 0.079ms returns 0 +T1E08 003:187.705 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:187.862 - 0.156ms returns 0 +T1E08 003:187.942 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:188.022 - 0.079ms returns 0 +T1E08 003:188.102 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:188.181 - 0.079ms returns 0 +T1E08 003:188.261 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:188.341 - 0.079ms returns 0 +T1E08 003:188.421 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:188.512 - 0.090ms returns 0 +T1E08 003:188.592 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:188.670 - 0.078ms returns 0 +T1E08 003:188.751 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:188.830 - 0.079ms returns 0 +T1E08 003:188.909 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:188.987 - 0.077ms returns 0 +T1E08 003:189.066 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:189.143 - 0.077ms returns 0 +T1E08 003:189.224 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:189.286 - 0.061ms returns 0x00000012 +T1E08 003:189.341 JLINK_Go() +T1E08 003:189.408 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:193.292 - 3.949ms +T1E08 003:193.446 JLINK_IsHalted() +T1E08 003:194.300 - 0.854ms returns FALSE +T1E08 003:194.408 JLINK_HasError() +T1E08 003:201.710 JLINK_IsHalted() +T1E08 003:205.185 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:206.250 - 4.538ms returns TRUE +T1E08 003:206.377 JLINK_ReadReg(R15 (PC)) +T1E08 003:206.466 - 0.089ms returns 0x20000000 +T1E08 003:206.549 JLINK_ClrBPEx(BPHandle = 0x00000012) +T1E08 003:206.629 - 0.080ms returns 0x00 +T1E08 003:206.712 JLINK_ReadReg(R0) +T1E08 003:206.795 - 0.083ms returns 0x00000000 +T1E08 003:208.052 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:208.158 Data: 08 1A 8D ED 09 0A 2E EE 0E 0A 2F EE 0F 1A 30 EE ... +T1E08 003:208.263 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:211.230 - 3.177ms returns 0x27C +T1E08 003:211.424 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:211.576 Data: 08 9A 21 EE 89 9A 73 EE C9 3A 94 ED 00 9A 2A EE ... +T1E08 003:211.724 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:214.238 - 2.813ms returns 0x184 +T1E08 003:214.354 JLINK_HasError() +T1E08 003:214.434 JLINK_WriteReg(R0, 0x08001400) +T1E08 003:214.536 - 0.102ms returns 0 +T1E08 003:214.628 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:214.705 - 0.077ms returns 0 +T1E08 003:214.783 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:214.854 - 0.070ms returns 0 +T1E08 003:214.919 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:214.989 - 0.070ms returns 0 +T1E08 003:215.054 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:215.121 - 0.066ms returns 0 +T1E08 003:215.179 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:215.236 - 0.056ms returns 0 +T1E08 003:215.292 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:215.349 - 0.057ms returns 0 +T1E08 003:215.407 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:215.480 - 0.072ms returns 0 +T1E08 003:215.544 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:215.602 - 0.058ms returns 0 +T1E08 003:215.659 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:215.717 - 0.057ms returns 0 +T1E08 003:215.775 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:215.832 - 0.057ms returns 0 +T1E08 003:215.890 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:215.957 - 0.066ms returns 0 +T1E08 003:216.015 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:216.073 - 0.057ms returns 0 +T1E08 003:216.130 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:216.195 - 0.064ms returns 0 +T1E08 003:216.272 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:216.347 - 0.075ms returns 0 +T1E08 003:216.424 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:216.501 - 0.077ms returns 0 +T1E08 003:216.580 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:216.657 - 0.077ms returns 0 +T1E08 003:216.735 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:216.813 - 0.077ms returns 0 +T1E08 003:216.896 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:216.973 - 0.076ms returns 0 +T1E08 003:217.053 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:217.130 - 0.076ms returns 0 +T1E08 003:217.208 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:217.300 - 0.092ms returns 0x00000013 +T1E08 003:217.384 JLINK_Go() +T1E08 003:217.483 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:221.166 - 3.781ms +T1E08 003:221.340 JLINK_IsHalted() +T1E08 003:223.091 - 1.750ms returns FALSE +T1E08 003:223.270 JLINK_HasError() +T1E08 003:224.938 JLINK_IsHalted() +T1E08 003:227.980 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:228.893 - 3.954ms returns TRUE +T1E08 003:229.428 JLINK_ReadReg(R15 (PC)) +T1E08 003:229.521 - 0.093ms returns 0x20000000 +T1E08 003:229.577 JLINK_ClrBPEx(BPHandle = 0x00000013) +T1E08 003:229.632 - 0.054ms returns 0x00 +T1E08 003:229.687 JLINK_ReadReg(R0) +T1E08 003:229.741 - 0.053ms returns 0x00000000 +T1E08 003:230.715 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:230.793 Data: A1 FA 94 ED 00 1A 94 ED 01 2A 94 ED 02 3A 94 ED ... +T1E08 003:230.886 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:233.772 - 3.056ms returns 0x27C +T1E08 003:233.893 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:233.971 Data: 03 1A 24 EE 00 0A 39 EE 41 9A 38 EE 40 8A 94 ED ... +T1E08 003:234.095 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:236.359 - 2.465ms returns 0x184 +T1E08 003:236.476 JLINK_HasError() +T1E08 003:236.560 JLINK_WriteReg(R0, 0x08001800) +T1E08 003:236.643 - 0.082ms returns 0 +T1E08 003:236.724 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:236.861 - 0.136ms returns 0 +T1E08 003:236.994 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:237.105 - 0.164ms returns 0 +T1E08 003:237.510 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:237.593 - 0.083ms returns 0 +T1E08 003:237.680 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:237.758 - 0.077ms returns 0 +T1E08 003:237.835 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:237.912 - 0.076ms returns 0 +T1E08 003:237.989 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:238.065 - 0.076ms returns 0 +T1E08 003:238.142 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:238.218 - 0.075ms returns 0 +T1E08 003:238.295 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:238.371 - 0.076ms returns 0 +T1E08 003:238.448 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:238.524 - 0.075ms returns 0 +T1E08 003:238.601 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:238.677 - 0.076ms returns 0 +T1E08 003:238.755 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:238.830 - 0.075ms returns 0 +T1E08 003:238.908 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:238.984 - 0.076ms returns 0 +T1E08 003:239.061 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:239.138 - 0.077ms returns 0 +T1E08 003:239.220 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:239.296 - 0.076ms returns 0 +T1E08 003:239.377 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:239.453 - 0.076ms returns 0 +T1E08 003:239.530 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:239.606 - 0.076ms returns 0 +T1E08 003:239.689 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:239.765 - 0.076ms returns 0 +T1E08 003:239.842 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:239.918 - 0.076ms returns 0 +T1E08 003:239.996 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:240.079 - 0.083ms returns 0 +T1E08 003:240.159 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:240.241 - 0.083ms returns 0x00000014 +T1E08 003:240.324 JLINK_Go() +T1E08 003:240.421 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:244.106 - 3.781ms +T1E08 003:244.200 JLINK_IsHalted() +T1E08 003:245.067 - 0.866ms returns FALSE +T1E08 003:245.174 JLINK_HasError() +T1E08 003:246.556 JLINK_IsHalted() +T1E08 003:247.444 - 0.888ms returns FALSE +T1E08 003:247.522 JLINK_HasError() +T1E08 003:249.273 JLINK_IsHalted() +T1E08 003:252.159 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:252.982 - 3.707ms returns TRUE +T1E08 003:253.060 JLINK_ReadReg(R15 (PC)) +T1E08 003:253.130 - 0.070ms returns 0x20000000 +T1E08 003:253.198 JLINK_ClrBPEx(BPHandle = 0x00000014) +T1E08 003:253.312 - 0.113ms returns 0x00 +T1E08 003:253.563 JLINK_ReadReg(R0) +T1E08 003:253.869 - 0.305ms returns 0x00000000 +T1E08 003:254.880 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:254.960 Data: 40 F6 44 11 C2 F2 00 01 00 28 08 60 7B D0 00 20 ... +T1E08 003:255.057 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:258.353 - 3.472ms returns 0x27C +T1E08 003:258.557 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:258.678 Data: EB FB 80 BD 00 2A 08 BF 70 47 70 B5 1C 46 15 46 ... +T1E08 003:258.870 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:261.204 - 2.646ms returns 0x184 +T1E08 003:261.352 JLINK_HasError() +T1E08 003:261.460 JLINK_WriteReg(R0, 0x08001C00) +T1E08 003:261.534 - 0.074ms returns 0 +T1E08 003:261.600 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:261.674 - 0.074ms returns 0 +T1E08 003:261.768 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:261.842 - 0.074ms returns 0 +T1E08 003:261.933 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:262.009 - 0.076ms returns 0 +T1E08 003:262.082 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:262.152 - 0.070ms returns 0 +T1E08 003:262.224 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:262.349 - 0.123ms returns 0 +T1E08 003:262.572 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:262.670 - 0.098ms returns 0 +T1E08 003:262.739 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:262.800 - 0.061ms returns 0 +T1E08 003:262.863 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:262.917 - 0.054ms returns 0 +T1E08 003:262.979 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:263.038 - 0.058ms returns 0 +T1E08 003:263.105 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:263.162 - 0.056ms returns 0 +T1E08 003:263.230 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:263.309 - 0.079ms returns 0 +T1E08 003:263.389 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:263.468 - 0.079ms returns 0 +T1E08 003:263.548 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:263.628 - 0.081ms returns 0 +T1E08 003:263.728 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:263.808 - 0.079ms returns 0 +T1E08 003:263.888 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:263.965 - 0.078ms returns 0 +T1E08 003:264.045 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:264.124 - 0.079ms returns 0 +T1E08 003:264.203 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:264.286 - 0.082ms returns 0 +T1E08 003:264.366 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:264.444 - 0.078ms returns 0 +T1E08 003:264.524 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:264.603 - 0.078ms returns 0 +T1E08 003:264.684 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:264.765 - 0.082ms returns 0x00000015 +T1E08 003:264.846 JLINK_Go() +T1E08 003:264.943 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:268.740 - 3.893ms +T1E08 003:268.881 JLINK_IsHalted() +T1E08 003:269.747 - 0.865ms returns FALSE +T1E08 003:269.868 JLINK_HasError() +T1E08 003:271.068 JLINK_IsHalted() +T1E08 003:272.221 - 1.152ms returns FALSE +T1E08 003:272.314 JLINK_HasError() +T1E08 003:273.938 JLINK_IsHalted() +T1E08 003:277.141 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:279.067 - 5.127ms returns TRUE +T1E08 003:279.184 JLINK_ReadReg(R15 (PC)) +T1E08 003:279.248 - 0.064ms returns 0x20000000 +T1E08 003:279.322 JLINK_ClrBPEx(BPHandle = 0x00000015) +T1E08 003:279.398 - 0.076ms returns 0x00 +T1E08 003:279.476 JLINK_ReadReg(R0) +T1E08 003:279.558 - 0.082ms returns 0x00000000 +T1E08 003:280.985 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:281.101 Data: 05 E0 FE 24 03 E0 38 46 00 F0 6E FB FF 24 D8 F8 ... +T1E08 003:281.220 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:284.235 - 3.249ms returns 0x27C +T1E08 003:284.358 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:284.416 Data: 70 47 FE 23 58 B2 70 47 40 F2 C0 0C C2 F2 00 0C ... +T1E08 003:284.507 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:286.667 - 2.308ms returns 0x184 +T1E08 003:286.783 JLINK_HasError() +T1E08 003:286.858 JLINK_WriteReg(R0, 0x08002000) +T1E08 003:286.939 - 0.080ms returns 0 +T1E08 003:287.006 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:287.083 - 0.076ms returns 0 +T1E08 003:287.150 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:287.215 - 0.065ms returns 0 +T1E08 003:287.283 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:287.348 - 0.065ms returns 0 +T1E08 003:287.426 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:287.492 - 0.066ms returns 0 +T1E08 003:287.562 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:287.616 - 0.054ms returns 0 +T1E08 003:287.670 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:287.738 - 0.068ms returns 0 +T1E08 003:287.793 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:287.846 - 0.053ms returns 0 +T1E08 003:287.900 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:287.954 - 0.053ms returns 0 +T1E08 003:288.024 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:288.097 - 0.073ms returns 0 +T1E08 003:288.172 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:288.245 - 0.073ms returns 0 +T1E08 003:288.318 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:288.389 - 0.070ms returns 0 +T1E08 003:288.460 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:288.531 - 0.070ms returns 0 +T1E08 003:288.605 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:288.664 - 0.059ms returns 0 +T1E08 003:288.718 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:288.772 - 0.053ms returns 0 +T1E08 003:288.827 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:288.881 - 0.054ms returns 0 +T1E08 003:288.936 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:288.989 - 0.053ms returns 0 +T1E08 003:289.044 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:289.106 - 0.062ms returns 0 +T1E08 003:289.160 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:289.213 - 0.053ms returns 0 +T1E08 003:289.267 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:289.323 - 0.056ms returns 0 +T1E08 003:289.380 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:289.438 - 0.058ms returns 0x00000016 +T1E08 003:289.493 JLINK_Go() +T1E08 003:289.563 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:293.029 - 3.535ms +T1E08 003:293.144 JLINK_IsHalted() +T1E08 003:293.938 - 0.793ms returns FALSE +T1E08 003:294.048 JLINK_HasError() +T1E08 003:297.558 JLINK_IsHalted() +T1E08 003:300.628 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:301.800 - 4.241ms returns TRUE +T1E08 003:301.917 JLINK_ReadReg(R15 (PC)) +T1E08 003:302.013 - 0.096ms returns 0x20000000 +T1E08 003:302.148 JLINK_ClrBPEx(BPHandle = 0x00000016) +T1E08 003:302.267 - 0.118ms returns 0x00 +T1E08 003:302.390 JLINK_ReadReg(R0) +T1E08 003:302.508 - 0.118ms returns 0x00000000 +T1E08 003:303.647 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:303.728 Data: 21 FF 81 46 58 46 49 46 FF F7 0C FE 00 28 DC D0 ... +T1E08 003:303.820 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:306.731 - 3.082ms returns 0x27C +T1E08 003:306.953 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:307.153 Data: C0 12 C2 F2 01 0C 0C EB C2 02 D2 F8 00 34 D2 F8 ... +T1E08 003:307.370 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:309.710 - 2.757ms returns 0x184 +T1E08 003:309.840 JLINK_HasError() +T1E08 003:309.914 JLINK_WriteReg(R0, 0x08002400) +T1E08 003:309.982 - 0.068ms returns 0 +T1E08 003:310.052 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:310.118 - 0.065ms returns 0 +T1E08 003:310.187 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:310.252 - 0.064ms returns 0 +T1E08 003:310.321 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:310.420 - 0.099ms returns 0 +T1E08 003:310.546 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:310.684 - 0.138ms returns 0 +T1E08 003:310.861 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:310.990 - 0.130ms returns 0 +T1E08 003:311.122 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:311.240 - 0.119ms returns 0 +T1E08 003:311.366 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:311.502 - 0.135ms returns 0 +T1E08 003:311.628 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:311.722 - 0.094ms returns 0 +T1E08 003:311.780 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:311.834 - 0.053ms returns 0 +T1E08 003:311.892 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:311.946 - 0.054ms returns 0 +T1E08 003:312.004 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:312.058 - 0.053ms returns 0 +T1E08 003:312.115 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:312.170 - 0.054ms returns 0 +T1E08 003:312.228 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:312.282 - 0.054ms returns 0 +T1E08 003:312.340 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:312.393 - 0.053ms returns 0 +T1E08 003:312.451 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:312.504 - 0.054ms returns 0 +T1E08 003:312.562 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:312.616 - 0.054ms returns 0 +T1E08 003:312.674 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:312.739 - 0.064ms returns 0 +T1E08 003:312.803 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:312.857 - 0.054ms returns 0 +T1E08 003:312.915 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:312.968 - 0.053ms returns 0 +T1E08 003:313.026 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:313.082 - 0.055ms returns 0x00000017 +T1E08 003:313.140 JLINK_Go() +T1E08 003:313.205 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:316.914 - 3.773ms +T1E08 003:317.020 JLINK_IsHalted() +T1E08 003:317.831 - 0.811ms returns FALSE +T1E08 003:317.914 JLINK_HasError() +T1E08 003:321.236 JLINK_IsHalted() +T1E08 003:324.265 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:325.224 - 3.987ms returns TRUE +T1E08 003:325.332 JLINK_ReadReg(R15 (PC)) +T1E08 003:325.401 - 0.069ms returns 0x20000000 +T1E08 003:325.468 JLINK_ClrBPEx(BPHandle = 0x00000017) +T1E08 003:325.532 - 0.064ms returns 0x00 +T1E08 003:325.598 JLINK_ReadReg(R0) +T1E08 003:325.663 - 0.064ms returns 0x00000000 +T1E08 003:326.479 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:326.557 Data: 80 B5 09 F0 D1 FC 80 BD 01 28 82 BF FF 20 40 B2 ... +T1E08 003:326.647 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:329.538 - 3.058ms returns 0x27C +T1E08 003:329.648 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:329.713 Data: 4F F0 FE 00 18 BF 00 2C 01 D1 40 B2 70 BD 10 46 ... +T1E08 003:329.818 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:332.045 - 2.397ms returns 0x184 +T1E08 003:332.163 JLINK_HasError() +T1E08 003:332.233 JLINK_WriteReg(R0, 0x08002800) +T1E08 003:332.302 - 0.068ms returns 0 +T1E08 003:332.368 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:332.446 - 0.078ms returns 0 +T1E08 003:332.513 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:332.577 - 0.064ms returns 0 +T1E08 003:332.643 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:332.709 - 0.065ms returns 0 +T1E08 003:332.775 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:332.840 - 0.065ms returns 0 +T1E08 003:332.915 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:332.988 - 0.073ms returns 0 +T1E08 003:333.054 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:333.119 - 0.064ms returns 0 +T1E08 003:333.180 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:333.234 - 0.054ms returns 0 +T1E08 003:333.289 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:333.344 - 0.055ms returns 0 +T1E08 003:333.399 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:333.454 - 0.054ms returns 0 +T1E08 003:333.509 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:333.563 - 0.054ms returns 0 +T1E08 003:333.619 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:333.673 - 0.054ms returns 0 +T1E08 003:333.727 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:333.781 - 0.053ms returns 0 +T1E08 003:333.836 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:333.890 - 0.054ms returns 0 +T1E08 003:333.945 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:333.998 - 0.053ms returns 0 +T1E08 003:334.053 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:334.107 - 0.054ms returns 0 +T1E08 003:334.162 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:334.216 - 0.053ms returns 0 +T1E08 003:334.270 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:334.326 - 0.056ms returns 0 +T1E08 003:334.400 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:334.455 - 0.054ms returns 0 +T1E08 003:334.519 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:334.575 - 0.056ms returns 0 +T1E08 003:334.635 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:334.694 - 0.059ms returns 0x00000018 +T1E08 003:334.751 JLINK_Go() +T1E08 003:334.820 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:338.786 - 4.034ms +T1E08 003:338.893 JLINK_IsHalted() +T1E08 003:339.716 - 0.821ms returns FALSE +T1E08 003:339.832 JLINK_HasError() +T1E08 003:341.705 JLINK_IsHalted() +T1E08 003:342.584 - 0.878ms returns FALSE +T1E08 003:342.671 JLINK_HasError() +T1E08 003:344.450 JLINK_IsHalted() +T1E08 003:347.498 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:348.344 - 3.893ms returns TRUE +T1E08 003:348.427 JLINK_ReadReg(R15 (PC)) +T1E08 003:348.498 - 0.071ms returns 0x20000000 +T1E08 003:348.565 JLINK_ClrBPEx(BPHandle = 0x00000018) +T1E08 003:348.631 - 0.065ms returns 0x00 +T1E08 003:348.708 JLINK_ReadReg(R0) +T1E08 003:348.788 - 0.079ms returns 0x00000000 +T1E08 003:349.724 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:349.805 Data: 00 F1 10 01 00 F1 48 02 01 23 00 F0 F5 F8 00 20 ... +T1E08 003:349.898 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:352.834 - 3.110ms returns 0x27C +T1E08 003:352.948 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:353.014 Data: 04 80 D0 F8 08 E0 D0 F8 0C C0 C0 F2 02 03 38 BF ... +T1E08 003:353.136 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:355.256 - 2.308ms returns 0x184 +T1E08 003:355.353 JLINK_HasError() +T1E08 003:355.411 JLINK_WriteReg(R0, 0x08002C00) +T1E08 003:355.469 - 0.057ms returns 0 +T1E08 003:355.525 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:355.578 - 0.053ms returns 0 +T1E08 003:355.633 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:355.687 - 0.053ms returns 0 +T1E08 003:355.741 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:355.795 - 0.053ms returns 0 +T1E08 003:355.849 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:355.903 - 0.053ms returns 0 +T1E08 003:355.964 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:356.028 - 0.064ms returns 0 +T1E08 003:356.094 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:356.158 - 0.064ms returns 0 +T1E08 003:356.224 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:356.288 - 0.064ms returns 0 +T1E08 003:356.354 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:356.418 - 0.064ms returns 0 +T1E08 003:356.484 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:356.548 - 0.064ms returns 0 +T1E08 003:356.616 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:356.680 - 0.064ms returns 0 +T1E08 003:356.747 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:356.811 - 0.064ms returns 0 +T1E08 003:356.876 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:356.940 - 0.064ms returns 0 +T1E08 003:357.016 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:357.081 - 0.065ms returns 0 +T1E08 003:357.144 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:357.198 - 0.053ms returns 0 +T1E08 003:357.253 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:357.306 - 0.054ms returns 0 +T1E08 003:357.361 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:357.415 - 0.053ms returns 0 +T1E08 003:357.469 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:357.523 - 0.053ms returns 0 +T1E08 003:357.577 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:357.631 - 0.053ms returns 0 +T1E08 003:357.694 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:357.747 - 0.053ms returns 0 +T1E08 003:357.804 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:357.858 - 0.055ms returns 0x00000019 +T1E08 003:357.913 JLINK_Go() +T1E08 003:357.978 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:361.766 - 3.852ms +T1E08 003:361.902 JLINK_IsHalted() +T1E08 003:363.128 - 1.225ms returns FALSE +T1E08 003:363.248 JLINK_HasError() +T1E08 003:364.728 JLINK_IsHalted() +T1E08 003:365.605 - 0.876ms returns FALSE +T1E08 003:365.715 JLINK_HasError() +T1E08 003:366.984 JLINK_IsHalted() +T1E08 003:369.986 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:370.912 - 3.928ms returns TRUE +T1E08 003:371.004 JLINK_ReadReg(R15 (PC)) +T1E08 003:371.074 - 0.070ms returns 0x20000000 +T1E08 003:371.144 JLINK_ClrBPEx(BPHandle = 0x00000019) +T1E08 003:371.210 - 0.066ms returns 0x00 +T1E08 003:371.280 JLINK_ReadReg(R0) +T1E08 003:371.345 - 0.064ms returns 0x00000000 +T1E08 003:372.252 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:372.331 Data: 2C 60 FF F7 AF FD FF F7 8F FE 00 20 40 B2 B0 BD ... +T1E08 003:372.429 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:375.323 - 3.070ms returns 0x27C +T1E08 003:375.436 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:375.502 Data: 0D 1A 9F ED 0E 2A 20 EE 01 0A 9F ED 0B 1A B0 EE ... +T1E08 003:375.607 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:377.808 - 2.371ms returns 0x184 +T1E08 003:378.037 JLINK_HasError() +T1E08 003:378.164 JLINK_WriteReg(R0, 0x08003000) +T1E08 003:378.289 - 0.124ms returns 0 +T1E08 003:378.438 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:378.557 - 0.118ms returns 0 +T1E08 003:378.728 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:378.786 - 0.058ms returns 0 +T1E08 003:378.851 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:378.909 - 0.057ms returns 0 +T1E08 003:378.964 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:379.017 - 0.053ms returns 0 +T1E08 003:379.071 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:379.124 - 0.052ms returns 0 +T1E08 003:379.178 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:379.231 - 0.053ms returns 0 +T1E08 003:379.285 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:379.338 - 0.053ms returns 0 +T1E08 003:379.392 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:379.445 - 0.053ms returns 0 +T1E08 003:379.500 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:379.563 - 0.063ms returns 0 +T1E08 003:379.617 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:379.670 - 0.053ms returns 0 +T1E08 003:379.724 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:379.777 - 0.053ms returns 0 +T1E08 003:379.831 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:379.884 - 0.052ms returns 0 +T1E08 003:379.939 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:379.992 - 0.054ms returns 0 +T1E08 003:380.046 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:380.106 - 0.059ms returns 0 +T1E08 003:380.161 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:380.214 - 0.053ms returns 0 +T1E08 003:380.269 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:380.322 - 0.053ms returns 0 +T1E08 003:380.376 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:380.429 - 0.053ms returns 0 +T1E08 003:380.483 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:380.536 - 0.053ms returns 0 +T1E08 003:380.590 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:380.644 - 0.053ms returns 0 +T1E08 003:380.698 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:380.754 - 0.056ms returns 0x0000001A +T1E08 003:380.809 JLINK_Go() +T1E08 003:380.875 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:384.612 - 3.802ms +T1E08 003:384.735 JLINK_IsHalted() +T1E08 003:385.569 - 0.833ms returns FALSE +T1E08 003:385.641 JLINK_HasError() +T1E08 003:387.262 JLINK_IsHalted() +T1E08 003:388.089 - 0.826ms returns FALSE +T1E08 003:388.172 JLINK_HasError() +T1E08 003:389.487 JLINK_IsHalted() +T1E08 003:392.458 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:393.332 - 3.844ms returns TRUE +T1E08 003:393.418 JLINK_ReadReg(R15 (PC)) +T1E08 003:393.486 - 0.067ms returns 0x20000000 +T1E08 003:393.551 JLINK_ClrBPEx(BPHandle = 0x0000001A) +T1E08 003:393.616 - 0.065ms returns 0x00 +T1E08 003:393.846 JLINK_ReadReg(R0) +T1E08 003:393.930 - 0.084ms returns 0x00000000 +T1E08 003:396.294 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:396.394 Data: D5 FC 88 ED 07 0A 98 ED 08 0A 08 F2 54 50 04 F0 ... +T1E08 003:396.496 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:399.484 - 3.189ms returns 0x27C +T1E08 003:399.604 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:399.670 Data: 12 82 01 20 B8 40 10 F0 0D 0F 17 D0 00 20 C4 E9 ... +T1E08 003:399.773 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:401.989 - 2.383ms returns 0x184 +T1E08 003:402.203 JLINK_HasError() +T1E08 003:402.330 JLINK_WriteReg(R0, 0x08003400) +T1E08 003:402.458 - 0.127ms returns 0 +T1E08 003:402.594 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:402.705 - 0.112ms returns 0 +T1E08 003:402.759 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:402.812 - 0.053ms returns 0 +T1E08 003:402.867 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:402.920 - 0.052ms returns 0 +T1E08 003:402.974 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:403.027 - 0.053ms returns 0 +T1E08 003:403.080 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:403.134 - 0.053ms returns 0 +T1E08 003:403.188 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:403.241 - 0.052ms returns 0 +T1E08 003:403.295 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:403.348 - 0.053ms returns 0 +T1E08 003:403.412 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:403.467 - 0.056ms returns 0 +T1E08 003:403.522 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:403.575 - 0.053ms returns 0 +T1E08 003:403.630 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:403.684 - 0.054ms returns 0 +T1E08 003:403.754 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:403.808 - 0.053ms returns 0 +T1E08 003:403.864 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:403.919 - 0.055ms returns 0 +T1E08 003:403.982 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:404.051 - 0.069ms returns 0 +T1E08 003:404.107 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:404.162 - 0.054ms returns 0 +T1E08 003:404.218 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:404.271 - 0.054ms returns 0 +T1E08 003:404.333 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:404.388 - 0.055ms returns 0 +T1E08 003:404.445 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:404.499 - 0.054ms returns 0 +T1E08 003:404.556 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:404.610 - 0.054ms returns 0 +T1E08 003:404.665 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:404.720 - 0.054ms returns 0 +T1E08 003:404.775 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:404.832 - 0.057ms returns 0x0000001B +T1E08 003:404.888 JLINK_Go() +T1E08 003:404.956 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:408.817 - 3.925ms +T1E08 003:409.025 JLINK_IsHalted() +T1E08 003:410.068 - 1.043ms returns FALSE +T1E08 003:410.179 JLINK_HasError() +T1E08 003:417.749 JLINK_IsHalted() +T1E08 003:420.868 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:421.720 - 3.972ms returns TRUE +T1E08 003:421.832 JLINK_ReadReg(R15 (PC)) +T1E08 003:421.905 - 0.072ms returns 0x20000000 +T1E08 003:421.971 JLINK_ClrBPEx(BPHandle = 0x0000001B) +T1E08 003:422.027 - 0.055ms returns 0x00 +T1E08 003:422.095 JLINK_ReadReg(R0) +T1E08 003:422.150 - 0.055ms returns 0x00000000 +T1E08 003:422.913 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:422.990 Data: 0C F0 BE FE DD E9 03 23 07 46 0D 46 30 46 59 46 ... +T1E08 003:423.090 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:426.173 - 3.260ms returns 0x27C +T1E08 003:426.270 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:426.326 Data: 0C F0 92 FC 41 EC 11 0B B0 EE 48 0A F0 EE 68 0A ... +T1E08 003:426.415 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:428.641 - 2.370ms returns 0x184 +T1E08 003:428.757 JLINK_HasError() +T1E08 003:428.819 JLINK_WriteReg(R0, 0x08003800) +T1E08 003:428.880 - 0.060ms returns 0 +T1E08 003:428.935 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:428.989 - 0.054ms returns 0 +T1E08 003:429.045 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:429.099 - 0.054ms returns 0 +T1E08 003:429.214 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:429.349 - 0.135ms returns 0 +T1E08 003:429.470 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:429.587 - 0.117ms returns 0 +T1E08 003:429.706 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:429.823 - 0.117ms returns 0 +T1E08 003:429.942 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:430.059 - 0.116ms returns 0 +T1E08 003:430.179 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:430.296 - 0.116ms returns 0 +T1E08 003:430.384 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:430.438 - 0.053ms returns 0 +T1E08 003:430.493 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:430.546 - 0.053ms returns 0 +T1E08 003:430.601 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:430.656 - 0.054ms returns 0 +T1E08 003:430.711 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:430.765 - 0.054ms returns 0 +T1E08 003:430.820 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:430.874 - 0.054ms returns 0 +T1E08 003:430.928 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:430.983 - 0.054ms returns 0 +T1E08 003:431.038 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:431.091 - 0.053ms returns 0 +T1E08 003:431.146 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:431.199 - 0.053ms returns 0 +T1E08 003:431.255 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:431.310 - 0.054ms returns 0 +T1E08 003:431.366 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:431.430 - 0.064ms returns 0 +T1E08 003:431.493 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:431.549 - 0.055ms returns 0 +T1E08 003:431.607 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:431.669 - 0.062ms returns 0 +T1E08 003:431.726 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:431.782 - 0.056ms returns 0x0000001C +T1E08 003:431.838 JLINK_Go() +T1E08 003:431.904 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:435.609 - 3.770ms +T1E08 003:435.807 JLINK_IsHalted() +T1E08 003:436.704 - 0.896ms returns FALSE +T1E08 003:436.815 JLINK_HasError() +T1E08 003:438.536 JLINK_IsHalted() +T1E08 003:439.480 - 0.944ms returns FALSE +T1E08 003:439.593 JLINK_HasError() +T1E08 003:440.845 JLINK_IsHalted() +T1E08 003:444.187 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:445.084 - 4.238ms returns TRUE +T1E08 003:445.164 JLINK_ReadReg(R15 (PC)) +T1E08 003:445.234 - 0.070ms returns 0x20000000 +T1E08 003:445.301 JLINK_ClrBPEx(BPHandle = 0x0000001C) +T1E08 003:445.381 - 0.079ms returns 0x00 +T1E08 003:445.448 JLINK_ReadReg(R0) +T1E08 003:445.522 - 0.074ms returns 0x00000000 +T1E08 003:446.836 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:446.915 Data: 28 44 C4 30 04 F0 64 FD D8 F8 30 05 28 44 C4 30 ... +T1E08 003:447.010 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:449.976 - 3.139ms returns 0x27C +T1E08 003:450.197 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:450.319 Data: 01 46 A2 FB 03 30 00 09 05 A3 1B 5C 40 F2 FF 30 ... +T1E08 003:450.508 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:452.843 - 2.646ms returns 0x184 +T1E08 003:452.952 JLINK_HasError() +T1E08 003:453.014 JLINK_WriteReg(R0, 0x08003C00) +T1E08 003:453.072 - 0.058ms returns 0 +T1E08 003:453.131 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:453.192 - 0.060ms returns 0 +T1E08 003:453.261 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:453.325 - 0.064ms returns 0 +T1E08 003:453.394 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:453.458 - 0.064ms returns 0 +T1E08 003:453.542 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:453.608 - 0.066ms returns 0 +T1E08 003:453.677 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:453.741 - 0.064ms returns 0 +T1E08 003:453.810 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:453.876 - 0.065ms returns 0 +T1E08 003:453.942 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:454.008 - 0.065ms returns 0 +T1E08 003:454.074 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:454.138 - 0.064ms returns 0 +T1E08 003:454.208 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:454.272 - 0.064ms returns 0 +T1E08 003:454.341 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:454.396 - 0.055ms returns 0 +T1E08 003:454.454 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:454.508 - 0.054ms returns 0 +T1E08 003:454.577 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:454.632 - 0.054ms returns 0 +T1E08 003:454.690 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:454.745 - 0.055ms returns 0 +T1E08 003:454.802 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:454.856 - 0.054ms returns 0 +T1E08 003:454.924 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:454.978 - 0.054ms returns 0 +T1E08 003:455.037 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:455.091 - 0.054ms returns 0 +T1E08 003:455.166 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:455.239 - 0.073ms returns 0 +T1E08 003:455.318 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:455.375 - 0.057ms returns 0 +T1E08 003:455.435 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:455.489 - 0.053ms returns 0 +T1E08 003:455.548 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:455.604 - 0.056ms returns 0x0000001D +T1E08 003:455.663 JLINK_Go() +T1E08 003:455.733 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:460.170 - 4.506ms +T1E08 003:460.465 JLINK_IsHalted() +T1E08 003:461.430 - 1.122ms returns FALSE +T1E08 003:461.639 JLINK_HasError() +T1E08 003:463.804 JLINK_IsHalted() +T1E08 003:466.864 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:467.724 - 3.918ms returns TRUE +T1E08 003:467.822 JLINK_ReadReg(R15 (PC)) +T1E08 003:467.896 - 0.072ms returns 0x20000000 +T1E08 003:467.963 JLINK_ClrBPEx(BPHandle = 0x0000001D) +T1E08 003:468.029 - 0.065ms returns 0x00 +T1E08 003:468.106 JLINK_ReadReg(R0) +T1E08 003:468.172 - 0.066ms returns 0x00000000 +T1E08 003:469.458 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:469.548 Data: 03 F0 C2 FE 20 76 00 20 BD E8 B0 40 40 B2 70 47 ... +T1E08 003:469.646 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:472.576 - 3.116ms returns 0x27C +T1E08 003:472.692 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:472.750 Data: 30 46 53 EC 10 2B 39 46 0C F0 B5 F9 00 28 04 BF ... +T1E08 003:472.842 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:475.110 - 2.417ms returns 0x184 +T1E08 003:475.308 JLINK_HasError() +T1E08 003:475.448 JLINK_WriteReg(R0, 0x08004000) +T1E08 003:475.578 - 0.131ms returns 0 +T1E08 003:475.704 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:475.822 - 0.117ms returns 0 +T1E08 003:475.940 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:476.015 - 0.075ms returns 0 +T1E08 003:476.069 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:476.122 - 0.053ms returns 0 +T1E08 003:476.176 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:476.229 - 0.053ms returns 0 +T1E08 003:476.284 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:476.339 - 0.055ms returns 0 +T1E08 003:476.393 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:476.447 - 0.053ms returns 0 +T1E08 003:476.501 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:476.557 - 0.055ms returns 0 +T1E08 003:476.611 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:476.666 - 0.055ms returns 0 +T1E08 003:476.721 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:476.774 - 0.053ms returns 0 +T1E08 003:476.839 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:476.892 - 0.053ms returns 0 +T1E08 003:476.947 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:477.000 - 0.053ms returns 0 +T1E08 003:477.055 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:477.117 - 0.062ms returns 0 +T1E08 003:477.173 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:477.228 - 0.055ms returns 0 +T1E08 003:477.282 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:477.336 - 0.053ms returns 0 +T1E08 003:477.391 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:477.444 - 0.053ms returns 0 +T1E08 003:477.499 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:477.552 - 0.053ms returns 0 +T1E08 003:477.606 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:477.660 - 0.053ms returns 0 +T1E08 003:477.714 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:477.767 - 0.053ms returns 0 +T1E08 003:477.821 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:477.878 - 0.056ms returns 0 +T1E08 003:477.938 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:477.995 - 0.057ms returns 0x0000001E +T1E08 003:478.049 JLINK_Go() +T1E08 003:478.117 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:481.796 - 3.745ms +T1E08 003:481.907 JLINK_IsHalted() +T1E08 003:483.357 - 1.448ms returns FALSE +T1E08 003:483.559 JLINK_HasError() +T1E08 003:485.082 JLINK_IsHalted() +T1E08 003:485.968 - 0.884ms returns FALSE +T1E08 003:486.056 JLINK_HasError() +T1E08 003:487.426 JLINK_IsHalted() +T1E08 003:490.437 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:491.357 - 3.930ms returns TRUE +T1E08 003:491.437 JLINK_ReadReg(R15 (PC)) +T1E08 003:491.512 - 0.075ms returns 0x20000000 +T1E08 003:491.578 JLINK_ClrBPEx(BPHandle = 0x0000001E) +T1E08 003:491.644 - 0.066ms returns 0x00 +T1E08 003:491.722 JLINK_ReadReg(R0) +T1E08 003:491.788 - 0.066ms returns 0x00000000 +T1E08 003:492.837 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:492.924 Data: BC BF 33 EE 09 3A 85 ED 00 3A 9F ED 9E 3A B4 EE ... +T1E08 003:493.034 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:496.086 - 3.248ms returns 0x27C +T1E08 003:496.200 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:496.266 Data: DB 0F C9 40 DB 0F 49 40 DB 0F C9 C0 DB 0F 49 C0 ... +T1E08 003:496.371 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:498.592 - 2.392ms returns 0x184 +T1E08 003:498.698 JLINK_HasError() +T1E08 003:498.763 JLINK_WriteReg(R0, 0x08004400) +T1E08 003:498.864 - 0.101ms returns 0 +T1E08 003:498.979 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:499.104 - 0.124ms returns 0 +T1E08 003:499.219 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:499.333 - 0.114ms returns 0 +T1E08 003:499.448 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:499.562 - 0.113ms returns 0 +T1E08 003:499.676 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:499.789 - 0.112ms returns 0 +T1E08 003:499.904 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:500.016 - 0.112ms returns 0 +T1E08 003:500.104 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:500.158 - 0.053ms returns 0 +T1E08 003:500.212 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:500.266 - 0.053ms returns 0 +T1E08 003:500.320 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:500.374 - 0.054ms returns 0 +T1E08 003:500.428 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:500.481 - 0.053ms returns 0 +T1E08 003:500.545 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:500.601 - 0.056ms returns 0 +T1E08 003:500.656 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:500.708 - 0.053ms returns 0 +T1E08 003:500.763 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:500.816 - 0.053ms returns 0 +T1E08 003:500.875 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:500.948 - 0.073ms returns 0 +T1E08 003:501.004 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:501.064 - 0.060ms returns 0 +T1E08 003:501.119 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:501.173 - 0.053ms returns 0 +T1E08 003:501.227 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:501.280 - 0.053ms returns 0 +T1E08 003:501.334 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:501.388 - 0.053ms returns 0 +T1E08 003:501.442 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:501.495 - 0.053ms returns 0 +T1E08 003:501.549 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:501.602 - 0.053ms returns 0 +T1E08 003:501.657 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:501.712 - 0.055ms returns 0x0000001F +T1E08 003:501.767 JLINK_Go() +T1E08 003:501.830 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:505.795 - 4.027ms +T1E08 003:505.916 JLINK_IsHalted() +T1E08 003:506.716 - 0.800ms returns FALSE +T1E08 003:506.803 JLINK_HasError() +T1E08 003:509.955 JLINK_IsHalted() +T1E08 003:513.057 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:513.979 - 4.023ms returns TRUE +T1E08 003:514.081 JLINK_ReadReg(R15 (PC)) +T1E08 003:514.149 - 0.067ms returns 0x20000000 +T1E08 003:514.216 JLINK_ClrBPEx(BPHandle = 0x0000001F) +T1E08 003:514.279 - 0.062ms returns 0x00 +T1E08 003:514.344 JLINK_ReadReg(R0) +T1E08 003:514.405 - 0.060ms returns 0x00000000 +T1E08 003:515.279 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:515.356 Data: A3 FC E1 68 04 F5 CA 70 01 F1 B8 02 01 21 B0 EE ... +T1E08 003:515.447 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:518.522 - 3.243ms returns 0x27C +T1E08 003:518.646 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:518.721 Data: BD EC 02 8B B0 BD 00 BF 00 00 00 00 10 B5 00 28 ... +T1E08 003:518.838 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:521.111 - 2.463ms returns 0x184 +T1E08 003:521.236 JLINK_HasError() +T1E08 003:521.306 JLINK_WriteReg(R0, 0x08004800) +T1E08 003:521.376 - 0.069ms returns 0 +T1E08 003:521.442 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:521.507 - 0.064ms returns 0 +T1E08 003:521.570 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:521.624 - 0.054ms returns 0 +T1E08 003:521.678 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:521.733 - 0.054ms returns 0 +T1E08 003:521.788 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:521.842 - 0.053ms returns 0 +T1E08 003:521.897 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:521.951 - 0.053ms returns 0 +T1E08 003:522.007 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:522.069 - 0.062ms returns 0 +T1E08 003:522.124 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:522.184 - 0.060ms returns 0 +T1E08 003:522.240 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:522.294 - 0.054ms returns 0 +T1E08 003:522.349 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:522.402 - 0.053ms returns 0 +T1E08 003:522.457 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:522.512 - 0.054ms returns 0 +T1E08 003:522.567 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:522.620 - 0.053ms returns 0 +T1E08 003:522.675 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:522.728 - 0.053ms returns 0 +T1E08 003:522.783 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:522.838 - 0.054ms returns 0 +T1E08 003:522.893 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:522.946 - 0.053ms returns 0 +T1E08 003:523.001 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:523.064 - 0.063ms returns 0 +T1E08 003:523.121 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:523.174 - 0.053ms returns 0 +T1E08 003:523.229 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:523.283 - 0.053ms returns 0 +T1E08 003:523.338 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:523.391 - 0.053ms returns 0 +T1E08 003:523.445 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:523.498 - 0.053ms returns 0 +T1E08 003:523.554 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:523.611 - 0.057ms returns 0x00000020 +T1E08 003:523.680 JLINK_Go() +T1E08 003:523.753 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:527.427 - 3.746ms +T1E08 003:527.530 JLINK_IsHalted() +T1E08 003:528.352 - 0.822ms returns FALSE +T1E08 003:528.435 JLINK_HasError() +T1E08 003:533.570 JLINK_IsHalted() +T1E08 003:536.750 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:537.614 - 4.043ms returns TRUE +T1E08 003:537.728 JLINK_ReadReg(R15 (PC)) +T1E08 003:537.798 - 0.070ms returns 0x20000000 +T1E08 003:537.872 JLINK_ClrBPEx(BPHandle = 0x00000020) +T1E08 003:537.938 - 0.066ms returns 0x00 +T1E08 003:538.004 JLINK_ReadReg(R0) +T1E08 003:538.069 - 0.065ms returns 0x00000000 +T1E08 003:538.912 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:538.992 Data: 04 D8 00 68 00 F1 14 02 00 20 04 E0 00 F1 24 02 ... +T1E08 003:539.084 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:542.146 - 3.233ms returns 0x27C +T1E08 003:542.358 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:542.474 Data: 02 68 02 EB 01 12 D2 F8 B8 21 4F EA 12 42 9A 70 ... +T1E08 003:542.653 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:544.949 - 2.592ms returns 0x184 +T1E08 003:545.076 JLINK_HasError() +T1E08 003:545.139 JLINK_WriteReg(R0, 0x08004C00) +T1E08 003:545.196 - 0.057ms returns 0 +T1E08 003:545.255 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:545.309 - 0.054ms returns 0 +T1E08 003:545.367 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:545.421 - 0.053ms returns 0 +T1E08 003:545.479 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:545.533 - 0.054ms returns 0 +T1E08 003:545.590 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:545.643 - 0.053ms returns 0 +T1E08 003:545.701 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:545.755 - 0.054ms returns 0 +T1E08 003:545.813 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:545.866 - 0.053ms returns 0 +T1E08 003:545.924 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:545.978 - 0.054ms returns 0 +T1E08 003:546.041 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:546.095 - 0.053ms returns 0 +T1E08 003:546.153 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:546.207 - 0.053ms returns 0 +T1E08 003:546.265 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:546.318 - 0.053ms returns 0 +T1E08 003:546.375 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:546.428 - 0.053ms returns 0 +T1E08 003:546.486 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:546.540 - 0.054ms returns 0 +T1E08 003:546.597 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:546.650 - 0.053ms returns 0 +T1E08 003:546.718 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:546.771 - 0.053ms returns 0 +T1E08 003:546.828 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:546.881 - 0.053ms returns 0 +T1E08 003:546.939 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:546.993 - 0.053ms returns 0 +T1E08 003:547.050 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:547.113 - 0.063ms returns 0 +T1E08 003:547.171 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:547.224 - 0.053ms returns 0 +T1E08 003:547.281 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:547.335 - 0.054ms returns 0 +T1E08 003:547.393 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:547.448 - 0.055ms returns 0x00000021 +T1E08 003:547.506 JLINK_Go() +T1E08 003:547.570 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:551.229 - 3.722ms +T1E08 003:551.438 JLINK_IsHalted() +T1E08 003:552.332 - 0.892ms returns FALSE +T1E08 003:552.448 JLINK_HasError() +T1E08 003:553.783 JLINK_IsHalted() +T1E08 003:554.736 - 0.952ms returns FALSE +T1E08 003:554.834 JLINK_HasError() +T1E08 003:556.480 JLINK_IsHalted() +T1E08 003:559.617 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:560.602 - 4.120ms returns TRUE +T1E08 003:560.804 JLINK_ReadReg(R15 (PC)) +T1E08 003:560.947 - 0.143ms returns 0x20000000 +T1E08 003:561.068 JLINK_ClrBPEx(BPHandle = 0x00000021) +T1E08 003:561.187 - 0.118ms returns 0x00 +T1E08 003:561.244 JLINK_ReadReg(R0) +T1E08 003:561.298 - 0.053ms returns 0x00000000 +T1E08 003:562.166 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:562.244 Data: 10 00 05 D0 20 68 10 21 41 60 20 46 00 F0 0E FA ... +T1E08 003:562.334 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:565.407 - 3.240ms returns 0x27C +T1E08 003:565.541 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:565.671 Data: 40 F0 8C 80 4C F2 4C 51 C2 F2 01 01 0A 68 43 F6 ... +T1E08 003:565.786 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:568.157 - 2.615ms returns 0x184 +T1E08 003:568.272 JLINK_HasError() +T1E08 003:568.341 JLINK_WriteReg(R0, 0x08005000) +T1E08 003:568.409 - 0.068ms returns 0 +T1E08 003:568.474 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:568.539 - 0.064ms returns 0 +T1E08 003:568.604 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:568.668 - 0.064ms returns 0 +T1E08 003:568.734 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:568.798 - 0.064ms returns 0 +T1E08 003:568.864 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:568.934 - 0.070ms returns 0 +T1E08 003:569.010 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:569.075 - 0.064ms returns 0 +T1E08 003:569.140 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:569.204 - 0.063ms returns 0 +T1E08 003:569.269 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:569.332 - 0.063ms returns 0 +T1E08 003:569.397 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:569.461 - 0.063ms returns 0 +T1E08 003:569.526 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:569.587 - 0.061ms returns 0 +T1E08 003:569.641 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:569.694 - 0.053ms returns 0 +T1E08 003:569.748 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:569.801 - 0.053ms returns 0 +T1E08 003:569.855 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:569.919 - 0.063ms returns 0 +T1E08 003:569.974 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:570.028 - 0.054ms returns 0 +T1E08 003:570.082 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:570.136 - 0.053ms returns 0 +T1E08 003:570.192 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:570.246 - 0.054ms returns 0 +T1E08 003:570.301 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:570.354 - 0.053ms returns 0 +T1E08 003:570.408 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:570.461 - 0.053ms returns 0 +T1E08 003:570.515 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:570.568 - 0.053ms returns 0 +T1E08 003:570.622 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:570.676 - 0.053ms returns 0 +T1E08 003:570.731 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:570.786 - 0.055ms returns 0x00000022 +T1E08 003:570.840 JLINK_Go() +T1E08 003:570.906 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:574.966 - 4.124ms +T1E08 003:575.164 JLINK_IsHalted() +T1E08 003:576.162 - 0.997ms returns FALSE +T1E08 003:576.254 JLINK_HasError() +T1E08 003:577.761 JLINK_IsHalted() +T1E08 003:582.019 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:582.995 - 5.232ms returns TRUE +T1E08 003:583.121 JLINK_ReadReg(R15 (PC)) +T1E08 003:583.207 - 0.086ms returns 0x20000000 +T1E08 003:583.296 JLINK_ClrBPEx(BPHandle = 0x00000022) +T1E08 003:583.385 - 0.088ms returns 0x00 +T1E08 003:583.465 JLINK_ReadReg(R0) +T1E08 003:583.545 - 0.079ms returns 0x00000000 +T1E08 003:584.756 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:584.879 Data: 00 28 18 BF 80 47 80 BD 80 B5 FD F7 7F FB 03 28 ... +T1E08 003:585.012 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:588.012 - 3.255ms returns 0x27C +T1E08 003:588.128 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:588.184 Data: 13 68 5B 07 08 D5 13 68 23 F0 04 03 13 60 B1 60 ... +T1E08 003:588.276 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:590.390 - 2.262ms returns 0x184 +T1E08 003:590.492 JLINK_HasError() +T1E08 003:590.561 JLINK_WriteReg(R0, 0x08005400) +T1E08 003:590.628 - 0.066ms returns 0 +T1E08 003:590.690 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:590.754 - 0.063ms returns 0 +T1E08 003:590.817 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:590.878 - 0.061ms returns 0 +T1E08 003:590.940 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:591.001 - 0.061ms returns 0 +T1E08 003:591.064 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:591.132 - 0.060ms returns 0 +T1E08 003:591.196 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:591.259 - 0.062ms returns 0 +T1E08 003:591.316 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:591.370 - 0.054ms returns 0 +T1E08 003:591.424 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:591.479 - 0.054ms returns 0 +T1E08 003:591.534 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:591.607 - 0.073ms returns 0 +T1E08 003:591.663 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:591.718 - 0.054ms returns 0 +T1E08 003:591.773 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:591.828 - 0.055ms returns 0 +T1E08 003:591.884 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:591.938 - 0.054ms returns 0 +T1E08 003:591.993 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:592.047 - 0.053ms returns 0 +T1E08 003:592.103 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:592.164 - 0.061ms returns 0 +T1E08 003:592.218 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:592.274 - 0.055ms returns 0 +T1E08 003:592.329 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:592.383 - 0.054ms returns 0 +T1E08 003:592.438 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:592.491 - 0.053ms returns 0 +T1E08 003:592.546 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:592.600 - 0.054ms returns 0 +T1E08 003:592.655 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:592.708 - 0.053ms returns 0 +T1E08 003:592.764 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:592.818 - 0.054ms returns 0 +T1E08 003:592.874 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:592.930 - 0.056ms returns 0x00000023 +T1E08 003:592.985 JLINK_Go() +T1E08 003:593.052 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:596.994 - 4.008ms +T1E08 003:597.128 JLINK_IsHalted() +T1E08 003:598.001 - 0.873ms returns FALSE +T1E08 003:598.099 JLINK_HasError() +T1E08 003:599.849 JLINK_IsHalted() +T1E08 003:600.738 - 0.888ms returns FALSE +T1E08 003:600.822 JLINK_HasError() +T1E08 003:602.784 JLINK_IsHalted() +T1E08 003:605.763 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:606.732 - 3.947ms returns TRUE +T1E08 003:606.842 JLINK_ReadReg(R15 (PC)) +T1E08 003:606.921 - 0.079ms returns 0x20000000 +T1E08 003:607.053 JLINK_ClrBPEx(BPHandle = 0x00000023) +T1E08 003:607.216 - 0.162ms returns 0x00 +T1E08 003:607.292 JLINK_ReadReg(R0) +T1E08 003:607.366 - 0.073ms returns 0x00000000 +T1E08 003:608.404 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:608.485 Data: C0 07 0B D0 00 F0 94 F9 40 1B 05 28 F6 D9 03 21 ... +T1E08 003:608.576 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:611.429 - 3.025ms returns 0x27C +T1E08 003:611.582 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:611.645 Data: 1A 60 1A 68 C4 F2 01 04 02 F4 80 42 02 92 02 9A ... +T1E08 003:611.766 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:613.968 - 2.385ms returns 0x184 +T1E08 003:614.080 JLINK_HasError() +T1E08 003:614.145 JLINK_WriteReg(R0, 0x08005800) +T1E08 003:614.214 - 0.069ms returns 0 +T1E08 003:614.302 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:614.388 - 0.086ms returns 0 +T1E08 003:614.480 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:614.570 - 0.090ms returns 0 +T1E08 003:614.656 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:614.731 - 0.074ms returns 0 +T1E08 003:614.820 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:614.905 - 0.084ms returns 0 +T1E08 003:614.992 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:615.079 - 0.086ms returns 0 +T1E08 003:615.166 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:615.254 - 0.088ms returns 0 +T1E08 003:615.332 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:615.404 - 0.071ms returns 0 +T1E08 003:615.475 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:615.543 - 0.068ms returns 0 +T1E08 003:615.612 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:615.680 - 0.068ms returns 0 +T1E08 003:615.764 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:615.840 - 0.076ms returns 0 +T1E08 003:615.916 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:615.972 - 0.055ms returns 0 +T1E08 003:616.026 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:616.080 - 0.053ms returns 0 +T1E08 003:616.134 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:616.188 - 0.054ms returns 0 +T1E08 003:616.261 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:616.316 - 0.055ms returns 0 +T1E08 003:616.370 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:616.423 - 0.053ms returns 0 +T1E08 003:616.478 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:616.531 - 0.053ms returns 0 +T1E08 003:616.585 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:616.638 - 0.053ms returns 0 +T1E08 003:616.708 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:616.765 - 0.057ms returns 0 +T1E08 003:616.820 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:616.873 - 0.053ms returns 0 +T1E08 003:616.929 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:616.984 - 0.056ms returns 0x00000024 +T1E08 003:617.039 JLINK_Go() +T1E08 003:617.106 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:621.332 - 4.292ms +T1E08 003:621.443 JLINK_IsHalted() +T1E08 003:622.227 - 0.783ms returns FALSE +T1E08 003:622.320 JLINK_HasError() +T1E08 003:625.720 JLINK_IsHalted() +T1E08 003:629.287 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:630.932 - 5.210ms returns TRUE +T1E08 003:631.110 JLINK_ReadReg(R15 (PC)) +T1E08 003:631.189 - 0.080ms returns 0x20000000 +T1E08 003:631.256 JLINK_ClrBPEx(BPHandle = 0x00000024) +T1E08 003:631.321 - 0.065ms returns 0x00 +T1E08 003:631.387 JLINK_ReadReg(R0) +T1E08 003:631.451 - 0.064ms returns 0x00000000 +T1E08 003:632.291 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:632.371 Data: A0 67 4C F6 FF 73 C0 F2 01 07 BD 42 22 EA 03 0C ... +T1E08 003:632.461 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:635.493 - 3.201ms returns 0x27C +T1E08 003:635.725 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:635.843 Data: 08 60 08 68 0F 21 00 F0 80 50 00 90 00 98 6F F0 ... +T1E08 003:636.046 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:638.292 - 2.567ms returns 0x184 +T1E08 003:638.386 JLINK_HasError() +T1E08 003:638.444 JLINK_WriteReg(R0, 0x08005C00) +T1E08 003:638.500 - 0.056ms returns 0 +T1E08 003:638.556 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:638.610 - 0.053ms returns 0 +T1E08 003:638.664 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:638.718 - 0.053ms returns 0 +T1E08 003:638.780 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:638.835 - 0.054ms returns 0 +T1E08 003:638.889 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:638.942 - 0.053ms returns 0 +T1E08 003:638.996 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:639.050 - 0.053ms returns 0 +T1E08 003:639.104 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:639.158 - 0.053ms returns 0 +T1E08 003:639.212 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:639.265 - 0.053ms returns 0 +T1E08 003:639.319 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:639.372 - 0.053ms returns 0 +T1E08 003:639.427 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:639.480 - 0.053ms returns 0 +T1E08 003:639.534 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:639.588 - 0.053ms returns 0 +T1E08 003:639.662 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:639.716 - 0.053ms returns 0 +T1E08 003:639.778 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:639.832 - 0.054ms returns 0 +T1E08 003:639.888 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:639.965 - 0.078ms returns 0 +T1E08 003:640.022 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:640.075 - 0.053ms returns 0 +T1E08 003:640.129 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:640.183 - 0.053ms returns 0 +T1E08 003:640.238 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:640.291 - 0.053ms returns 0 +T1E08 003:640.359 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:640.413 - 0.053ms returns 0 +T1E08 003:640.468 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:640.521 - 0.053ms returns 0 +T1E08 003:640.580 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:640.633 - 0.053ms returns 0 +T1E08 003:640.688 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:640.743 - 0.054ms returns 0x00000025 +T1E08 003:640.802 JLINK_Go() +T1E08 003:640.866 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:645.303 - 4.499ms +T1E08 003:645.456 JLINK_IsHalted() +T1E08 003:646.230 - 0.773ms returns FALSE +T1E08 003:646.312 JLINK_HasError() +T1E08 003:649.695 JLINK_IsHalted() +T1E08 003:652.936 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:653.926 - 4.231ms returns TRUE +T1E08 003:654.012 JLINK_ReadReg(R15 (PC)) +T1E08 003:654.070 - 0.058ms returns 0x20000000 +T1E08 003:654.125 JLINK_ClrBPEx(BPHandle = 0x00000025) +T1E08 003:654.188 - 0.062ms returns 0x00 +T1E08 003:654.242 JLINK_ReadReg(R0) +T1E08 003:654.297 - 0.054ms returns 0x00000000 +T1E08 003:655.010 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:655.086 Data: C8 F8 00 00 FF F7 94 FD 06 46 41 F2 88 37 00 BF ... +T1E08 003:655.199 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:658.091 - 3.080ms returns 0x27C +T1E08 003:658.219 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:658.284 Data: 01 90 30 6C 40 F0 80 50 30 64 30 6C 00 F0 80 50 ... +T1E08 003:658.384 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:660.542 - 2.322ms returns 0x184 +T1E08 003:660.702 JLINK_HasError() +T1E08 003:660.794 JLINK_WriteReg(R0, 0x08006000) +T1E08 003:660.888 - 0.093ms returns 0 +T1E08 003:660.988 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:661.082 - 0.093ms returns 0 +T1E08 003:661.180 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:661.276 - 0.096ms returns 0 +T1E08 003:661.368 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:661.461 - 0.093ms returns 0 +T1E08 003:661.562 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:661.653 - 0.091ms returns 0 +T1E08 003:661.759 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:661.863 - 0.104ms returns 0 +T1E08 003:661.933 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:661.995 - 0.061ms returns 0 +T1E08 003:662.054 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:662.128 - 0.073ms returns 0 +T1E08 003:662.855 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:662.948 - 0.093ms returns 0 +T1E08 003:663.005 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:663.059 - 0.054ms returns 0 +T1E08 003:663.113 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:663.166 - 0.053ms returns 0 +T1E08 003:663.230 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:663.294 - 0.063ms returns 0 +T1E08 003:663.359 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:663.436 - 0.076ms returns 0 +T1E08 003:663.502 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:663.566 - 0.064ms returns 0 +T1E08 003:663.632 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:663.696 - 0.064ms returns 0 +T1E08 003:663.761 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:663.825 - 0.064ms returns 0 +T1E08 003:663.898 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:663.963 - 0.064ms returns 0 +T1E08 003:664.028 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:664.092 - 0.063ms returns 0 +T1E08 003:664.157 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:664.220 - 0.063ms returns 0 +T1E08 003:664.286 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:664.350 - 0.064ms returns 0 +T1E08 003:664.409 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:664.464 - 0.055ms returns 0x00000026 +T1E08 003:664.518 JLINK_Go() +T1E08 003:664.583 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:668.180 - 3.660ms +T1E08 003:668.286 JLINK_IsHalted() +T1E08 003:669.231 - 0.944ms returns FALSE +T1E08 003:669.325 JLINK_HasError() +T1E08 003:671.477 JLINK_IsHalted() +T1E08 003:672.418 - 0.939ms returns FALSE +T1E08 003:672.599 JLINK_HasError() +T1E08 003:674.802 JLINK_IsHalted() +T1E08 003:677.684 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:678.778 - 3.974ms returns TRUE +T1E08 003:678.966 JLINK_ReadReg(R15 (PC)) +T1E08 003:679.036 - 0.069ms returns 0x20000000 +T1E08 003:679.098 JLINK_ClrBPEx(BPHandle = 0x00000026) +T1E08 003:679.159 - 0.060ms returns 0x00 +T1E08 003:679.220 JLINK_ReadReg(R0) +T1E08 003:679.281 - 0.060ms returns 0x00000000 +T1E08 003:680.104 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:680.181 Data: 82 10 01 EB C3 31 6F F3 0F 01 40 EA 05 60 08 43 ... +T1E08 003:680.273 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:683.264 - 3.158ms returns 0x27C +T1E08 003:683.462 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:683.577 Data: BD E8 F0 81 80 46 01 20 84 F8 50 00 04 20 84 F8 ... +T1E08 003:683.757 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:686.469 - 3.007ms returns 0x184 +T1E08 003:686.666 JLINK_HasError() +T1E08 003:686.789 JLINK_WriteReg(R0, 0x08006400) +T1E08 003:686.912 - 0.121ms returns 0 +T1E08 003:687.031 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:687.148 - 0.116ms returns 0 +T1E08 003:687.216 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:687.270 - 0.054ms returns 0 +T1E08 003:687.325 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:687.378 - 0.052ms returns 0 +T1E08 003:687.432 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:687.485 - 0.053ms returns 0 +T1E08 003:687.549 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:687.606 - 0.057ms returns 0 +T1E08 003:687.660 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:687.714 - 0.053ms returns 0 +T1E08 003:687.768 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:687.820 - 0.052ms returns 0 +T1E08 003:687.875 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:687.928 - 0.053ms returns 0 +T1E08 003:687.982 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:688.035 - 0.052ms returns 0 +T1E08 003:688.089 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:688.143 - 0.053ms returns 0 +T1E08 003:688.206 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:688.260 - 0.053ms returns 0 +T1E08 003:688.314 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:688.367 - 0.053ms returns 0 +T1E08 003:688.421 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:688.475 - 0.054ms returns 0 +T1E08 003:688.536 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:688.590 - 0.053ms returns 0 +T1E08 003:688.647 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:688.701 - 0.054ms returns 0 +T1E08 003:688.758 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:688.811 - 0.053ms returns 0 +T1E08 003:688.869 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:688.923 - 0.054ms returns 0 +T1E08 003:688.980 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:689.033 - 0.052ms returns 0 +T1E08 003:689.091 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:689.144 - 0.053ms returns 0 +T1E08 003:689.201 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:689.256 - 0.054ms returns 0x00000027 +T1E08 003:689.313 JLINK_Go() +T1E08 003:689.376 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:693.776 - 4.461ms +T1E08 003:693.971 JLINK_IsHalted() +T1E08 003:694.942 - 0.970ms returns FALSE +T1E08 003:695.804 JLINK_HasError() +T1E08 003:698.670 JLINK_IsHalted() +T1E08 003:701.566 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:702.493 - 3.822ms returns TRUE +T1E08 003:702.610 JLINK_ReadReg(R15 (PC)) +T1E08 003:702.690 - 0.079ms returns 0x20000000 +T1E08 003:702.766 JLINK_ClrBPEx(BPHandle = 0x00000027) +T1E08 003:702.839 - 0.073ms returns 0x00 +T1E08 003:702.917 JLINK_ReadReg(R0) +T1E08 003:702.982 - 0.065ms returns 0x00000000 +T1E08 003:704.124 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:704.206 Data: 04 21 84 F8 51 10 00 21 B0 F5 00 4F 61 65 A2 63 ... +T1E08 003:704.298 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:707.174 - 3.050ms returns 0x27C +T1E08 003:707.286 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:707.348 Data: 04 46 FF F7 57 F8 94 F8 51 10 81 46 01 29 09 D0 ... +T1E08 003:707.446 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:709.776 - 2.489ms returns 0x184 +T1E08 003:709.887 JLINK_HasError() +T1E08 003:709.956 JLINK_WriteReg(R0, 0x08006800) +T1E08 003:710.062 - 0.105ms returns 0 +T1E08 003:710.175 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:710.285 - 0.110ms returns 0 +T1E08 003:710.396 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:710.505 - 0.108ms returns 0 +T1E08 003:710.639 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:710.767 - 0.128ms returns 0 +T1E08 003:710.880 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:710.992 - 0.111ms returns 0 +T1E08 003:711.106 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:711.204 - 0.098ms returns 0 +T1E08 003:711.265 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:711.322 - 0.057ms returns 0 +T1E08 003:711.381 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:711.438 - 0.056ms returns 0 +T1E08 003:711.504 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:711.561 - 0.057ms returns 0 +T1E08 003:711.618 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:711.674 - 0.055ms returns 0 +T1E08 003:711.746 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:711.803 - 0.057ms returns 0 +T1E08 003:711.862 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:711.917 - 0.055ms returns 0 +T1E08 003:711.974 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:712.030 - 0.056ms returns 0 +T1E08 003:712.088 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:712.144 - 0.056ms returns 0 +T1E08 003:712.202 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:712.259 - 0.057ms returns 0 +T1E08 003:712.316 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:712.372 - 0.056ms returns 0 +T1E08 003:712.429 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:712.503 - 0.073ms returns 0 +T1E08 003:712.560 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:712.616 - 0.056ms returns 0 +T1E08 003:712.673 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:712.730 - 0.056ms returns 0 +T1E08 003:712.786 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:712.843 - 0.056ms returns 0 +T1E08 003:712.908 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:712.965 - 0.057ms returns 0x00000028 +T1E08 003:713.024 JLINK_Go() +T1E08 003:713.099 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:716.933 - 3.909ms +T1E08 003:717.057 JLINK_IsHalted() +T1E08 003:717.924 - 0.867ms returns FALSE +T1E08 003:718.011 JLINK_HasError() +T1E08 003:719.713 JLINK_IsHalted() +T1E08 003:720.845 - 1.131ms returns FALSE +T1E08 003:720.961 JLINK_HasError() +T1E08 003:722.767 JLINK_IsHalted() +T1E08 003:725.728 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:726.662 - 3.894ms returns TRUE +T1E08 003:726.783 JLINK_ReadReg(R15 (PC)) +T1E08 003:726.861 - 0.078ms returns 0x20000000 +T1E08 003:726.916 JLINK_ClrBPEx(BPHandle = 0x00000028) +T1E08 003:726.984 - 0.066ms returns 0x00 +T1E08 003:727.056 JLINK_ReadReg(R0) +T1E08 003:727.118 - 0.061ms returns 0x00000000 +T1E08 003:727.979 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:728.060 Data: A0 EB 09 00 40 45 D1 D3 01 20 84 F8 51 00 00 20 ... +T1E08 003:728.153 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:731.659 - 3.676ms returns 0x27C +T1E08 003:731.911 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:731.977 Data: 8F FB 02 28 08 BF 80 BD 40 F2 2C 11 C2 F2 00 01 ... +T1E08 003:732.108 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:734.759 - 2.843ms returns 0x184 +T1E08 003:735.087 JLINK_HasError() +T1E08 003:735.207 JLINK_WriteReg(R0, 0x08006C00) +T1E08 003:735.336 - 0.129ms returns 0 +T1E08 003:735.447 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:735.556 - 0.109ms returns 0 +T1E08 003:735.667 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:735.776 - 0.108ms returns 0 +T1E08 003:735.886 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:735.994 - 0.108ms returns 0 +T1E08 003:736.106 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:736.220 - 0.114ms returns 0 +T1E08 003:736.378 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:736.548 - 0.168ms returns 0 +T1E08 003:736.661 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:736.717 - 0.056ms returns 0 +T1E08 003:736.774 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:736.836 - 0.062ms returns 0 +T1E08 003:736.910 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:736.973 - 0.063ms returns 0 +T1E08 003:737.030 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:737.087 - 0.056ms returns 0 +T1E08 003:737.146 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:737.214 - 0.068ms returns 0 +T1E08 003:737.272 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:737.328 - 0.056ms returns 0 +T1E08 003:737.385 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:737.441 - 0.056ms returns 0 +T1E08 003:737.506 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:737.564 - 0.058ms returns 0 +T1E08 003:737.622 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:737.678 - 0.056ms returns 0 +T1E08 003:737.736 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:737.792 - 0.057ms returns 0 +T1E08 003:737.849 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:737.907 - 0.058ms returns 0 +T1E08 003:737.964 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:738.047 - 0.082ms returns 0 +T1E08 003:738.104 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:738.173 - 0.068ms returns 0 +T1E08 003:738.230 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:738.286 - 0.056ms returns 0 +T1E08 003:738.345 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:738.405 - 0.060ms returns 0x00000029 +T1E08 003:738.464 JLINK_Go() +T1E08 003:738.557 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:742.559 - 4.095ms +T1E08 003:742.662 JLINK_IsHalted() +T1E08 003:743.481 - 0.819ms returns FALSE +T1E08 003:743.553 JLINK_HasError() +T1E08 003:748.857 JLINK_IsHalted() +T1E08 003:751.901 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:752.934 - 4.075ms returns TRUE +T1E08 003:753.033 JLINK_ReadReg(R15 (PC)) +T1E08 003:753.097 - 0.064ms returns 0x20000000 +T1E08 003:753.172 JLINK_ClrBPEx(BPHandle = 0x00000029) +T1E08 003:753.250 - 0.078ms returns 0x00 +T1E08 003:753.311 JLINK_ReadReg(R0) +T1E08 003:753.365 - 0.054ms returns 0x00000000 +T1E08 003:754.189 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:754.380 Data: 10 B5 04 46 90 F8 3D 00 28 B9 00 20 84 F8 3C 00 ... +T1E08 003:754.493 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:757.435 - 3.245ms returns 0x27C +T1E08 003:757.521 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:757.585 Data: FF F7 B4 FF 05 E0 20 46 00 F0 9E F8 20 46 00 F0 ... +T1E08 003:757.873 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:760.257 - 2.735ms returns 0x184 +T1E08 003:760.352 JLINK_HasError() +T1E08 003:760.412 JLINK_WriteReg(R0, 0x08007000) +T1E08 003:760.481 - 0.068ms returns 0 +T1E08 003:760.564 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:760.628 - 0.064ms returns 0 +T1E08 003:760.693 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:760.758 - 0.064ms returns 0 +T1E08 003:760.824 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:760.888 - 0.064ms returns 0 +T1E08 003:760.952 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:761.016 - 0.063ms returns 0 +T1E08 003:761.081 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:761.146 - 0.064ms returns 0 +T1E08 003:761.211 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:761.284 - 0.073ms returns 0 +T1E08 003:761.349 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:761.413 - 0.064ms returns 0 +T1E08 003:761.478 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:761.542 - 0.063ms returns 0 +T1E08 003:761.605 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:761.658 - 0.053ms returns 0 +T1E08 003:761.713 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:761.766 - 0.053ms returns 0 +T1E08 003:761.820 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:761.874 - 0.053ms returns 0 +T1E08 003:761.928 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:761.980 - 0.053ms returns 0 +T1E08 003:762.035 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:762.088 - 0.053ms returns 0 +T1E08 003:762.143 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:762.196 - 0.053ms returns 0 +T1E08 003:762.254 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:762.308 - 0.053ms returns 0 +T1E08 003:762.362 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:762.416 - 0.053ms returns 0 +T1E08 003:762.470 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:762.524 - 0.053ms returns 0 +T1E08 003:762.578 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:762.637 - 0.059ms returns 0 +T1E08 003:762.696 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:762.751 - 0.054ms returns 0 +T1E08 003:762.806 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:762.860 - 0.055ms returns 0x0000002A +T1E08 003:762.915 JLINK_Go() +T1E08 003:762.979 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:766.811 - 3.894ms +T1E08 003:766.918 JLINK_IsHalted() +T1E08 003:767.737 - 0.818ms returns FALSE +T1E08 003:767.816 JLINK_HasError() +T1E08 003:769.628 JLINK_IsHalted() +T1E08 003:771.251 - 1.621ms returns FALSE +T1E08 003:771.347 JLINK_HasError() +T1E08 003:772.826 JLINK_IsHalted() +T1E08 003:775.898 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:776.856 - 4.030ms returns TRUE +T1E08 003:776.962 JLINK_ReadReg(R15 (PC)) +T1E08 003:777.085 - 0.123ms returns 0x20000000 +T1E08 003:777.152 JLINK_ClrBPEx(BPHandle = 0x0000002A) +T1E08 003:777.225 - 0.072ms returns 0x00 +T1E08 003:777.304 JLINK_ReadReg(R0) +T1E08 003:777.377 - 0.073ms returns 0x00000000 +T1E08 003:778.330 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:778.433 Data: 20 68 29 46 02 F0 7A FC 20 68 50 F8 18 1F 16 E0 ... +T1E08 003:778.531 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:781.668 - 3.339ms returns 0x27C +T1E08 003:781.761 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:781.816 Data: 00 2A 1C BF 40 1A 5F EA 00 41 01 D1 02 B0 B0 BD ... +T1E08 003:781.902 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:784.094 - 2.332ms returns 0x184 +T1E08 003:784.198 JLINK_HasError() +T1E08 003:784.263 JLINK_WriteReg(R0, 0x08007400) +T1E08 003:784.328 - 0.065ms returns 0 +T1E08 003:784.393 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:784.502 - 0.108ms returns 0 +T1E08 003:784.629 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:784.748 - 0.119ms returns 0 +T1E08 003:784.863 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:784.975 - 0.112ms returns 0 +T1E08 003:785.090 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:785.203 - 0.112ms returns 0 +T1E08 003:785.317 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:785.430 - 0.112ms returns 0 +T1E08 003:785.544 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:785.644 - 0.100ms returns 0 +T1E08 003:785.810 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:785.925 - 0.115ms returns 0 +T1E08 003:786.001 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:786.072 - 0.071ms returns 0 +T1E08 003:786.147 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:786.240 - 0.092ms returns 0 +T1E08 003:786.312 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:786.365 - 0.054ms returns 0 +T1E08 003:786.421 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:786.474 - 0.053ms returns 0 +T1E08 003:786.528 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:786.581 - 0.052ms returns 0 +T1E08 003:786.636 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:786.690 - 0.053ms returns 0 +T1E08 003:786.744 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:786.797 - 0.053ms returns 0 +T1E08 003:786.852 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:786.905 - 0.053ms returns 0 +T1E08 003:786.959 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:787.020 - 0.060ms returns 0 +T1E08 003:787.074 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:787.128 - 0.053ms returns 0 +T1E08 003:787.182 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:787.234 - 0.052ms returns 0 +T1E08 003:787.288 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:787.341 - 0.053ms returns 0 +T1E08 003:787.396 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:787.451 - 0.054ms returns 0x0000002B +T1E08 003:787.563 JLINK_Go() +T1E08 003:787.628 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:791.977 - 4.412ms +T1E08 003:792.176 JLINK_IsHalted() +T1E08 003:792.978 - 0.801ms returns FALSE +T1E08 003:793.079 JLINK_HasError() +T1E08 003:794.218 JLINK_IsHalted() +T1E08 003:795.192 - 0.973ms returns FALSE +T1E08 003:795.306 JLINK_HasError() +T1E08 003:797.340 JLINK_IsHalted() +T1E08 003:800.626 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:801.547 - 4.205ms returns TRUE +T1E08 003:801.831 JLINK_ReadReg(R15 (PC)) +T1E08 003:801.973 - 0.142ms returns 0x20000000 +T1E08 003:802.090 JLINK_ClrBPEx(BPHandle = 0x0000002B) +T1E08 003:802.220 - 0.129ms returns 0x00 +T1E08 003:802.336 JLINK_ReadReg(R0) +T1E08 003:802.438 - 0.101ms returns 0x00000000 +T1E08 003:803.212 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:803.302 Data: 20 46 02 F0 FF FF 20 68 40 69 61 6C 00 F0 40 00 ... +T1E08 003:803.392 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:806.555 - 3.342ms returns 0x27C +T1E08 003:806.737 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:806.848 Data: C4 F2 02 01 0A 69 42 F4 00 32 0A 61 0A 69 02 F4 ... +T1E08 003:807.106 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:809.578 - 2.841ms returns 0x184 +T1E08 003:809.749 JLINK_HasError() +T1E08 003:809.864 JLINK_WriteReg(R0, 0x08007800) +T1E08 003:809.989 - 0.125ms returns 0 +T1E08 003:810.100 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:810.222 - 0.121ms returns 0 +T1E08 003:810.333 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:810.441 - 0.107ms returns 0 +T1E08 003:810.551 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:810.684 - 0.133ms returns 0 +T1E08 003:810.816 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:810.875 - 0.058ms returns 0 +T1E08 003:810.930 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:810.988 - 0.058ms returns 0 +T1E08 003:811.043 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:811.096 - 0.053ms returns 0 +T1E08 003:811.150 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:811.203 - 0.052ms returns 0 +T1E08 003:811.257 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:811.310 - 0.053ms returns 0 +T1E08 003:811.364 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:811.417 - 0.053ms returns 0 +T1E08 003:811.472 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:811.524 - 0.053ms returns 0 +T1E08 003:811.578 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:811.632 - 0.053ms returns 0 +T1E08 003:811.693 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:811.758 - 0.064ms returns 0 +T1E08 003:811.814 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:811.869 - 0.054ms returns 0 +T1E08 003:811.923 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:811.989 - 0.066ms returns 0 +T1E08 003:812.044 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:812.097 - 0.053ms returns 0 +T1E08 003:812.152 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:812.209 - 0.057ms returns 0 +T1E08 003:812.264 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:812.320 - 0.055ms returns 0 +T1E08 003:812.394 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:812.450 - 0.055ms returns 0 +T1E08 003:812.504 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:812.557 - 0.053ms returns 0 +T1E08 003:812.612 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:812.666 - 0.054ms returns 0x0000002C +T1E08 003:812.720 JLINK_Go() +T1E08 003:812.783 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:817.275 - 4.553ms +T1E08 003:817.562 JLINK_IsHalted() +T1E08 003:818.512 - 0.949ms returns FALSE +T1E08 003:818.598 JLINK_HasError() +T1E08 003:820.265 JLINK_IsHalted() +T1E08 003:821.128 - 0.863ms returns FALSE +T1E08 003:821.237 JLINK_HasError() +T1E08 003:823.050 JLINK_IsHalted() +T1E08 003:826.154 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:827.164 - 4.112ms returns TRUE +T1E08 003:827.375 JLINK_ReadReg(R15 (PC)) +T1E08 003:827.498 - 0.122ms returns 0x20000000 +T1E08 003:827.625 JLINK_ClrBPEx(BPHandle = 0x0000002C) +T1E08 003:827.750 - 0.125ms returns 0x00 +T1E08 003:827.877 JLINK_ReadReg(R0) +T1E08 003:827.996 - 0.118ms returns 0x00000000 +T1E08 003:829.092 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:829.167 Data: 18 BF 80 47 80 BD 00 00 80 B5 02 F0 D1 FD 05 28 ... +T1E08 003:829.256 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:832.179 - 3.087ms returns 0x27C +T1E08 003:832.280 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:832.344 Data: 03 4A 35 EE 05 5A 30 EE 01 0A 85 EE 03 5A 80 EE ... +T1E08 003:832.444 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:834.721 - 2.441ms returns 0x184 +T1E08 003:834.824 JLINK_HasError() +T1E08 003:834.890 JLINK_WriteReg(R0, 0x08007C00) +T1E08 003:834.962 - 0.071ms returns 0 +T1E08 003:835.024 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:835.085 - 0.061ms returns 0 +T1E08 003:835.146 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:835.207 - 0.060ms returns 0 +T1E08 003:835.268 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:835.328 - 0.059ms returns 0 +T1E08 003:835.389 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:835.458 - 0.069ms returns 0 +T1E08 003:835.533 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:835.602 - 0.069ms returns 0 +T1E08 003:835.686 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:835.764 - 0.077ms returns 0 +T1E08 003:835.843 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:835.922 - 0.078ms returns 0 +T1E08 003:836.004 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:836.089 - 0.085ms returns 0 +T1E08 003:836.166 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:836.220 - 0.054ms returns 0 +T1E08 003:836.275 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:836.331 - 0.056ms returns 0 +T1E08 003:836.399 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:836.462 - 0.063ms returns 0 +T1E08 003:836.521 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:836.578 - 0.056ms returns 0 +T1E08 003:836.634 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:836.691 - 0.056ms returns 0 +T1E08 003:836.748 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:836.804 - 0.056ms returns 0 +T1E08 003:836.861 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:836.917 - 0.057ms returns 0 +T1E08 003:836.974 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:837.030 - 0.055ms returns 0 +T1E08 003:837.086 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:837.142 - 0.055ms returns 0 +T1E08 003:837.205 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:837.262 - 0.056ms returns 0 +T1E08 003:837.318 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:837.374 - 0.055ms returns 0 +T1E08 003:837.432 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:837.490 - 0.058ms returns 0x0000002D +T1E08 003:837.547 JLINK_Go() +T1E08 003:837.616 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:841.325 - 3.777ms +T1E08 003:841.452 JLINK_IsHalted() +T1E08 003:842.368 - 0.915ms returns FALSE +T1E08 003:842.445 JLINK_HasError() +T1E08 003:845.769 JLINK_IsHalted() +T1E08 003:848.788 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:849.986 - 4.216ms returns TRUE +T1E08 003:850.096 JLINK_ReadReg(R15 (PC)) +T1E08 003:850.168 - 0.072ms returns 0x20000000 +T1E08 003:850.236 JLINK_ClrBPEx(BPHandle = 0x0000002D) +T1E08 003:850.304 - 0.068ms returns 0x00 +T1E08 003:850.383 JLINK_ReadReg(R0) +T1E08 003:850.442 - 0.059ms returns 0x00000000 +T1E08 003:851.305 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:851.384 Data: EE D1 66 88 B8 F8 02 70 BE 42 E9 D1 00 26 20 46 ... +T1E08 003:851.479 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:854.536 - 3.231ms returns 0x27C +T1E08 003:854.650 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:854.706 Data: 08 0A B2 EE 08 1A B0 EE 49 0A 0C 20 02 F0 BC FE ... +T1E08 003:854.792 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:857.045 - 2.393ms returns 0x184 +T1E08 003:857.245 JLINK_HasError() +T1E08 003:857.367 JLINK_WriteReg(R0, 0x08008000) +T1E08 003:857.490 - 0.123ms returns 0 +T1E08 003:857.608 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:857.725 - 0.117ms returns 0 +T1E08 003:857.859 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:857.972 - 0.113ms returns 0 +T1E08 003:858.092 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:858.205 - 0.113ms returns 0 +T1E08 003:858.326 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:858.440 - 0.113ms returns 0 +T1E08 003:858.559 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:858.672 - 0.113ms returns 0 +T1E08 003:858.793 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:858.911 - 0.118ms returns 0 +T1E08 003:858.976 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:859.030 - 0.054ms returns 0 +T1E08 003:859.088 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:859.141 - 0.053ms returns 0 +T1E08 003:859.200 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:859.253 - 0.053ms returns 0 +T1E08 003:859.311 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:859.365 - 0.054ms returns 0 +T1E08 003:859.423 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:859.476 - 0.053ms returns 0 +T1E08 003:859.534 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:859.588 - 0.053ms returns 0 +T1E08 003:859.645 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:859.703 - 0.058ms returns 0 +T1E08 003:859.761 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:859.819 - 0.057ms returns 0 +T1E08 003:859.876 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:859.929 - 0.053ms returns 0 +T1E08 003:859.990 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:860.044 - 0.054ms returns 0 +T1E08 003:860.101 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:860.154 - 0.053ms returns 0 +T1E08 003:860.211 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:860.265 - 0.053ms returns 0 +T1E08 003:860.322 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:860.376 - 0.053ms returns 0 +T1E08 003:860.434 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:860.489 - 0.055ms returns 0x0000002E +T1E08 003:860.550 JLINK_Go() +T1E08 003:860.628 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:864.373 - 3.822ms +T1E08 003:864.592 JLINK_IsHalted() +T1E08 003:865.503 - 0.910ms returns FALSE +T1E08 003:865.620 JLINK_HasError() +T1E08 003:869.153 JLINK_IsHalted() +T1E08 003:872.596 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:873.751 - 4.597ms returns TRUE +T1E08 003:873.947 JLINK_ReadReg(R15 (PC)) +T1E08 003:874.095 - 0.147ms returns 0x20000000 +T1E08 003:874.215 JLINK_ClrBPEx(BPHandle = 0x0000002E) +T1E08 003:874.334 - 0.119ms returns 0x00 +T1E08 003:874.424 JLINK_ReadReg(R0) +T1E08 003:874.477 - 0.053ms returns 0x00000000 +T1E08 003:875.187 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:875.263 Data: F0 0F 30 D0 40 F2 FF 11 00 91 08 21 8D F8 04 10 ... +T1E08 003:875.366 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:878.273 - 3.085ms returns 0x27C +T1E08 003:878.383 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:878.459 Data: 48 9A FF F7 49 FF E8 B1 2E 79 68 88 31 46 FF F7 ... +T1E08 003:878.562 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:880.687 - 2.303ms returns 0x184 +T1E08 003:880.794 JLINK_HasError() +T1E08 003:880.860 JLINK_WriteReg(R0, 0x08008400) +T1E08 003:880.923 - 0.063ms returns 0 +T1E08 003:880.986 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:881.046 - 0.060ms returns 0 +T1E08 003:881.107 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:881.167 - 0.060ms returns 0 +T1E08 003:881.228 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:881.288 - 0.059ms returns 0 +T1E08 003:881.348 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:881.408 - 0.059ms returns 0 +T1E08 003:881.469 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:881.529 - 0.059ms returns 0 +T1E08 003:881.590 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:881.649 - 0.059ms returns 0 +T1E08 003:881.709 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:881.762 - 0.052ms returns 0 +T1E08 003:881.816 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:881.869 - 0.052ms returns 0 +T1E08 003:881.923 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:881.975 - 0.052ms returns 0 +T1E08 003:882.030 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:882.082 - 0.052ms returns 0 +T1E08 003:882.136 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:882.190 - 0.053ms returns 0 +T1E08 003:882.244 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:882.296 - 0.053ms returns 0 +T1E08 003:882.351 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:882.404 - 0.053ms returns 0 +T1E08 003:882.467 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:882.520 - 0.053ms returns 0 +T1E08 003:882.575 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:882.628 - 0.053ms returns 0 +T1E08 003:882.682 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:882.736 - 0.053ms returns 0 +T1E08 003:882.790 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:882.843 - 0.053ms returns 0 +T1E08 003:882.897 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:882.950 - 0.053ms returns 0 +T1E08 003:883.004 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:883.058 - 0.053ms returns 0 +T1E08 003:883.113 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:883.168 - 0.054ms returns 0x0000002F +T1E08 003:883.222 JLINK_Go() +T1E08 003:883.285 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:887.057 - 3.833ms +T1E08 003:887.241 JLINK_IsHalted() +T1E08 003:888.122 - 0.880ms returns FALSE +T1E08 003:888.231 JLINK_HasError() +T1E08 003:890.096 JLINK_IsHalted() +T1E08 003:891.262 - 1.165ms returns FALSE +T1E08 003:891.398 JLINK_HasError() +T1E08 003:893.078 JLINK_IsHalted() +T1E08 003:897.026 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:897.944 - 4.865ms returns TRUE +T1E08 003:898.050 JLINK_ReadReg(R15 (PC)) +T1E08 003:898.117 - 0.067ms returns 0x20000000 +T1E08 003:898.182 JLINK_ClrBPEx(BPHandle = 0x0000002F) +T1E08 003:898.254 - 0.071ms returns 0x00 +T1E08 003:898.318 JLINK_ReadReg(R0) +T1E08 003:898.383 - 0.064ms returns 0x00000000 +T1E08 003:899.114 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:899.190 Data: 00 1E 4F F0 80 74 81 E8 08 50 4F F4 80 71 84 61 ... +T1E08 003:899.280 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:902.225 - 3.111ms returns 0x27C +T1E08 003:902.356 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:902.423 Data: 4F F4 00 60 CD E9 02 08 02 20 05 90 48 46 29 46 ... +T1E08 003:902.524 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:904.839 - 2.482ms returns 0x184 +T1E08 003:904.942 JLINK_HasError() +T1E08 003:905.007 JLINK_WriteReg(R0, 0x08008800) +T1E08 003:905.071 - 0.063ms returns 0 +T1E08 003:905.154 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:905.224 - 0.069ms returns 0 +T1E08 003:905.285 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:905.345 - 0.060ms returns 0 +T1E08 003:905.406 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:905.466 - 0.060ms returns 0 +T1E08 003:905.528 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:905.588 - 0.060ms returns 0 +T1E08 003:905.656 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:905.715 - 0.059ms returns 0 +T1E08 003:905.769 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:905.823 - 0.053ms returns 0 +T1E08 003:905.877 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:905.930 - 0.053ms returns 0 +T1E08 003:905.984 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:906.037 - 0.053ms returns 0 +T1E08 003:906.101 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:906.163 - 0.062ms returns 0 +T1E08 003:906.217 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:906.270 - 0.053ms returns 0 +T1E08 003:906.324 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:906.378 - 0.053ms returns 0 +T1E08 003:906.432 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:906.486 - 0.053ms returns 0 +T1E08 003:906.540 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:906.600 - 0.060ms returns 0 +T1E08 003:906.655 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:906.708 - 0.053ms returns 0 +T1E08 003:906.762 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:906.816 - 0.053ms returns 0 +T1E08 003:906.870 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:906.923 - 0.053ms returns 0 +T1E08 003:906.978 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:907.031 - 0.053ms returns 0 +T1E08 003:907.092 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:907.146 - 0.053ms returns 0 +T1E08 003:907.205 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:907.258 - 0.053ms returns 0 +T1E08 003:907.313 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:907.372 - 0.059ms returns 0x00000030 +T1E08 003:907.428 JLINK_Go() +T1E08 003:907.490 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:911.573 - 4.144ms +T1E08 003:929.524 JLINK_IsHalted() +T1E08 003:932.609 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:933.522 - 3.997ms returns TRUE +T1E08 003:933.652 JLINK_ReadReg(R15 (PC)) +T1E08 003:933.731 - 0.079ms returns 0x20000000 +T1E08 003:933.809 JLINK_ClrBPEx(BPHandle = 0x00000030) +T1E08 003:933.892 - 0.082ms returns 0x00 +T1E08 003:933.970 JLINK_ReadReg(R0) +T1E08 003:934.044 - 0.073ms returns 0x00000000 +T1E08 003:934.908 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:934.984 Data: C2 F2 01 00 FE F7 2C FC 00 28 18 BF FB F7 6C FB ... +T1E08 003:935.074 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:938.557 - 3.648ms returns 0x27C +T1E08 003:938.669 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:938.741 Data: 9F ED 44 1A 22 EE 03 2A 22 EE 01 4A 02 EE 10 AA ... +T1E08 003:938.843 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:941.109 - 2.439ms returns 0x184 +T1E08 003:941.294 JLINK_HasError() +T1E08 003:941.410 JLINK_WriteReg(R0, 0x08008C00) +T1E08 003:941.523 - 0.113ms returns 0 +T1E08 003:941.615 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:941.687 - 0.071ms returns 0 +T1E08 003:941.742 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:941.795 - 0.053ms returns 0 +T1E08 003:941.849 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:941.902 - 0.052ms returns 0 +T1E08 003:941.956 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:942.009 - 0.052ms returns 0 +T1E08 003:942.063 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:942.116 - 0.053ms returns 0 +T1E08 003:942.170 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:942.224 - 0.053ms returns 0 +T1E08 003:942.278 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:942.331 - 0.053ms returns 0 +T1E08 003:942.385 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:942.438 - 0.053ms returns 0 +T1E08 003:942.492 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:942.544 - 0.052ms returns 0 +T1E08 003:942.598 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:942.652 - 0.053ms returns 0 +T1E08 003:942.705 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:942.759 - 0.053ms returns 0 +T1E08 003:942.822 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:942.886 - 0.064ms returns 0 +T1E08 003:942.944 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:942.998 - 0.054ms returns 0 +T1E08 003:943.052 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:943.107 - 0.054ms returns 0 +T1E08 003:943.163 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:943.217 - 0.054ms returns 0 +T1E08 003:943.273 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:943.328 - 0.055ms returns 0 +T1E08 003:943.384 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:943.440 - 0.055ms returns 0 +T1E08 003:943.504 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:943.558 - 0.054ms returns 0 +T1E08 003:943.619 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:943.746 - 0.126ms returns 0 +T1E08 003:943.823 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:943.879 - 0.056ms returns 0x00000031 +T1E08 003:943.942 JLINK_Go() +T1E08 003:944.012 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:948.237 - 4.294ms +T1E08 003:948.351 JLINK_IsHalted() +T1E08 003:949.123 - 0.771ms returns FALSE +T1E08 003:949.222 JLINK_HasError() +T1E08 003:956.503 JLINK_IsHalted() +T1E08 003:959.722 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:960.806 - 4.303ms returns TRUE +T1E08 003:960.948 JLINK_ReadReg(R15 (PC)) +T1E08 003:961.036 - 0.088ms returns 0x20000000 +T1E08 003:961.135 JLINK_ClrBPEx(BPHandle = 0x00000031) +T1E08 003:961.208 - 0.073ms returns 0x00 +T1E08 003:961.280 JLINK_ReadReg(R0) +T1E08 003:961.369 - 0.088ms returns 0x00000000 +T1E08 003:962.401 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:962.506 Data: 10 0A 01 F0 5D FE 00 28 00 F0 95 80 19 EE 10 0A ... +T1E08 003:962.633 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:965.933 - 3.530ms returns 0x27C +T1E08 003:966.123 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:966.234 Data: 20 51 C2 F2 01 01 08 60 A8 B1 49 F2 B9 22 C0 F6 ... +T1E08 003:966.412 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:969.186 - 3.063ms returns 0x184 +T1E08 003:969.292 JLINK_HasError() +T1E08 003:969.352 JLINK_WriteReg(R0, 0x08009000) +T1E08 003:969.411 - 0.059ms returns 0 +T1E08 003:969.468 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:969.522 - 0.054ms returns 0 +T1E08 003:969.578 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:969.631 - 0.053ms returns 0 +T1E08 003:969.686 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:969.740 - 0.054ms returns 0 +T1E08 003:969.796 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:969.895 - 0.099ms returns 0 +T1E08 003:969.956 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:970.013 - 0.057ms returns 0 +T1E08 003:970.106 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:970.162 - 0.056ms returns 0 +T1E08 003:970.220 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:970.432 - 0.212ms returns 0 +T1E08 003:970.488 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:970.543 - 0.055ms returns 0 +T1E08 003:970.598 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:970.652 - 0.053ms returns 0 +T1E08 003:970.707 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:970.760 - 0.053ms returns 0 +T1E08 003:970.820 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:970.874 - 0.053ms returns 0 +T1E08 003:970.936 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:970.990 - 0.053ms returns 0 +T1E08 003:971.045 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:971.100 - 0.055ms returns 0 +T1E08 003:971.155 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:971.208 - 0.053ms returns 0 +T1E08 003:971.263 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:971.317 - 0.054ms returns 0 +T1E08 003:971.373 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:971.426 - 0.053ms returns 0 +T1E08 003:971.482 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:971.535 - 0.053ms returns 0 +T1E08 003:971.590 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:971.643 - 0.053ms returns 0 +T1E08 003:971.698 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:971.752 - 0.053ms returns 0 +T1E08 003:971.959 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:972.046 - 0.087ms returns 0x00000032 +T1E08 003:972.117 JLINK_Go() +T1E08 003:972.205 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 003:975.821 - 3.703ms +T1E08 003:975.918 JLINK_IsHalted() +T1E08 003:977.500 - 1.581ms returns FALSE +T1E08 003:977.613 JLINK_HasError() +T1E08 003:982.008 JLINK_IsHalted() +T1E08 003:985.196 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 003:986.132 - 4.119ms returns TRUE +T1E08 003:986.285 JLINK_ReadReg(R15 (PC)) +T1E08 003:986.363 - 0.078ms returns 0x20000000 +T1E08 003:986.540 JLINK_ClrBPEx(BPHandle = 0x00000032) +T1E08 003:986.800 - 0.259ms returns 0x00 +T1E08 003:986.972 JLINK_ReadReg(R0) +T1E08 003:987.086 - 0.114ms returns 0x00000000 +T1E08 003:988.130 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 003:988.228 Data: 01 98 00 20 E0 86 01 20 84 F8 51 00 60 6D 20 B1 ... +T1E08 003:988.357 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 003:991.346 - 3.215ms returns 0x27C +T1E08 003:991.458 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 003:991.520 Data: 01 20 89 F8 51 00 00 20 89 F8 50 00 03 20 02 B0 ... +T1E08 003:991.632 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 003:993.821 - 2.362ms returns 0x184 +T1E08 003:993.943 JLINK_HasError() +T1E08 003:994.026 JLINK_WriteReg(R0, 0x08009400) +T1E08 003:994.091 - 0.064ms returns 0 +T1E08 003:994.154 JLINK_WriteReg(R1, 0x00000400) +T1E08 003:994.215 - 0.061ms returns 0 +T1E08 003:994.277 JLINK_WriteReg(R2, 0x20000184) +T1E08 003:994.337 - 0.060ms returns 0 +T1E08 003:994.399 JLINK_WriteReg(R3, 0x00000000) +T1E08 003:994.491 - 0.091ms returns 0 +T1E08 003:994.607 JLINK_WriteReg(R4, 0x00000000) +T1E08 003:994.720 - 0.112ms returns 0 +T1E08 003:994.834 JLINK_WriteReg(R5, 0x00000000) +T1E08 003:994.947 - 0.112ms returns 0 +T1E08 003:995.062 JLINK_WriteReg(R6, 0x00000000) +T1E08 003:995.184 - 0.121ms returns 0 +T1E08 003:995.311 JLINK_WriteReg(R7, 0x00000000) +T1E08 003:995.424 - 0.113ms returns 0 +T1E08 003:995.557 JLINK_WriteReg(R8, 0x00000000) +T1E08 003:995.670 - 0.131ms returns 0 +T1E08 003:995.732 JLINK_WriteReg(R9, 0x20000180) +T1E08 003:995.785 - 0.053ms returns 0 +T1E08 003:995.840 JLINK_WriteReg(R10, 0x00000000) +T1E08 003:995.894 - 0.054ms returns 0 +T1E08 003:995.948 JLINK_WriteReg(R11, 0x00000000) +T1E08 003:996.001 - 0.053ms returns 0 +T1E08 003:996.056 JLINK_WriteReg(R12, 0x00000000) +T1E08 003:996.109 - 0.053ms returns 0 +T1E08 003:996.164 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 003:996.217 - 0.054ms returns 0 +T1E08 003:996.272 JLINK_WriteReg(R14, 0x20000001) +T1E08 003:996.325 - 0.053ms returns 0 +T1E08 003:996.380 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 003:996.434 - 0.054ms returns 0 +T1E08 003:996.488 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 003:996.542 - 0.053ms returns 0 +T1E08 003:996.596 JLINK_WriteReg(MSP, 0x20001000) +T1E08 003:996.656 - 0.059ms returns 0 +T1E08 003:996.711 JLINK_WriteReg(PSP, 0x20001000) +T1E08 003:996.765 - 0.053ms returns 0 +T1E08 003:996.819 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 003:996.872 - 0.053ms returns 0 +T1E08 003:996.928 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 003:996.983 - 0.055ms returns 0x00000033 +T1E08 003:997.038 JLINK_Go() +T1E08 003:997.102 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:000.824 - 3.785ms +T1E08 004:000.918 JLINK_IsHalted() +T1E08 004:001.774 - 0.855ms returns FALSE +T1E08 004:001.968 JLINK_HasError() +T1E08 004:004.165 JLINK_IsHalted() +T1E08 004:005.146 - 0.980ms returns FALSE +T1E08 004:005.254 JLINK_HasError() +T1E08 004:007.212 JLINK_IsHalted() +T1E08 004:010.505 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:011.636 - 4.423ms returns TRUE +T1E08 004:011.747 JLINK_ReadReg(R15 (PC)) +T1E08 004:011.816 - 0.069ms returns 0x20000000 +T1E08 004:011.894 JLINK_ClrBPEx(BPHandle = 0x00000033) +T1E08 004:011.959 - 0.065ms returns 0x00 +T1E08 004:012.031 JLINK_ReadReg(R0) +T1E08 004:012.096 - 0.064ms returns 0x00000000 +T1E08 004:012.933 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:013.012 Data: F0 8F 00 00 00 28 0E BF FF 20 01 77 00 20 40 B2 ... +T1E08 004:013.101 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:016.044 - 3.109ms returns 0x27C +T1E08 004:016.232 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:016.348 Data: 01 68 02 26 41 F0 80 51 01 60 00 68 00 F0 80 50 ... +T1E08 004:016.528 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:018.980 - 2.747ms returns 0x184 +T1E08 004:019.111 JLINK_HasError() +T1E08 004:019.197 JLINK_WriteReg(R0, 0x08009800) +T1E08 004:019.286 - 0.089ms returns 0 +T1E08 004:019.350 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:019.411 - 0.060ms returns 0 +T1E08 004:019.473 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:019.533 - 0.060ms returns 0 +T1E08 004:019.594 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:019.654 - 0.059ms returns 0 +T1E08 004:019.778 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:019.895 - 0.116ms returns 0 +T1E08 004:020.015 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:020.152 - 0.137ms returns 0 +T1E08 004:020.273 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:020.390 - 0.117ms returns 0 +T1E08 004:020.510 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:020.627 - 0.117ms returns 0 +T1E08 004:020.764 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:021.063 - 0.299ms returns 0 +T1E08 004:021.124 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:021.178 - 0.053ms returns 0 +T1E08 004:021.232 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:021.288 - 0.055ms returns 0 +T1E08 004:021.351 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:021.404 - 0.053ms returns 0 +T1E08 004:021.459 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:021.531 - 0.072ms returns 0 +T1E08 004:021.586 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:021.640 - 0.054ms returns 0 +T1E08 004:021.694 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:021.747 - 0.053ms returns 0 +T1E08 004:021.801 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:021.854 - 0.053ms returns 0 +T1E08 004:021.908 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:021.962 - 0.053ms returns 0 +T1E08 004:022.016 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:022.068 - 0.053ms returns 0 +T1E08 004:022.123 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:022.176 - 0.053ms returns 0 +T1E08 004:022.230 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:022.283 - 0.053ms returns 0 +T1E08 004:022.338 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:022.393 - 0.055ms returns 0x00000034 +T1E08 004:022.448 JLINK_Go() +T1E08 004:022.511 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:026.326 - 3.878ms +T1E08 004:026.433 JLINK_IsHalted() +T1E08 004:027.346 - 0.911ms returns FALSE +T1E08 004:027.536 JLINK_HasError() +T1E08 004:029.162 JLINK_IsHalted() +T1E08 004:030.041 - 0.878ms returns FALSE +T1E08 004:030.151 JLINK_HasError() +T1E08 004:031.627 JLINK_IsHalted() +T1E08 004:034.713 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:035.689 - 4.061ms returns TRUE +T1E08 004:035.796 JLINK_ReadReg(R15 (PC)) +T1E08 004:035.864 - 0.068ms returns 0x20000000 +T1E08 004:035.928 JLINK_ClrBPEx(BPHandle = 0x00000034) +T1E08 004:035.991 - 0.062ms returns 0x00 +T1E08 004:036.054 JLINK_ReadReg(R0) +T1E08 004:036.126 - 0.071ms returns 0x00000000 +T1E08 004:037.082 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:037.171 Data: 00 03 C4 F2 01 03 98 42 05 D0 44 F2 00 43 C4 F2 ... +T1E08 004:037.403 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:040.472 - 3.389ms returns 0x27C +T1E08 004:040.690 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:040.807 Data: 05 F0 5C FF 04 46 00 20 01 F0 70 F9 01 F0 AC F9 ... +T1E08 004:040.988 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:043.242 - 2.552ms returns 0x184 +T1E08 004:043.366 JLINK_HasError() +T1E08 004:043.439 JLINK_WriteReg(R0, 0x08009C00) +T1E08 004:043.507 - 0.067ms returns 0 +T1E08 004:043.576 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:043.648 - 0.071ms returns 0 +T1E08 004:043.788 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:043.874 - 0.086ms returns 0 +T1E08 004:043.952 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:044.026 - 0.073ms returns 0 +T1E08 004:044.183 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:044.263 - 0.080ms returns 0 +T1E08 004:044.340 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:044.414 - 0.073ms returns 0 +T1E08 004:044.491 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:044.563 - 0.072ms returns 0 +T1E08 004:044.642 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:044.726 - 0.083ms returns 0 +T1E08 004:044.804 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:044.865 - 0.061ms returns 0 +T1E08 004:044.966 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:045.022 - 0.055ms returns 0 +T1E08 004:045.187 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:045.244 - 0.057ms returns 0 +T1E08 004:045.308 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:045.362 - 0.054ms returns 0 +T1E08 004:045.420 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:045.472 - 0.053ms returns 0 +T1E08 004:045.530 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:045.584 - 0.053ms returns 0 +T1E08 004:045.641 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:045.695 - 0.053ms returns 0 +T1E08 004:045.752 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:045.806 - 0.053ms returns 0 +T1E08 004:045.863 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:045.916 - 0.053ms returns 0 +T1E08 004:045.974 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:046.027 - 0.053ms returns 0 +T1E08 004:046.084 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:046.148 - 0.064ms returns 0 +T1E08 004:046.206 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:046.259 - 0.053ms returns 0 +T1E08 004:046.317 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:046.380 - 0.062ms returns 0x00000035 +T1E08 004:046.437 JLINK_Go() +T1E08 004:046.502 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:050.084 - 3.645ms +T1E08 004:050.211 JLINK_IsHalted() +T1E08 004:051.018 - 0.805ms returns FALSE +T1E08 004:051.155 JLINK_HasError() +T1E08 004:053.107 JLINK_IsHalted() +T1E08 004:054.009 - 0.901ms returns FALSE +T1E08 004:054.110 JLINK_HasError() +T1E08 004:055.385 JLINK_IsHalted() +T1E08 004:058.449 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:059.379 - 3.993ms returns TRUE +T1E08 004:059.479 JLINK_ReadReg(R15 (PC)) +T1E08 004:059.555 - 0.076ms returns 0x20000000 +T1E08 004:059.630 JLINK_ClrBPEx(BPHandle = 0x00000035) +T1E08 004:059.704 - 0.073ms returns 0x00 +T1E08 004:059.787 JLINK_ReadReg(R0) +T1E08 004:059.860 - 0.073ms returns 0x00000000 +T1E08 004:060.914 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:060.993 Data: 14 21 00 22 01 F0 A6 F9 A0 63 02 20 20 21 00 22 ... +T1E08 004:061.082 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:064.095 - 3.179ms returns 0x27C +T1E08 004:064.214 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:064.280 Data: 32 46 F9 F7 1D F8 28 46 F9 F7 72 F9 30 46 00 F0 ... +T1E08 004:064.390 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:066.968 - 2.753ms returns 0x184 +T1E08 004:067.066 JLINK_HasError() +T1E08 004:067.124 JLINK_WriteReg(R0, 0x0800A000) +T1E08 004:067.182 - 0.057ms returns 0 +T1E08 004:067.237 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:067.291 - 0.053ms returns 0 +T1E08 004:067.346 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:067.402 - 0.056ms returns 0 +T1E08 004:067.458 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:067.512 - 0.054ms returns 0 +T1E08 004:067.569 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:067.625 - 0.056ms returns 0 +T1E08 004:067.684 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:067.738 - 0.054ms returns 0 +T1E08 004:067.793 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:067.854 - 0.061ms returns 0 +T1E08 004:067.910 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:067.966 - 0.056ms returns 0 +T1E08 004:068.073 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:068.128 - 0.054ms returns 0 +T1E08 004:068.182 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:068.236 - 0.054ms returns 0 +T1E08 004:068.291 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:068.344 - 0.053ms returns 0 +T1E08 004:068.399 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:068.452 - 0.054ms returns 0 +T1E08 004:068.507 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:068.560 - 0.053ms returns 0 +T1E08 004:068.615 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:068.669 - 0.054ms returns 0 +T1E08 004:068.735 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:068.788 - 0.053ms returns 0 +T1E08 004:068.845 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:068.914 - 0.069ms returns 0 +T1E08 004:068.999 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:069.059 - 0.060ms returns 0 +T1E08 004:069.120 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:069.174 - 0.054ms returns 0 +T1E08 004:069.229 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:069.282 - 0.053ms returns 0 +T1E08 004:069.337 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:069.401 - 0.064ms returns 0 +T1E08 004:069.458 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:069.514 - 0.056ms returns 0x00000036 +T1E08 004:069.570 JLINK_Go() +T1E08 004:069.636 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:073.634 - 4.063ms +T1E08 004:073.824 JLINK_IsHalted() +T1E08 004:075.360 - 1.535ms returns FALSE +T1E08 004:075.470 JLINK_HasError() +T1E08 004:080.228 JLINK_IsHalted() +T1E08 004:083.632 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:085.347 - 5.117ms returns TRUE +T1E08 004:085.583 JLINK_ReadReg(R15 (PC)) +T1E08 004:085.710 - 0.126ms returns 0x20000000 +T1E08 004:085.808 JLINK_ClrBPEx(BPHandle = 0x00000036) +T1E08 004:085.890 - 0.081ms returns 0x00 +T1E08 004:085.975 JLINK_ReadReg(R0) +T1E08 004:086.061 - 0.086ms returns 0x00000000 +T1E08 004:087.382 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:087.496 Data: 9F ED 27 0B 53 EC 10 2B 05 F0 00 FB 05 F0 94 FC ... +T1E08 004:087.596 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:090.534 - 3.151ms returns 0x27C +T1E08 004:090.735 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:090.848 Data: 21 F0 40 01 42 E8 05 13 00 2B F5 D1 20 21 80 F8 ... +T1E08 004:091.036 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:093.467 - 2.732ms returns 0x184 +T1E08 004:093.582 JLINK_HasError() +T1E08 004:093.650 JLINK_WriteReg(R0, 0x0800A400) +T1E08 004:093.715 - 0.065ms returns 0 +T1E08 004:093.777 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:093.838 - 0.060ms returns 0 +T1E08 004:093.900 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:093.961 - 0.060ms returns 0 +T1E08 004:094.064 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:094.198 - 0.134ms returns 0 +T1E08 004:094.309 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:094.418 - 0.108ms returns 0 +T1E08 004:094.529 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:094.638 - 0.109ms returns 0 +T1E08 004:094.749 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:094.896 - 0.146ms returns 0 +T1E08 004:095.048 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:095.268 - 0.220ms returns 0 +T1E08 004:095.390 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:095.498 - 0.108ms returns 0 +T1E08 004:095.574 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:095.642 - 0.068ms returns 0 +T1E08 004:095.710 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:095.795 - 0.085ms returns 0 +T1E08 004:095.868 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:095.937 - 0.069ms returns 0 +T1E08 004:096.011 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:096.070 - 0.059ms returns 0 +T1E08 004:096.128 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:096.182 - 0.055ms returns 0 +T1E08 004:096.237 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:096.300 - 0.063ms returns 0 +T1E08 004:096.356 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:096.409 - 0.054ms returns 0 +T1E08 004:096.464 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:096.518 - 0.054ms returns 0 +T1E08 004:096.576 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:096.630 - 0.053ms returns 0 +T1E08 004:096.685 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:096.738 - 0.053ms returns 0 +T1E08 004:096.792 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:096.845 - 0.053ms returns 0 +T1E08 004:096.901 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:096.957 - 0.056ms returns 0x00000037 +T1E08 004:097.012 JLINK_Go() +T1E08 004:097.087 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:100.824 - 3.810ms +T1E08 004:100.938 JLINK_IsHalted() +T1E08 004:101.747 - 0.808ms returns FALSE +T1E08 004:101.813 JLINK_HasError() +T1E08 004:103.710 JLINK_IsHalted() +T1E08 004:104.724 - 1.013ms returns FALSE +T1E08 004:104.820 JLINK_HasError() +T1E08 004:106.684 JLINK_IsHalted() +T1E08 004:109.695 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:110.876 - 4.191ms returns TRUE +T1E08 004:111.011 JLINK_ReadReg(R15 (PC)) +T1E08 004:111.098 - 0.087ms returns 0x20000000 +T1E08 004:111.176 JLINK_ClrBPEx(BPHandle = 0x00000037) +T1E08 004:111.239 - 0.062ms returns 0x00 +T1E08 004:111.302 JLINK_ReadReg(R0) +T1E08 004:111.362 - 0.060ms returns 0x00000000 +T1E08 004:112.348 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:112.432 Data: 05 20 70 47 80 B5 82 B0 90 F8 42 10 22 29 1E D1 ... +T1E08 004:112.523 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:115.536 - 3.186ms returns 0x27C +T1E08 004:115.727 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:115.843 Data: 02 2B 6F F3 5F 22 5A 60 01 62 C1 8C 01 39 0A 04 ... +T1E08 004:116.023 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:118.312 - 2.583ms returns 0x184 +T1E08 004:118.508 JLINK_HasError() +T1E08 004:118.632 JLINK_WriteReg(R0, 0x0800A800) +T1E08 004:118.754 - 0.121ms returns 0 +T1E08 004:118.876 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:118.993 - 0.117ms returns 0 +T1E08 004:119.114 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:119.227 - 0.114ms returns 0 +T1E08 004:119.281 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:119.334 - 0.052ms returns 0 +T1E08 004:119.400 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:119.453 - 0.053ms returns 0 +T1E08 004:119.508 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:119.562 - 0.053ms returns 0 +T1E08 004:119.616 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:119.697 - 0.081ms returns 0 +T1E08 004:119.771 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:119.826 - 0.054ms returns 0 +T1E08 004:119.880 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:119.933 - 0.053ms returns 0 +T1E08 004:119.988 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:120.050 - 0.062ms returns 0 +T1E08 004:120.104 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:120.158 - 0.053ms returns 0 +T1E08 004:120.212 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:120.265 - 0.053ms returns 0 +T1E08 004:120.320 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:120.373 - 0.053ms returns 0 +T1E08 004:120.427 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:120.486 - 0.059ms returns 0 +T1E08 004:120.541 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:120.594 - 0.053ms returns 0 +T1E08 004:120.648 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:120.702 - 0.053ms returns 0 +T1E08 004:120.756 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:120.809 - 0.053ms returns 0 +T1E08 004:120.863 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:120.916 - 0.053ms returns 0 +T1E08 004:120.970 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:121.023 - 0.053ms returns 0 +T1E08 004:121.077 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:121.130 - 0.053ms returns 0 +T1E08 004:121.185 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:121.240 - 0.055ms returns 0x00000038 +T1E08 004:121.294 JLINK_Go() +T1E08 004:121.360 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:125.096 - 3.801ms +T1E08 004:125.204 JLINK_IsHalted() +T1E08 004:126.058 - 0.851ms returns FALSE +T1E08 004:126.262 JLINK_HasError() +T1E08 004:127.942 JLINK_IsHalted() +T1E08 004:128.903 - 0.960ms returns FALSE +T1E08 004:129.059 JLINK_HasError() +T1E08 004:130.510 JLINK_IsHalted() +T1E08 004:133.711 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:134.790 - 4.280ms returns TRUE +T1E08 004:134.908 JLINK_ReadReg(R15 (PC)) +T1E08 004:134.985 - 0.077ms returns 0x20000000 +T1E08 004:135.060 JLINK_ClrBPEx(BPHandle = 0x00000038) +T1E08 004:135.133 - 0.073ms returns 0x00 +T1E08 004:135.216 JLINK_ReadReg(R0) +T1E08 004:135.289 - 0.072ms returns 0x00000000 +T1E08 004:136.217 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:136.299 Data: 0F 46 02 2A 05 46 27 D0 01 2A 2C D0 92 BB 0F B3 ... +T1E08 004:136.483 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:139.366 - 3.148ms returns 0x27C +T1E08 004:139.459 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:139.516 Data: 9C 60 01 F1 A4 02 01 21 B0 EE 48 0A FE F7 5E F9 ... +T1E08 004:139.603 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:141.893 - 2.433ms returns 0x184 +T1E08 004:142.007 JLINK_HasError() +T1E08 004:142.072 JLINK_WriteReg(R0, 0x0800AC00) +T1E08 004:142.135 - 0.062ms returns 0 +T1E08 004:142.190 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:142.243 - 0.053ms returns 0 +T1E08 004:142.298 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:142.351 - 0.053ms returns 0 +T1E08 004:142.406 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:142.459 - 0.053ms returns 0 +T1E08 004:142.514 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:142.568 - 0.053ms returns 0 +T1E08 004:142.622 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:142.675 - 0.053ms returns 0 +T1E08 004:142.729 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:142.783 - 0.053ms returns 0 +T1E08 004:142.837 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:142.890 - 0.053ms returns 0 +T1E08 004:142.948 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:143.010 - 0.061ms returns 0 +T1E08 004:143.065 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:143.118 - 0.053ms returns 0 +T1E08 004:143.172 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:143.226 - 0.053ms returns 0 +T1E08 004:143.280 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:143.333 - 0.053ms returns 0 +T1E08 004:143.387 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:143.440 - 0.053ms returns 0 +T1E08 004:143.494 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:143.548 - 0.053ms returns 0 +T1E08 004:143.618 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:143.672 - 0.053ms returns 0 +T1E08 004:143.726 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:143.780 - 0.053ms returns 0 +T1E08 004:143.834 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:143.888 - 0.054ms returns 0 +T1E08 004:143.951 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:144.012 - 0.060ms returns 0 +T1E08 004:144.067 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:144.120 - 0.053ms returns 0 +T1E08 004:144.176 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:144.229 - 0.053ms returns 0 +T1E08 004:144.284 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:144.338 - 0.054ms returns 0x00000039 +T1E08 004:144.392 JLINK_Go() +T1E08 004:144.455 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:148.690 - 4.296ms +T1E08 004:148.803 JLINK_IsHalted() +T1E08 004:149.638 - 0.834ms returns FALSE +T1E08 004:149.748 JLINK_HasError() +T1E08 004:151.750 JLINK_IsHalted() +T1E08 004:152.718 - 0.967ms returns FALSE +T1E08 004:152.824 JLINK_HasError() +T1E08 004:154.150 JLINK_IsHalted() +T1E08 004:157.096 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:158.123 - 3.972ms returns TRUE +T1E08 004:158.232 JLINK_ReadReg(R15 (PC)) +T1E08 004:158.302 - 0.069ms returns 0x20000000 +T1E08 004:158.368 JLINK_ClrBPEx(BPHandle = 0x00000039) +T1E08 004:158.433 - 0.064ms returns 0x00 +T1E08 004:158.509 JLINK_ReadReg(R0) +T1E08 004:158.574 - 0.065ms returns 0x00000000 +T1E08 004:159.349 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:159.426 Data: 01 B0 F0 BD 4F F0 FF 31 01 FA 00 F0 C0 43 02 EE ... +T1E08 004:159.516 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:162.479 - 3.130ms returns 0x27C +T1E08 004:162.584 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:162.647 Data: 02 20 20 60 01 F0 6A FB 00 20 10 BD 10 B5 EF F3 ... +T1E08 004:162.744 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:164.825 - 2.240ms returns 0x184 +T1E08 004:165.000 JLINK_HasError() +T1E08 004:165.119 JLINK_WriteReg(R0, 0x0800B000) +T1E08 004:165.237 - 0.117ms returns 0 +T1E08 004:165.352 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:165.464 - 0.112ms returns 0 +T1E08 004:165.579 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:165.691 - 0.112ms returns 0 +T1E08 004:165.804 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:165.916 - 0.111ms returns 0 +T1E08 004:166.030 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:166.120 - 0.090ms returns 0 +T1E08 004:166.174 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:166.235 - 0.061ms returns 0 +T1E08 004:166.289 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:166.343 - 0.053ms returns 0 +T1E08 004:166.396 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:166.449 - 0.052ms returns 0 +T1E08 004:166.503 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:166.565 - 0.062ms returns 0 +T1E08 004:166.619 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:166.672 - 0.052ms returns 0 +T1E08 004:166.726 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:166.784 - 0.058ms returns 0 +T1E08 004:166.838 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:166.892 - 0.053ms returns 0 +T1E08 004:166.949 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:167.002 - 0.053ms returns 0 +T1E08 004:167.056 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:167.110 - 0.053ms returns 0 +T1E08 004:167.164 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:167.217 - 0.053ms returns 0 +T1E08 004:167.271 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:167.324 - 0.053ms returns 0 +T1E08 004:167.378 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:167.431 - 0.053ms returns 0 +T1E08 004:167.485 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:167.538 - 0.053ms returns 0 +T1E08 004:167.593 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:167.647 - 0.053ms returns 0 +T1E08 004:167.700 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:167.754 - 0.053ms returns 0 +T1E08 004:167.808 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:167.862 - 0.054ms returns 0x0000003A +T1E08 004:167.916 JLINK_Go() +T1E08 004:167.978 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:171.587 - 3.670ms +T1E08 004:171.694 JLINK_IsHalted() +T1E08 004:172.644 - 0.949ms returns FALSE +T1E08 004:172.836 JLINK_HasError() +T1E08 004:176.636 JLINK_IsHalted() +T1E08 004:179.965 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:180.782 - 4.145ms returns TRUE +T1E08 004:180.882 JLINK_ReadReg(R15 (PC)) +T1E08 004:180.961 - 0.079ms returns 0x20000000 +T1E08 004:181.039 JLINK_ClrBPEx(BPHandle = 0x0000003A) +T1E08 004:181.123 - 0.083ms returns 0x00 +T1E08 004:181.202 JLINK_ReadReg(R0) +T1E08 004:181.276 - 0.073ms returns 0x00000000 +T1E08 004:182.133 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:182.212 Data: 81 F5 EF F3 05 82 5B 09 6D 09 00 2A 43 EA 05 02 ... +T1E08 004:182.302 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:185.314 - 3.180ms returns 0x27C +T1E08 004:185.506 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:185.622 Data: 58 BF AB 46 02 F0 00 F9 00 90 6F F0 01 08 04 F0 ... +T1E08 004:185.802 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:188.121 - 2.615ms returns 0x184 +T1E08 004:188.228 JLINK_HasError() +T1E08 004:188.292 JLINK_WriteReg(R0, 0x0800B400) +T1E08 004:188.356 - 0.064ms returns 0 +T1E08 004:188.418 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:188.489 - 0.070ms returns 0 +T1E08 004:188.550 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:188.611 - 0.060ms returns 0 +T1E08 004:188.672 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:188.732 - 0.060ms returns 0 +T1E08 004:188.794 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:188.854 - 0.060ms returns 0 +T1E08 004:188.917 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:188.970 - 0.053ms returns 0 +T1E08 004:189.025 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:189.088 - 0.063ms returns 0 +T1E08 004:189.146 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:189.200 - 0.053ms returns 0 +T1E08 004:189.254 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:189.308 - 0.053ms returns 0 +T1E08 004:189.362 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:189.429 - 0.067ms returns 0 +T1E08 004:189.484 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:189.537 - 0.053ms returns 0 +T1E08 004:189.592 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:189.645 - 0.053ms returns 0 +T1E08 004:189.699 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:189.752 - 0.053ms returns 0 +T1E08 004:189.807 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:189.860 - 0.054ms returns 0 +T1E08 004:189.916 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:189.971 - 0.054ms returns 0 +T1E08 004:190.025 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:190.078 - 0.053ms returns 0 +T1E08 004:190.132 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:190.186 - 0.053ms returns 0 +T1E08 004:190.240 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:190.293 - 0.053ms returns 0 +T1E08 004:190.348 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:190.401 - 0.053ms returns 0 +T1E08 004:190.460 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:190.514 - 0.053ms returns 0 +T1E08 004:190.570 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:190.625 - 0.055ms returns 0x0000003B +T1E08 004:190.680 JLINK_Go() +T1E08 004:190.743 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:194.463 - 3.782ms +T1E08 004:194.571 JLINK_IsHalted() +T1E08 004:195.415 - 0.843ms returns FALSE +T1E08 004:195.508 JLINK_HasError() +T1E08 004:198.914 JLINK_IsHalted() +T1E08 004:202.644 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:203.595 - 4.680ms returns TRUE +T1E08 004:203.725 JLINK_ReadReg(R15 (PC)) +T1E08 004:203.824 - 0.099ms returns 0x20000000 +T1E08 004:203.894 JLINK_ClrBPEx(BPHandle = 0x0000003B) +T1E08 004:203.972 - 0.078ms returns 0x00 +T1E08 004:204.068 JLINK_ReadReg(R0) +T1E08 004:204.149 - 0.080ms returns 0x00000000 +T1E08 004:205.314 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:205.410 Data: F0 B5 81 B0 0D 46 4E F2 F4 61 4D F2 F8 16 C2 F2 ... +T1E08 004:205.515 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:208.547 - 3.231ms returns 0x27C +T1E08 004:208.683 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:208.747 Data: 10 FE 21 6C D4 E9 01 02 00 25 08 44 60 60 90 42 ... +T1E08 004:208.849 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:211.006 - 2.322ms returns 0x184 +T1E08 004:211.185 JLINK_HasError() +T1E08 004:211.274 JLINK_WriteReg(R0, 0x0800B800) +T1E08 004:211.357 - 0.083ms returns 0 +T1E08 004:211.481 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:211.557 - 0.076ms returns 0 +T1E08 004:211.638 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:211.709 - 0.071ms returns 0 +T1E08 004:211.780 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:211.849 - 0.068ms returns 0 +T1E08 004:211.921 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:211.991 - 0.069ms returns 0 +T1E08 004:212.064 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:212.129 - 0.065ms returns 0 +T1E08 004:212.201 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:212.271 - 0.070ms returns 0 +T1E08 004:212.345 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:212.415 - 0.069ms returns 0 +T1E08 004:212.490 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:212.571 - 0.080ms returns 0 +T1E08 004:212.656 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:212.730 - 0.073ms returns 0 +T1E08 004:212.810 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:212.885 - 0.074ms returns 0 +T1E08 004:212.969 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:213.040 - 0.071ms returns 0 +T1E08 004:213.120 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:213.190 - 0.070ms returns 0 +T1E08 004:213.265 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:213.338 - 0.072ms returns 0 +T1E08 004:213.432 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:213.503 - 0.071ms returns 0 +T1E08 004:213.585 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:213.658 - 0.073ms returns 0 +T1E08 004:213.735 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:213.809 - 0.073ms returns 0 +T1E08 004:213.886 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:213.955 - 0.068ms returns 0 +T1E08 004:214.687 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:214.767 - 0.080ms returns 0 +T1E08 004:214.826 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:214.881 - 0.055ms returns 0 +T1E08 004:214.941 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:214.999 - 0.057ms returns 0x0000003C +T1E08 004:215.058 JLINK_Go() +T1E08 004:215.131 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:218.937 - 3.877ms +T1E08 004:219.107 JLINK_IsHalted() +T1E08 004:219.965 - 0.858ms returns FALSE +T1E08 004:220.126 JLINK_HasError() +T1E08 004:225.721 JLINK_IsHalted() +T1E08 004:228.795 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:229.681 - 3.959ms returns TRUE +T1E08 004:229.809 JLINK_ReadReg(R15 (PC)) +T1E08 004:229.903 - 0.094ms returns 0x20000000 +T1E08 004:229.994 JLINK_ClrBPEx(BPHandle = 0x0000003C) +T1E08 004:230.098 - 0.104ms returns 0x00 +T1E08 004:230.191 JLINK_ReadReg(R0) +T1E08 004:230.283 - 0.092ms returns 0x00000000 +T1E08 004:231.606 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:231.717 Data: A5 22 98 46 F4 F7 C2 FD 20 6B 00 EB 86 00 A0 F1 ... +T1E08 004:231.839 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:234.865 - 3.258ms returns 0x27C +T1E08 004:234.998 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:235.083 Data: 00 28 6A D0 01 AC 02 AD 0B E0 00 F0 FE 00 86 F8 ... +T1E08 004:235.213 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:237.484 - 2.485ms returns 0x184 +T1E08 004:237.586 JLINK_HasError() +T1E08 004:237.644 JLINK_WriteReg(R0, 0x0800BC00) +T1E08 004:237.702 - 0.057ms returns 0 +T1E08 004:237.757 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:237.811 - 0.053ms returns 0 +T1E08 004:237.866 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:237.921 - 0.054ms returns 0 +T1E08 004:237.998 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:238.057 - 0.059ms returns 0 +T1E08 004:238.123 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:238.189 - 0.065ms returns 0 +T1E08 004:238.254 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:238.317 - 0.063ms returns 0 +T1E08 004:238.383 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:238.447 - 0.064ms returns 0 +T1E08 004:238.513 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:238.577 - 0.064ms returns 0 +T1E08 004:238.644 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:238.710 - 0.066ms returns 0 +T1E08 004:238.776 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:238.841 - 0.065ms returns 0 +T1E08 004:238.907 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:238.973 - 0.065ms returns 0 +T1E08 004:239.044 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:239.110 - 0.065ms returns 0 +T1E08 004:239.177 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:239.249 - 0.071ms returns 0 +T1E08 004:239.304 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:239.359 - 0.055ms returns 0 +T1E08 004:239.414 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:239.468 - 0.054ms returns 0 +T1E08 004:239.524 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:239.578 - 0.054ms returns 0 +T1E08 004:239.633 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:239.687 - 0.054ms returns 0 +T1E08 004:239.742 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:239.795 - 0.053ms returns 0 +T1E08 004:239.851 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:239.905 - 0.053ms returns 0 +T1E08 004:239.959 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:240.017 - 0.058ms returns 0 +T1E08 004:240.073 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:240.129 - 0.056ms returns 0x0000003D +T1E08 004:240.184 JLINK_Go() +T1E08 004:240.249 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:244.722 - 4.538ms +T1E08 004:244.848 JLINK_IsHalted() +T1E08 004:245.989 - 1.139ms returns FALSE +T1E08 004:246.099 JLINK_HasError() +T1E08 004:247.937 JLINK_IsHalted() +T1E08 004:248.761 - 0.823ms returns FALSE +T1E08 004:248.851 JLINK_HasError() +T1E08 004:250.245 JLINK_IsHalted() +T1E08 004:253.644 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:254.648 - 4.403ms returns TRUE +T1E08 004:254.740 JLINK_ReadReg(R15 (PC)) +T1E08 004:254.797 - 0.057ms returns 0x20000000 +T1E08 004:254.853 JLINK_ClrBPEx(BPHandle = 0x0000003D) +T1E08 004:254.907 - 0.054ms returns 0x00 +T1E08 004:254.962 JLINK_ReadReg(R0) +T1E08 004:255.024 - 0.061ms returns 0x00000000 +T1E08 004:255.833 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:255.910 Data: 02 B0 70 BD 40 F6 54 00 C2 F2 00 00 01 68 09 68 ... +T1E08 004:255.999 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:259.133 - 3.298ms returns 0x27C +T1E08 004:259.321 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:259.433 Data: 9D 42 AE D0 04 68 2B 68 52 1A 11 2A 03 60 10 D3 ... +T1E08 004:259.607 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:261.886 - 2.564ms returns 0x184 +T1E08 004:261.991 JLINK_HasError() +T1E08 004:262.051 JLINK_WriteReg(R0, 0x0800C000) +T1E08 004:262.121 - 0.071ms returns 0 +T1E08 004:262.188 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:262.254 - 0.066ms returns 0 +T1E08 004:262.319 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:262.384 - 0.064ms returns 0 +T1E08 004:262.450 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:262.548 - 0.098ms returns 0 +T1E08 004:262.666 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:262.734 - 0.068ms returns 0 +T1E08 004:262.799 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:262.863 - 0.063ms returns 0 +T1E08 004:262.939 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:263.004 - 0.064ms returns 0 +T1E08 004:263.091 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:263.157 - 0.065ms returns 0 +T1E08 004:263.222 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:263.277 - 0.055ms returns 0 +T1E08 004:263.341 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:263.395 - 0.055ms returns 0 +T1E08 004:263.450 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:263.503 - 0.053ms returns 0 +T1E08 004:263.566 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:263.628 - 0.061ms returns 0 +T1E08 004:263.682 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:263.736 - 0.053ms returns 0 +T1E08 004:263.791 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:263.846 - 0.055ms returns 0 +T1E08 004:263.901 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:263.954 - 0.053ms returns 0 +T1E08 004:264.021 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:264.091 - 0.069ms returns 0 +T1E08 004:264.156 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:264.223 - 0.067ms returns 0 +T1E08 004:264.284 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:264.337 - 0.053ms returns 0 +T1E08 004:264.392 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:264.461 - 0.069ms returns 0 +T1E08 004:264.516 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:264.570 - 0.053ms returns 0 +T1E08 004:264.625 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:264.681 - 0.055ms returns 0x0000003E +T1E08 004:264.735 JLINK_Go() +T1E08 004:264.804 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:269.287 - 4.551ms +T1E08 004:269.420 JLINK_IsHalted() +T1E08 004:270.276 - 0.856ms returns FALSE +T1E08 004:270.365 JLINK_HasError() +T1E08 004:271.971 JLINK_IsHalted() +T1E08 004:273.258 - 1.286ms returns FALSE +T1E08 004:273.379 JLINK_HasError() +T1E08 004:275.889 JLINK_IsHalted() +T1E08 004:278.883 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:279.782 - 3.892ms returns TRUE +T1E08 004:279.905 JLINK_ReadReg(R15 (PC)) +T1E08 004:279.978 - 0.072ms returns 0x20000000 +T1E08 004:280.051 JLINK_ClrBPEx(BPHandle = 0x0000003E) +T1E08 004:280.107 - 0.056ms returns 0x00 +T1E08 004:280.163 JLINK_ReadReg(R0) +T1E08 004:280.218 - 0.055ms returns 0x00000000 +T1E08 004:281.199 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:281.282 Data: DE F8 04 20 08 61 4A 60 91 60 C1 F8 08 E0 CE F8 ... +T1E08 004:281.376 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:284.346 - 3.146ms returns 0x27C +T1E08 004:284.459 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:284.518 Data: C1 F9 20 46 00 21 FF F7 BD F8 01 F0 DB FA 00 28 ... +T1E08 004:284.609 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:286.702 - 2.242ms returns 0x184 +T1E08 004:286.795 JLINK_HasError() +T1E08 004:286.853 JLINK_WriteReg(R0, 0x0800C400) +T1E08 004:286.911 - 0.057ms returns 0 +T1E08 004:286.969 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:287.030 - 0.061ms returns 0 +T1E08 004:287.086 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:287.140 - 0.053ms returns 0 +T1E08 004:287.195 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:287.248 - 0.053ms returns 0 +T1E08 004:287.302 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:287.355 - 0.053ms returns 0 +T1E08 004:287.409 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:287.463 - 0.053ms returns 0 +T1E08 004:287.517 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:287.571 - 0.053ms returns 0 +T1E08 004:287.625 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:287.678 - 0.053ms returns 0 +T1E08 004:287.732 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:287.785 - 0.053ms returns 0 +T1E08 004:287.839 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:287.893 - 0.053ms returns 0 +T1E08 004:287.947 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:288.007 - 0.059ms returns 0 +T1E08 004:288.061 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:288.115 - 0.054ms returns 0 +T1E08 004:288.169 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:288.223 - 0.053ms returns 0 +T1E08 004:288.277 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:288.331 - 0.054ms returns 0 +T1E08 004:288.385 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:288.438 - 0.053ms returns 0 +T1E08 004:288.493 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:288.546 - 0.053ms returns 0 +T1E08 004:288.600 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:288.653 - 0.053ms returns 0 +T1E08 004:288.707 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:288.760 - 0.053ms returns 0 +T1E08 004:288.814 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:288.867 - 0.052ms returns 0 +T1E08 004:288.921 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:288.974 - 0.052ms returns 0 +T1E08 004:289.034 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:289.089 - 0.055ms returns 0x0000003F +T1E08 004:289.144 JLINK_Go() +T1E08 004:289.208 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:292.961 - 3.816ms +T1E08 004:293.069 JLINK_IsHalted() +T1E08 004:294.033 - 0.963ms returns FALSE +T1E08 004:294.139 JLINK_HasError() +T1E08 004:298.931 JLINK_IsHalted() +T1E08 004:302.132 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:303.145 - 4.214ms returns TRUE +T1E08 004:303.241 JLINK_ReadReg(R15 (PC)) +T1E08 004:303.307 - 0.065ms returns 0x20000000 +T1E08 004:303.369 JLINK_ClrBPEx(BPHandle = 0x0000003F) +T1E08 004:303.432 - 0.062ms returns 0x00 +T1E08 004:303.494 JLINK_ReadReg(R0) +T1E08 004:303.569 - 0.075ms returns 0x00000000 +T1E08 004:304.383 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:304.461 Data: 00 00 4F F0 80 51 01 60 BF F3 4F 8F BF F3 6F 8F ... +T1E08 004:304.559 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:307.531 - 3.146ms returns 0x27C +T1E08 004:307.728 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:307.847 Data: B0 F1 A5 3F 04 D0 28 68 29 68 34 31 FF F7 98 FC ... +T1E08 004:308.049 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:310.604 - 2.876ms returns 0x184 +T1E08 004:310.796 JLINK_HasError() +T1E08 004:310.920 JLINK_WriteReg(R0, 0x0800C800) +T1E08 004:311.039 - 0.119ms returns 0 +T1E08 004:311.155 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:311.267 - 0.112ms returns 0 +T1E08 004:311.381 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:311.494 - 0.112ms returns 0 +T1E08 004:311.608 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:311.721 - 0.112ms returns 0 +T1E08 004:311.835 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:311.948 - 0.113ms returns 0 +T1E08 004:312.062 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:312.175 - 0.113ms returns 0 +T1E08 004:312.290 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:312.429 - 0.138ms returns 0 +T1E08 004:312.531 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:312.585 - 0.053ms returns 0 +T1E08 004:312.639 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:312.693 - 0.053ms returns 0 +T1E08 004:312.747 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:312.800 - 0.053ms returns 0 +T1E08 004:312.854 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:312.958 - 0.103ms returns 0 +T1E08 004:313.035 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:313.091 - 0.056ms returns 0 +T1E08 004:313.146 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:313.199 - 0.052ms returns 0 +T1E08 004:313.253 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:313.307 - 0.053ms returns 0 +T1E08 004:313.361 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:313.414 - 0.053ms returns 0 +T1E08 004:313.468 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:313.521 - 0.053ms returns 0 +T1E08 004:313.575 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:313.629 - 0.053ms returns 0 +T1E08 004:313.684 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:313.737 - 0.053ms returns 0 +T1E08 004:313.791 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:313.844 - 0.053ms returns 0 +T1E08 004:313.898 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:313.951 - 0.053ms returns 0 +T1E08 004:314.006 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:314.061 - 0.054ms returns 0x00000040 +T1E08 004:314.116 JLINK_Go() +T1E08 004:314.179 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:318.165 - 4.048ms +T1E08 004:318.357 JLINK_IsHalted() +T1E08 004:319.813 - 1.454ms returns FALSE +T1E08 004:319.941 JLINK_HasError() +T1E08 004:323.478 JLINK_IsHalted() +T1E08 004:326.914 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:327.968 - 4.489ms returns TRUE +T1E08 004:328.118 JLINK_ReadReg(R15 (PC)) +T1E08 004:328.184 - 0.065ms returns 0x20000000 +T1E08 004:328.456 JLINK_ClrBPEx(BPHandle = 0x00000040) +T1E08 004:328.583 - 0.126ms returns 0x00 +T1E08 004:328.695 JLINK_ReadReg(R0) +T1E08 004:328.778 - 0.082ms returns 0x00000000 +T1E08 004:330.068 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:330.152 Data: BF F3 4F 8F FE E7 00 00 80 B5 4F F0 50 00 80 F3 ... +T1E08 004:330.243 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:333.205 - 3.136ms returns 0x27C +T1E08 004:333.401 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:333.513 Data: E7 FA 94 F8 44 00 FF 28 08 BF 84 F8 44 B0 94 F8 ... +T1E08 004:333.687 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:336.009 - 2.607ms returns 0x184 +T1E08 004:336.130 JLINK_HasError() +T1E08 004:336.195 JLINK_WriteReg(R0, 0x0800CC00) +T1E08 004:336.261 - 0.066ms returns 0 +T1E08 004:336.323 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:336.385 - 0.061ms returns 0 +T1E08 004:336.462 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:336.525 - 0.063ms returns 0 +T1E08 004:336.587 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:336.649 - 0.062ms returns 0 +T1E08 004:336.704 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:336.758 - 0.053ms returns 0 +T1E08 004:336.812 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:336.867 - 0.054ms returns 0 +T1E08 004:336.921 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:336.988 - 0.067ms returns 0 +T1E08 004:337.044 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:337.099 - 0.055ms returns 0 +T1E08 004:337.154 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:337.208 - 0.053ms returns 0 +T1E08 004:337.274 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:337.327 - 0.053ms returns 0 +T1E08 004:337.383 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:337.442 - 0.059ms returns 0 +T1E08 004:337.497 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:337.552 - 0.055ms returns 0 +T1E08 004:337.606 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:337.661 - 0.054ms returns 0 +T1E08 004:337.717 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:337.771 - 0.055ms returns 0 +T1E08 004:337.827 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:337.880 - 0.053ms returns 0 +T1E08 004:337.935 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:337.994 - 0.059ms returns 0 +T1E08 004:338.049 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:338.104 - 0.055ms returns 0 +T1E08 004:338.161 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:338.216 - 0.055ms returns 0 +T1E08 004:338.270 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:338.323 - 0.053ms returns 0 +T1E08 004:338.378 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:338.433 - 0.054ms returns 0 +T1E08 004:338.489 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:338.544 - 0.055ms returns 0x00000041 +T1E08 004:338.599 JLINK_Go() +T1E08 004:338.665 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:342.853 - 4.252ms +T1E08 004:342.990 JLINK_IsHalted() +T1E08 004:344.054 - 1.064ms returns FALSE +T1E08 004:344.163 JLINK_HasError() +T1E08 004:345.428 JLINK_IsHalted() +T1E08 004:346.277 - 0.848ms returns FALSE +T1E08 004:346.364 JLINK_HasError() +T1E08 004:347.707 JLINK_IsHalted() +T1E08 004:351.121 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:352.091 - 4.383ms returns TRUE +T1E08 004:352.206 JLINK_ReadReg(R15 (PC)) +T1E08 004:352.284 - 0.077ms returns 0x20000000 +T1E08 004:352.366 JLINK_ClrBPEx(BPHandle = 0x00000041) +T1E08 004:352.440 - 0.072ms returns 0x00 +T1E08 004:352.514 JLINK_ReadReg(R0) +T1E08 004:352.586 - 0.071ms returns 0x00000000 +T1E08 004:353.569 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:353.645 Data: 01 20 1B E0 4F F0 50 00 80 F3 11 88 BF F3 6F 8F ... +T1E08 004:353.735 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:356.957 - 3.384ms returns 0x27C +T1E08 004:357.325 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:357.389 Data: BF F3 6F 8F BF F3 4F 8F FE E7 00 20 12 E0 55 F8 ... +T1E08 004:357.509 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:359.959 - 2.629ms returns 0x184 +T1E08 004:360.201 JLINK_HasError() +T1E08 004:360.264 JLINK_WriteReg(R0, 0x0800D000) +T1E08 004:360.353 - 0.089ms returns 0 +T1E08 004:360.425 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:360.505 - 0.079ms returns 0 +T1E08 004:360.564 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:360.619 - 0.054ms returns 0 +T1E08 004:360.673 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:360.731 - 0.057ms returns 0 +T1E08 004:360.786 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:360.840 - 0.053ms returns 0 +T1E08 004:360.898 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:360.952 - 0.053ms returns 0 +T1E08 004:361.017 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:361.091 - 0.074ms returns 0 +T1E08 004:361.187 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:361.298 - 0.112ms returns 0 +T1E08 004:361.375 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:361.442 - 0.067ms returns 0 +T1E08 004:361.520 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:361.575 - 0.055ms returns 0 +T1E08 004:361.630 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:361.684 - 0.054ms returns 0 +T1E08 004:361.744 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:361.797 - 0.053ms returns 0 +T1E08 004:361.855 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:361.909 - 0.053ms returns 0 +T1E08 004:361.965 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:362.020 - 0.054ms returns 0 +T1E08 004:362.082 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:362.136 - 0.054ms returns 0 +T1E08 004:362.194 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:362.247 - 0.053ms returns 0 +T1E08 004:362.310 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:362.364 - 0.053ms returns 0 +T1E08 004:362.421 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:362.475 - 0.053ms returns 0 +T1E08 004:362.532 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:362.585 - 0.053ms returns 0 +T1E08 004:362.656 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:362.709 - 0.054ms returns 0 +T1E08 004:362.769 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:362.825 - 0.057ms returns 0x00000042 +T1E08 004:362.884 JLINK_Go() +T1E08 004:362.957 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:366.591 - 3.706ms +T1E08 004:366.711 JLINK_IsHalted() +T1E08 004:367.530 - 0.819ms returns FALSE +T1E08 004:367.645 JLINK_HasError() +T1E08 004:369.581 JLINK_IsHalted() +T1E08 004:370.631 - 1.050ms returns FALSE +T1E08 004:370.725 JLINK_HasError() +T1E08 004:372.070 JLINK_IsHalted() +T1E08 004:375.372 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:376.363 - 4.291ms returns TRUE +T1E08 004:376.475 JLINK_ReadReg(R15 (PC)) +T1E08 004:376.552 - 0.077ms returns 0x20000000 +T1E08 004:376.627 JLINK_ClrBPEx(BPHandle = 0x00000042) +T1E08 004:376.700 - 0.073ms returns 0x00 +T1E08 004:376.783 JLINK_ReadReg(R0) +T1E08 004:376.858 - 0.074ms returns 0x00000000 +T1E08 004:377.941 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:378.018 Data: FF F7 24 F8 A0 68 00 F0 89 FB 81 46 FF F7 42 F8 ... +T1E08 004:378.110 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:381.195 - 3.254ms returns 0x27C +T1E08 004:381.381 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:381.492 Data: 4F F0 50 00 80 F3 11 88 BF F3 6F 8F BF F3 4F 8F ... +T1E08 004:381.664 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:383.837 - 2.456ms returns 0x184 +T1E08 004:383.945 JLINK_HasError() +T1E08 004:384.010 JLINK_WriteReg(R0, 0x0800D400) +T1E08 004:384.075 - 0.064ms returns 0 +T1E08 004:384.136 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:384.196 - 0.060ms returns 0 +T1E08 004:384.262 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:384.323 - 0.061ms returns 0 +T1E08 004:384.385 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:384.444 - 0.059ms returns 0 +T1E08 004:384.511 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:384.573 - 0.062ms returns 0 +T1E08 004:384.637 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:384.699 - 0.062ms returns 0 +T1E08 004:384.762 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:384.825 - 0.062ms returns 0 +T1E08 004:384.892 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:384.954 - 0.062ms returns 0 +T1E08 004:385.019 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:385.081 - 0.062ms returns 0 +T1E08 004:385.145 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:385.207 - 0.062ms returns 0 +T1E08 004:385.271 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:385.333 - 0.062ms returns 0 +T1E08 004:385.443 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:385.507 - 0.063ms returns 0 +T1E08 004:385.571 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:385.647 - 0.076ms returns 0 +T1E08 004:385.755 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:385.815 - 0.060ms returns 0 +T1E08 004:385.924 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:385.980 - 0.056ms returns 0 +T1E08 004:386.036 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:386.090 - 0.054ms returns 0 +T1E08 004:386.145 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:386.198 - 0.053ms returns 0 +T1E08 004:386.252 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:386.305 - 0.053ms returns 0 +T1E08 004:386.360 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:386.413 - 0.053ms returns 0 +T1E08 004:386.468 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:386.521 - 0.053ms returns 0 +T1E08 004:386.576 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:386.631 - 0.054ms returns 0x00000043 +T1E08 004:386.685 JLINK_Go() +T1E08 004:386.749 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:390.367 - 3.680ms +T1E08 004:390.543 JLINK_IsHalted() +T1E08 004:391.269 - 0.725ms returns FALSE +T1E08 004:391.353 JLINK_HasError() +T1E08 004:394.692 JLINK_IsHalted() +T1E08 004:397.860 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:398.980 - 4.288ms returns TRUE +T1E08 004:399.102 JLINK_ReadReg(R15 (PC)) +T1E08 004:399.181 - 0.079ms returns 0x20000000 +T1E08 004:399.255 JLINK_ClrBPEx(BPHandle = 0x00000043) +T1E08 004:399.337 - 0.081ms returns 0x00 +T1E08 004:399.413 JLINK_ReadReg(R0) +T1E08 004:399.485 - 0.072ms returns 0x00000000 +T1E08 004:400.341 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:400.427 Data: 90 42 88 BF 08 60 4D F2 08 21 00 EB 80 00 C2 F2 ... +T1E08 004:400.517 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:403.613 - 3.270ms returns 0x27C +T1E08 004:403.845 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:403.901 Data: 5C 00 FE F7 09 FD 28 46 BD E8 F0 81 B0 B5 80 B1 ... +T1E08 004:404.005 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:406.586 - 2.738ms returns 0x184 +T1E08 004:406.843 JLINK_HasError() +T1E08 004:406.913 JLINK_WriteReg(R0, 0x0800D800) +T1E08 004:406.993 - 0.080ms returns 0 +T1E08 004:407.055 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:407.116 - 0.060ms returns 0 +T1E08 004:407.178 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:407.238 - 0.060ms returns 0 +T1E08 004:407.299 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:407.358 - 0.059ms returns 0 +T1E08 004:407.413 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:407.474 - 0.061ms returns 0 +T1E08 004:407.528 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:407.581 - 0.053ms returns 0 +T1E08 004:407.635 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:407.688 - 0.053ms returns 0 +T1E08 004:407.742 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:407.819 - 0.077ms returns 0 +T1E08 004:407.873 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:407.931 - 0.058ms returns 0 +T1E08 004:407.985 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:408.039 - 0.053ms returns 0 +T1E08 004:408.094 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:408.147 - 0.053ms returns 0 +T1E08 004:408.201 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:408.254 - 0.053ms returns 0 +T1E08 004:408.309 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:408.361 - 0.053ms returns 0 +T1E08 004:408.416 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:408.470 - 0.054ms returns 0 +T1E08 004:408.525 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:408.577 - 0.053ms returns 0 +T1E08 004:408.633 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:408.685 - 0.053ms returns 0 +T1E08 004:408.740 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:408.798 - 0.058ms returns 0 +T1E08 004:408.854 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:408.908 - 0.053ms returns 0 +T1E08 004:408.962 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:409.015 - 0.053ms returns 0 +T1E08 004:409.069 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:409.123 - 0.053ms returns 0 +T1E08 004:409.178 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:409.234 - 0.056ms returns 0x00000044 +T1E08 004:409.289 JLINK_Go() +T1E08 004:409.360 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:414.088 - 4.797ms +T1E08 004:414.295 JLINK_IsHalted() +T1E08 004:415.185 - 0.889ms returns FALSE +T1E08 004:415.278 JLINK_HasError() +T1E08 004:423.676 JLINK_IsHalted() +T1E08 004:427.601 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:428.436 - 4.760ms returns TRUE +T1E08 004:428.531 JLINK_ReadReg(R15 (PC)) +T1E08 004:428.599 - 0.066ms returns 0x20000000 +T1E08 004:428.654 JLINK_ClrBPEx(BPHandle = 0x00000044) +T1E08 004:428.709 - 0.054ms returns 0x00 +T1E08 004:428.765 JLINK_ReadReg(R0) +T1E08 004:428.819 - 0.054ms returns 0x00000000 +T1E08 004:429.551 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:429.627 Data: 88 BF 08 60 4D F2 08 21 00 EB 80 00 C2 F2 01 01 ... +T1E08 004:429.719 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:432.701 - 3.148ms returns 0x27C +T1E08 004:432.895 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:433.010 Data: 13 0E 04 BF 12 02 0C F1 08 0C 13 0F 04 BF 12 01 ... +T1E08 004:433.190 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:436.081 - 3.184ms returns 0x184 +T1E08 004:436.454 JLINK_HasError() +T1E08 004:436.614 JLINK_WriteReg(R0, 0x0800DC00) +T1E08 004:436.786 - 0.172ms returns 0 +T1E08 004:436.935 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:437.087 - 0.151ms returns 0 +T1E08 004:437.244 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:437.313 - 0.069ms returns 0 +T1E08 004:437.379 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:437.445 - 0.066ms returns 0 +T1E08 004:437.513 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:437.578 - 0.065ms returns 0 +T1E08 004:437.647 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:437.745 - 0.097ms returns 0 +T1E08 004:437.829 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:437.905 - 0.075ms returns 0 +T1E08 004:437.974 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:438.041 - 0.067ms returns 0 +T1E08 004:438.109 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:438.181 - 0.072ms returns 0 +T1E08 004:438.252 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:438.324 - 0.071ms returns 0 +T1E08 004:438.395 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:438.463 - 0.068ms returns 0 +T1E08 004:438.547 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:438.618 - 0.071ms returns 0 +T1E08 004:438.686 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:438.741 - 0.055ms returns 0 +T1E08 004:438.797 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:438.853 - 0.055ms returns 0 +T1E08 004:438.907 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:438.960 - 0.053ms returns 0 +T1E08 004:439.015 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:439.069 - 0.054ms returns 0 +T1E08 004:439.123 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:439.177 - 0.053ms returns 0 +T1E08 004:439.231 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:439.285 - 0.053ms returns 0 +T1E08 004:439.339 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:439.393 - 0.053ms returns 0 +T1E08 004:439.447 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:439.501 - 0.053ms returns 0 +T1E08 004:439.557 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:439.614 - 0.058ms returns 0x00000045 +T1E08 004:439.669 JLINK_Go() +T1E08 004:439.751 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:443.858 - 4.187ms +T1E08 004:444.055 JLINK_IsHalted() +T1E08 004:445.022 - 0.965ms returns FALSE +T1E08 004:445.239 JLINK_HasError() +T1E08 004:446.676 JLINK_IsHalted() +T1E08 004:447.532 - 0.855ms returns FALSE +T1E08 004:447.614 JLINK_HasError() +T1E08 004:449.360 JLINK_IsHalted() +T1E08 004:452.493 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:453.544 - 4.182ms returns TRUE +T1E08 004:453.728 JLINK_ReadReg(R15 (PC)) +T1E08 004:453.845 - 0.117ms returns 0x20000000 +T1E08 004:453.974 JLINK_ClrBPEx(BPHandle = 0x00000045) +T1E08 004:454.095 - 0.120ms returns 0x00 +T1E08 004:454.165 JLINK_ReadReg(R0) +T1E08 004:454.221 - 0.055ms returns 0x00000000 +T1E08 004:455.191 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:455.271 Data: B0 EB C7 00 72 EB 57 72 0C FB 08 F7 34 BF A2 EB ... +T1E08 004:455.365 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:458.324 - 3.132ms returns 0x27C +T1E08 004:458.423 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:458.479 Data: 00 00 0F BC BD E8 10 40 0B F1 01 0B BB F1 01 0F ... +T1E08 004:458.567 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:460.781 - 2.356ms returns 0x184 +T1E08 004:460.974 JLINK_HasError() +T1E08 004:461.092 JLINK_WriteReg(R0, 0x0800E000) +T1E08 004:461.220 - 0.128ms returns 0 +T1E08 004:461.331 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:461.441 - 0.109ms returns 0 +T1E08 004:461.550 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:461.658 - 0.108ms returns 0 +T1E08 004:461.770 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:461.877 - 0.107ms returns 0 +T1E08 004:461.987 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:462.102 - 0.115ms returns 0 +T1E08 004:462.213 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:462.323 - 0.111ms returns 0 +T1E08 004:462.434 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:462.541 - 0.107ms returns 0 +T1E08 004:462.596 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:462.650 - 0.053ms returns 0 +T1E08 004:462.704 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:462.757 - 0.053ms returns 0 +T1E08 004:462.813 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:462.867 - 0.054ms returns 0 +T1E08 004:462.922 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:462.975 - 0.053ms returns 0 +T1E08 004:463.030 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:463.083 - 0.053ms returns 0 +T1E08 004:463.138 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:463.191 - 0.053ms returns 0 +T1E08 004:463.245 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:463.300 - 0.054ms returns 0 +T1E08 004:463.354 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:463.407 - 0.053ms returns 0 +T1E08 004:463.462 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:463.515 - 0.053ms returns 0 +T1E08 004:463.581 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:463.635 - 0.054ms returns 0 +T1E08 004:463.691 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:463.744 - 0.053ms returns 0 +T1E08 004:463.799 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:463.852 - 0.053ms returns 0 +T1E08 004:463.906 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:463.959 - 0.053ms returns 0 +T1E08 004:464.015 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:464.070 - 0.055ms returns 0x00000046 +T1E08 004:464.124 JLINK_Go() +T1E08 004:464.188 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:468.223 - 4.097ms +T1E08 004:468.341 JLINK_IsHalted() +T1E08 004:469.160 - 0.818ms returns FALSE +T1E08 004:469.265 JLINK_HasError() +T1E08 004:470.811 JLINK_IsHalted() +T1E08 004:471.681 - 0.870ms returns FALSE +T1E08 004:471.773 JLINK_HasError() +T1E08 004:472.961 JLINK_IsHalted() +T1E08 004:476.213 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:477.213 - 4.250ms returns TRUE +T1E08 004:477.404 JLINK_ReadReg(R15 (PC)) +T1E08 004:477.526 - 0.121ms returns 0x20000000 +T1E08 004:477.660 JLINK_ClrBPEx(BPHandle = 0x00000046) +T1E08 004:477.774 - 0.113ms returns 0x00 +T1E08 004:477.889 JLINK_ReadReg(R0) +T1E08 004:478.003 - 0.113ms returns 0x00000000 +T1E08 004:478.987 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:479.079 Data: 0B FB 07 F7 1E EB 07 4E 4C EB 17 4B 18 EB 0B 08 ... +T1E08 004:479.170 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:482.235 - 3.246ms returns 0x27C +T1E08 004:482.425 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:482.541 Data: 00 1A 21 EE 21 8A 05 E0 DF ED 29 0A 68 EE 08 8A ... +T1E08 004:482.723 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:485.127 - 2.702ms returns 0x184 +T1E08 004:485.236 JLINK_HasError() +T1E08 004:485.300 JLINK_WriteReg(R0, 0x0800E400) +T1E08 004:485.421 - 0.119ms returns 0 +T1E08 004:485.541 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:485.661 - 0.119ms returns 0 +T1E08 004:485.818 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:485.937 - 0.120ms returns 0 +T1E08 004:486.057 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:486.176 - 0.118ms returns 0 +T1E08 004:486.295 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:486.413 - 0.117ms returns 0 +T1E08 004:486.532 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:486.615 - 0.083ms returns 0 +T1E08 004:486.676 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:486.729 - 0.053ms returns 0 +T1E08 004:486.784 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:486.838 - 0.054ms returns 0 +T1E08 004:486.903 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:486.956 - 0.053ms returns 0 +T1E08 004:487.010 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:487.064 - 0.054ms returns 0 +T1E08 004:487.118 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:487.172 - 0.053ms returns 0 +T1E08 004:487.226 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:487.279 - 0.053ms returns 0 +T1E08 004:487.333 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:487.386 - 0.053ms returns 0 +T1E08 004:487.441 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:487.495 - 0.054ms returns 0 +T1E08 004:487.549 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:487.603 - 0.053ms returns 0 +T1E08 004:487.657 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:487.710 - 0.053ms returns 0 +T1E08 004:487.765 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:487.818 - 0.053ms returns 0 +T1E08 004:487.872 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:487.925 - 0.053ms returns 0 +T1E08 004:487.979 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:488.033 - 0.053ms returns 0 +T1E08 004:488.087 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:488.140 - 0.053ms returns 0 +T1E08 004:488.195 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:488.251 - 0.055ms returns 0x00000047 +T1E08 004:488.305 JLINK_Go() +T1E08 004:488.369 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:491.981 - 3.674ms +T1E08 004:492.087 JLINK_IsHalted() +T1E08 004:492.908 - 0.820ms returns FALSE +T1E08 004:492.984 JLINK_HasError() +T1E08 004:494.333 JLINK_IsHalted() +T1E08 004:495.368 - 1.034ms returns FALSE +T1E08 004:495.462 JLINK_HasError() +T1E08 004:497.337 JLINK_IsHalted() +T1E08 004:500.594 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:501.489 - 4.151ms returns TRUE +T1E08 004:501.683 JLINK_ReadReg(R15 (PC)) +T1E08 004:501.799 - 0.115ms returns 0x20000000 +T1E08 004:501.929 JLINK_ClrBPEx(BPHandle = 0x00000047) +T1E08 004:502.039 - 0.109ms returns 0x00 +T1E08 004:502.133 JLINK_ReadReg(R0) +T1E08 004:502.187 - 0.054ms returns 0x00000000 +T1E08 004:503.037 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:503.117 Data: 53 EC 1A 2B 51 EC 10 0B 01 F0 4E FB 53 EC 18 2B ... +T1E08 004:503.212 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:506.277 - 3.238ms returns 0x27C +T1E08 004:506.469 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:506.587 Data: 02 24 04 EA AC 74 44 EA D2 74 05 43 9F ED 57 8B ... +T1E08 004:506.767 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:509.177 - 2.707ms returns 0x184 +T1E08 004:509.370 JLINK_HasError() +T1E08 004:509.495 JLINK_WriteReg(R0, 0x0800E800) +T1E08 004:509.636 - 0.141ms returns 0 +T1E08 004:509.756 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:509.873 - 0.117ms returns 0 +T1E08 004:509.993 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:510.109 - 0.117ms returns 0 +T1E08 004:510.227 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:510.343 - 0.116ms returns 0 +T1E08 004:510.461 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:510.513 - 0.052ms returns 0 +T1E08 004:510.567 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:510.621 - 0.053ms returns 0 +T1E08 004:510.674 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:510.727 - 0.052ms returns 0 +T1E08 004:510.781 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:510.835 - 0.053ms returns 0 +T1E08 004:510.899 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:510.953 - 0.054ms returns 0 +T1E08 004:511.007 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:511.061 - 0.053ms returns 0 +T1E08 004:511.115 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:511.169 - 0.053ms returns 0 +T1E08 004:511.223 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:511.276 - 0.052ms returns 0 +T1E08 004:511.330 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:511.383 - 0.052ms returns 0 +T1E08 004:511.437 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:511.491 - 0.054ms returns 0 +T1E08 004:511.545 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:511.598 - 0.053ms returns 0 +T1E08 004:511.662 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:511.715 - 0.054ms returns 0 +T1E08 004:511.770 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:511.823 - 0.053ms returns 0 +T1E08 004:511.877 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:511.929 - 0.053ms returns 0 +T1E08 004:511.984 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:512.037 - 0.052ms returns 0 +T1E08 004:512.091 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:512.144 - 0.053ms returns 0 +T1E08 004:512.198 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:512.253 - 0.054ms returns 0x00000048 +T1E08 004:512.307 JLINK_Go() +T1E08 004:512.372 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:515.987 - 3.679ms +T1E08 004:516.111 JLINK_IsHalted() +T1E08 004:516.911 - 0.799ms returns FALSE +T1E08 004:516.996 JLINK_HasError() +T1E08 004:521.891 JLINK_IsHalted() +T1E08 004:525.300 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:526.191 - 4.299ms returns TRUE +T1E08 004:526.314 JLINK_ReadReg(R15 (PC)) +T1E08 004:526.392 - 0.078ms returns 0x20000000 +T1E08 004:526.467 JLINK_ClrBPEx(BPHandle = 0x00000048) +T1E08 004:526.539 - 0.072ms returns 0x00 +T1E08 004:526.622 JLINK_ReadReg(R0) +T1E08 004:526.695 - 0.072ms returns 0x00000000 +T1E08 004:527.704 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:527.783 Data: 18 2D 44 54 FB 21 F9 3F EA 1C 00 00 00 00 00 00 ... +T1E08 004:527.872 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:530.906 - 3.202ms returns 0x27C +T1E08 004:531.012 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:531.074 Data: DB 0F 49 40 DB 0F 49 C0 00 00 C9 BF 22 AA FD B9 ... +T1E08 004:531.173 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:533.444 - 2.431ms returns 0x184 +T1E08 004:533.643 JLINK_HasError() +T1E08 004:533.762 JLINK_WriteReg(R0, 0x0800EC00) +T1E08 004:533.882 - 0.119ms returns 0 +T1E08 004:534.016 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:534.330 - 0.314ms returns 0 +T1E08 004:534.459 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:534.553 - 0.094ms returns 0 +T1E08 004:534.617 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:534.671 - 0.054ms returns 0 +T1E08 004:534.726 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:534.780 - 0.053ms returns 0 +T1E08 004:534.833 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:534.886 - 0.052ms returns 0 +T1E08 004:534.961 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:535.014 - 0.053ms returns 0 +T1E08 004:535.068 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:535.121 - 0.052ms returns 0 +T1E08 004:535.185 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:535.238 - 0.053ms returns 0 +T1E08 004:535.292 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:535.345 - 0.052ms returns 0 +T1E08 004:535.399 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:535.453 - 0.053ms returns 0 +T1E08 004:535.507 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:535.560 - 0.053ms returns 0 +T1E08 004:535.615 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:535.668 - 0.053ms returns 0 +T1E08 004:535.722 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:535.776 - 0.053ms returns 0 +T1E08 004:535.830 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:535.884 - 0.053ms returns 0 +T1E08 004:535.938 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:535.991 - 0.053ms returns 0 +T1E08 004:536.045 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:536.098 - 0.053ms returns 0 +T1E08 004:536.152 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:536.205 - 0.053ms returns 0 +T1E08 004:536.259 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:536.311 - 0.052ms returns 0 +T1E08 004:536.365 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:536.418 - 0.053ms returns 0 +T1E08 004:536.473 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:536.527 - 0.054ms returns 0x00000049 +T1E08 004:536.581 JLINK_Go() +T1E08 004:536.644 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:540.818 - 4.236ms +T1E08 004:540.927 JLINK_IsHalted() +T1E08 004:541.992 - 1.063ms returns FALSE +T1E08 004:542.058 JLINK_HasError() +T1E08 004:545.478 JLINK_IsHalted() +T1E08 004:548.708 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:549.661 - 4.182ms returns TRUE +T1E08 004:549.777 JLINK_ReadReg(R15 (PC)) +T1E08 004:549.845 - 0.067ms returns 0x20000000 +T1E08 004:549.914 JLINK_ClrBPEx(BPHandle = 0x00000049) +T1E08 004:549.979 - 0.064ms returns 0x00 +T1E08 004:550.062 JLINK_ReadReg(R0) +T1E08 004:550.192 - 0.128ms returns 0x00000000 +T1E08 004:551.319 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:551.405 Data: 00 00 C9 3F 00 A0 FD 39 00 20 A2 33 1A 61 34 2C ... +T1E08 004:551.496 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:554.487 - 3.167ms returns 0x27C +T1E08 004:554.687 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:554.799 Data: B9 3A B2 BA CA 9F 2A 3D DD FF FF BE 49 0E 49 46 ... +T1E08 004:555.004 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:557.281 - 2.593ms returns 0x184 +T1E08 004:557.474 JLINK_HasError() +T1E08 004:557.594 JLINK_WriteReg(R0, 0x0800F000) +T1E08 004:557.713 - 0.118ms returns 0 +T1E08 004:557.829 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:557.957 - 0.128ms returns 0 +T1E08 004:558.167 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:558.320 - 0.153ms returns 0 +T1E08 004:558.437 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:558.538 - 0.101ms returns 0 +T1E08 004:558.597 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:558.652 - 0.054ms returns 0 +T1E08 004:558.706 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:558.759 - 0.053ms returns 0 +T1E08 004:558.814 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:558.867 - 0.053ms returns 0 +T1E08 004:558.921 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:558.992 - 0.071ms returns 0 +T1E08 004:559.098 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:559.199 - 0.100ms returns 0 +T1E08 004:559.297 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:559.388 - 0.090ms returns 0 +T1E08 004:559.449 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:559.503 - 0.054ms returns 0 +T1E08 004:559.557 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:559.611 - 0.053ms returns 0 +T1E08 004:559.666 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:559.721 - 0.054ms returns 0 +T1E08 004:559.783 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:559.841 - 0.057ms returns 0 +T1E08 004:559.897 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:559.950 - 0.053ms returns 0 +T1E08 004:560.005 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:560.058 - 0.053ms returns 0 +T1E08 004:560.112 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:560.165 - 0.053ms returns 0 +T1E08 004:560.219 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:560.272 - 0.052ms returns 0 +T1E08 004:560.326 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:560.379 - 0.053ms returns 0 +T1E08 004:560.433 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:560.486 - 0.053ms returns 0 +T1E08 004:560.556 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:560.611 - 0.055ms returns 0x0000004A +T1E08 004:560.666 JLINK_Go() +T1E08 004:560.729 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:564.236 - 3.569ms +T1E08 004:564.345 JLINK_IsHalted() +T1E08 004:565.164 - 0.818ms returns FALSE +T1E08 004:565.243 JLINK_HasError() +T1E08 004:566.549 JLINK_IsHalted() +T1E08 004:567.426 - 0.876ms returns FALSE +T1E08 004:567.501 JLINK_HasError() +T1E08 004:569.236 JLINK_IsHalted() +T1E08 004:572.137 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:573.291 - 4.054ms returns TRUE +T1E08 004:573.366 JLINK_ReadReg(R15 (PC)) +T1E08 004:573.423 - 0.057ms returns 0x20000000 +T1E08 004:573.479 JLINK_ClrBPEx(BPHandle = 0x0000004A) +T1E08 004:573.534 - 0.054ms returns 0x00 +T1E08 004:573.590 JLINK_ReadReg(R0) +T1E08 004:573.649 - 0.059ms returns 0x00000000 +T1E08 004:574.485 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:574.563 Data: 00 90 00 EE C1 0A 9F ED 26 1A 00 EE C1 0A 9F ED ... +T1E08 004:575.479 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:578.484 - 3.999ms returns 0x27C +T1E08 004:578.585 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:578.654 Data: 25 40 08 BF D2 E9 01 56 12 D0 55 68 04 FA 0C F4 ... +T1E08 004:578.756 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:580.865 - 2.279ms returns 0x184 +T1E08 004:580.975 JLINK_HasError() +T1E08 004:581.058 JLINK_WriteReg(R0, 0x0800F400) +T1E08 004:581.131 - 0.073ms returns 0 +T1E08 004:581.221 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:581.299 - 0.078ms returns 0 +T1E08 004:581.381 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:581.465 - 0.085ms returns 0 +T1E08 004:581.547 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:581.659 - 0.111ms returns 0 +T1E08 004:581.847 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:581.934 - 0.086ms returns 0 +T1E08 004:582.015 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:582.094 - 0.079ms returns 0 +T1E08 004:582.173 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:582.249 - 0.076ms returns 0 +T1E08 004:582.328 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:582.409 - 0.080ms returns 0 +T1E08 004:582.501 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:582.583 - 0.082ms returns 0 +T1E08 004:582.666 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:582.748 - 0.081ms returns 0 +T1E08 004:582.830 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:582.897 - 0.067ms returns 0 +T1E08 004:582.959 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:583.019 - 0.061ms returns 0 +T1E08 004:583.081 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:583.143 - 0.062ms returns 0 +T1E08 004:583.204 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:583.268 - 0.064ms returns 0 +T1E08 004:583.345 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:583.401 - 0.056ms returns 0 +T1E08 004:583.469 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:583.527 - 0.058ms returns 0 +T1E08 004:583.588 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:583.650 - 0.061ms returns 0 +T1E08 004:583.710 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:583.766 - 0.055ms returns 0 +T1E08 004:583.825 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:583.881 - 0.055ms returns 0 +T1E08 004:583.941 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:583.998 - 0.056ms returns 0 +T1E08 004:584.059 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:584.117 - 0.058ms returns 0x0000004B +T1E08 004:584.178 JLINK_Go() +T1E08 004:584.249 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:588.002 - 3.823ms +T1E08 004:588.118 JLINK_IsHalted() +T1E08 004:588.991 - 0.873ms returns FALSE +T1E08 004:589.061 JLINK_HasError() +T1E08 004:590.770 JLINK_IsHalted() +T1E08 004:591.697 - 0.927ms returns FALSE +T1E08 004:591.801 JLINK_HasError() +T1E08 004:593.162 JLINK_IsHalted() +T1E08 004:596.447 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:597.633 - 4.469ms returns TRUE +T1E08 004:597.824 JLINK_ReadReg(R15 (PC)) +T1E08 004:597.962 - 0.138ms returns 0x20000000 +T1E08 004:598.079 JLINK_ClrBPEx(BPHandle = 0x0000004B) +T1E08 004:598.162 - 0.083ms returns 0x00 +T1E08 004:598.217 JLINK_ReadReg(R0) +T1E08 004:598.270 - 0.052ms returns 0x00000000 +T1E08 004:599.167 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:599.246 Data: 0A D0 08 78 00 28 07 D0 05 48 78 44 F1 F7 D0 FB ... +T1E08 004:599.336 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:602.310 - 3.141ms returns 0x27C +T1E08 004:602.549 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:602.721 Data: 05 F7 C7 F1 80 77 06 FB 07 F7 4F EA D7 37 A7 FB ... +T1E08 004:602.904 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:605.286 - 2.737ms returns 0x184 +T1E08 004:605.393 JLINK_HasError() +T1E08 004:605.457 JLINK_WriteReg(R0, 0x0800F800) +T1E08 004:605.521 - 0.063ms returns 0 +T1E08 004:605.583 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:605.643 - 0.060ms returns 0 +T1E08 004:605.704 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:605.764 - 0.060ms returns 0 +T1E08 004:605.825 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:605.885 - 0.059ms returns 0 +T1E08 004:605.946 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:606.006 - 0.060ms returns 0 +T1E08 004:606.067 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:606.127 - 0.060ms returns 0 +T1E08 004:606.197 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:606.257 - 0.060ms returns 0 +T1E08 004:606.318 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:606.378 - 0.060ms returns 0 +T1E08 004:606.439 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:606.499 - 0.060ms returns 0 +T1E08 004:606.560 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:606.613 - 0.052ms returns 0 +T1E08 004:606.667 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:606.719 - 0.052ms returns 0 +T1E08 004:606.773 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:606.826 - 0.053ms returns 0 +T1E08 004:606.981 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:607.058 - 0.077ms returns 0 +T1E08 004:607.147 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:607.221 - 0.074ms returns 0 +T1E08 004:607.298 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:607.369 - 0.070ms returns 0 +T1E08 004:607.440 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:607.520 - 0.080ms returns 0 +T1E08 004:607.615 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:607.709 - 0.093ms returns 0 +T1E08 004:607.812 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:607.894 - 0.082ms returns 0 +T1E08 004:607.970 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:608.040 - 0.069ms returns 0 +T1E08 004:608.112 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:608.182 - 0.070ms returns 0 +T1E08 004:608.255 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:608.331 - 0.075ms returns 0x0000004C +T1E08 004:608.403 JLINK_Go() +T1E08 004:608.487 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:612.444 - 4.040ms +T1E08 004:612.547 JLINK_IsHalted() +T1E08 004:613.889 - 1.342ms returns FALSE +T1E08 004:613.976 JLINK_HasError() +T1E08 004:617.474 JLINK_IsHalted() +T1E08 004:620.616 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:621.574 - 4.099ms returns TRUE +T1E08 004:621.680 JLINK_ReadReg(R15 (PC)) +T1E08 004:621.747 - 0.067ms returns 0x20000000 +T1E08 004:621.809 JLINK_ClrBPEx(BPHandle = 0x0000004C) +T1E08 004:621.871 - 0.061ms returns 0x00 +T1E08 004:621.941 JLINK_ReadReg(R0) +T1E08 004:622.003 - 0.061ms returns 0x00000000 +T1E08 004:623.252 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:623.343 Data: BD E8 00 41 70 B5 00 F0 F9 F9 00 BF 09 7E FC 3E ... +T1E08 004:623.436 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:626.341 - 3.089ms returns 0x27C +T1E08 004:626.427 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:626.482 Data: 70 47 4F F4 00 1C 1C EB 41 0F 38 BF 1C EB 43 0F ... +T1E08 004:626.602 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:628.807 - 2.379ms returns 0x184 +T1E08 004:628.923 JLINK_HasError() +T1E08 004:628.992 JLINK_WriteReg(R0, 0x0800FC00) +T1E08 004:629.059 - 0.067ms returns 0 +T1E08 004:629.125 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:629.189 - 0.064ms returns 0 +T1E08 004:629.254 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:629.346 - 0.091ms returns 0 +T1E08 004:629.460 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:629.572 - 0.112ms returns 0 +T1E08 004:629.687 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:629.799 - 0.112ms returns 0 +T1E08 004:629.914 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:630.027 - 0.112ms returns 0 +T1E08 004:630.142 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:630.255 - 0.113ms returns 0 +T1E08 004:630.370 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:630.482 - 0.112ms returns 0 +T1E08 004:630.572 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:630.625 - 0.053ms returns 0 +T1E08 004:630.680 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:630.733 - 0.053ms returns 0 +T1E08 004:630.788 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:630.841 - 0.053ms returns 0 +T1E08 004:630.895 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:630.948 - 0.053ms returns 0 +T1E08 004:631.003 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:631.056 - 0.053ms returns 0 +T1E08 004:631.110 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:631.164 - 0.054ms returns 0 +T1E08 004:631.218 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:631.271 - 0.053ms returns 0 +T1E08 004:631.325 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:631.379 - 0.053ms returns 0 +T1E08 004:631.433 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:631.486 - 0.053ms returns 0 +T1E08 004:631.541 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:631.594 - 0.053ms returns 0 +T1E08 004:631.648 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:631.701 - 0.053ms returns 0 +T1E08 004:631.762 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:631.815 - 0.053ms returns 0 +T1E08 004:631.871 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:631.925 - 0.055ms returns 0x0000004D +T1E08 004:631.981 JLINK_Go() +T1E08 004:632.043 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:635.820 - 3.838ms +T1E08 004:636.010 JLINK_IsHalted() +T1E08 004:637.506 - 1.496ms returns FALSE +T1E08 004:637.600 JLINK_HasError() +T1E08 004:640.607 JLINK_IsHalted() +T1E08 004:643.712 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:644.684 - 4.076ms returns TRUE +T1E08 004:644.792 JLINK_ReadReg(R15 (PC)) +T1E08 004:644.859 - 0.066ms returns 0x20000000 +T1E08 004:644.927 JLINK_ClrBPEx(BPHandle = 0x0000004D) +T1E08 004:644.989 - 0.061ms returns 0x00 +T1E08 004:645.065 JLINK_ReadReg(R0) +T1E08 004:645.133 - 0.067ms returns 0x00000000 +T1E08 004:645.994 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:646.087 Data: 2E F0 03 0E 5E F8 04 6B 36 42 05 D4 01 2A 43 EB ... +T1E08 004:646.187 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:649.168 - 3.174ms returns 0x27C +T1E08 004:649.283 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:649.347 Data: D2 0B 42 EA 44 46 A6 FB 06 23 A1 FB 02 E2 A3 FB ... +T1E08 004:649.449 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:651.832 - 2.548ms returns 0x184 +T1E08 004:651.945 JLINK_HasError() +T1E08 004:652.013 JLINK_WriteReg(R0, 0x08010000) +T1E08 004:652.081 - 0.067ms returns 0 +T1E08 004:652.188 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:652.372 - 0.183ms returns 0 +T1E08 004:652.497 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:652.627 - 0.130ms returns 0 +T1E08 004:652.693 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:652.757 - 0.063ms returns 0 +T1E08 004:652.821 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:652.883 - 0.062ms returns 0 +T1E08 004:652.947 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:653.009 - 0.062ms returns 0 +T1E08 004:653.073 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:653.135 - 0.062ms returns 0 +T1E08 004:653.199 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:653.261 - 0.062ms returns 0 +T1E08 004:653.325 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:653.385 - 0.060ms returns 0 +T1E08 004:653.439 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:653.493 - 0.053ms returns 0 +T1E08 004:653.560 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:653.613 - 0.053ms returns 0 +T1E08 004:653.668 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:653.721 - 0.053ms returns 0 +T1E08 004:653.775 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:653.828 - 0.053ms returns 0 +T1E08 004:653.883 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:653.937 - 0.054ms returns 0 +T1E08 004:653.991 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:654.054 - 0.063ms returns 0 +T1E08 004:654.109 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:654.163 - 0.054ms returns 0 +T1E08 004:654.217 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:654.270 - 0.053ms returns 0 +T1E08 004:654.324 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:654.378 - 0.053ms returns 0 +T1E08 004:654.495 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:654.569 - 0.072ms returns 0 +T1E08 004:654.624 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:654.677 - 0.053ms returns 0 +T1E08 004:654.733 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:654.788 - 0.055ms returns 0x0000004E +T1E08 004:654.843 JLINK_Go() +T1E08 004:654.906 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:659.241 - 4.397ms +T1E08 004:659.343 JLINK_IsHalted() +T1E08 004:660.167 - 0.824ms returns FALSE +T1E08 004:660.241 JLINK_HasError() +T1E08 004:661.468 JLINK_IsHalted() +T1E08 004:662.295 - 0.826ms returns FALSE +T1E08 004:662.376 JLINK_HasError() +T1E08 004:663.501 JLINK_IsHalted() +T1E08 004:666.545 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:667.428 - 3.926ms returns TRUE +T1E08 004:667.547 JLINK_ReadReg(R15 (PC)) +T1E08 004:667.616 - 0.069ms returns 0x20000000 +T1E08 004:667.688 JLINK_ClrBPEx(BPHandle = 0x0000004E) +T1E08 004:667.764 - 0.075ms returns 0x00 +T1E08 004:667.842 JLINK_ReadReg(R0) +T1E08 004:667.915 - 0.072ms returns 0x00000000 +T1E08 004:668.870 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:668.998 Data: 0C FE 10 EB 0E 00 43 FA 0C FE 41 EB 0E 01 CC F1 ... +T1E08 004:669.204 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:672.169 - 3.299ms returns 0x27C +T1E08 004:672.293 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:672.367 Data: 18 BF 5F F0 80 6C 28 BF 20 F0 01 00 70 47 0E F1 ... +T1E08 004:672.483 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:674.609 - 2.316ms returns 0x184 +T1E08 004:674.714 JLINK_HasError() +T1E08 004:674.778 JLINK_WriteReg(R0, 0x08010400) +T1E08 004:674.841 - 0.063ms returns 0 +T1E08 004:674.907 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:675.021 - 0.113ms returns 0 +T1E08 004:675.135 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:675.249 - 0.114ms returns 0 +T1E08 004:675.364 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:675.497 - 0.132ms returns 0 +T1E08 004:675.611 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:675.723 - 0.112ms returns 0 +T1E08 004:675.837 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:675.950 - 0.112ms returns 0 +T1E08 004:676.065 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:676.159 - 0.094ms returns 0 +T1E08 004:676.213 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:676.267 - 0.053ms returns 0 +T1E08 004:676.402 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:676.475 - 0.072ms returns 0 +T1E08 004:676.556 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:676.621 - 0.065ms returns 0 +T1E08 004:676.687 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:676.751 - 0.064ms returns 0 +T1E08 004:676.825 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:676.890 - 0.064ms returns 0 +T1E08 004:676.955 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:677.019 - 0.063ms returns 0 +T1E08 004:677.103 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:677.173 - 0.070ms returns 0 +T1E08 004:677.241 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:677.302 - 0.060ms returns 0 +T1E08 004:677.373 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:677.435 - 0.062ms returns 0 +T1E08 004:677.490 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:677.545 - 0.054ms returns 0 +T1E08 004:677.599 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:677.652 - 0.053ms returns 0 +T1E08 004:677.708 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:677.803 - 0.094ms returns 0 +T1E08 004:677.863 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:677.939 - 0.076ms returns 0 +T1E08 004:678.012 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:678.071 - 0.059ms returns 0x0000004F +T1E08 004:678.126 JLINK_Go() +T1E08 004:678.213 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:682.004 - 3.876ms +T1E08 004:682.107 JLINK_IsHalted() +T1E08 004:683.049 - 0.941ms returns FALSE +T1E08 004:683.239 JLINK_HasError() +T1E08 004:685.368 JLINK_IsHalted() +T1E08 004:687.067 - 1.698ms returns FALSE +T1E08 004:687.168 JLINK_HasError() +T1E08 004:688.349 JLINK_IsHalted() +T1E08 004:691.335 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:692.301 - 3.952ms returns TRUE +T1E08 004:692.409 JLINK_ReadReg(R15 (PC)) +T1E08 004:692.476 - 0.066ms returns 0x20000000 +T1E08 004:692.541 JLINK_ClrBPEx(BPHandle = 0x0000004F) +T1E08 004:692.605 - 0.063ms returns 0x00 +T1E08 004:692.669 JLINK_ReadReg(R0) +T1E08 004:692.732 - 0.062ms returns 0x00000000 +T1E08 004:693.621 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:693.786 Data: 02 40 00 00 00 00 00 A0 00 00 00 00 05 40 00 00 ... +T1E08 004:694.061 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:697.284 - 3.661ms returns 0x27C +T1E08 004:697.473 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:697.589 Data: B7 0B 01 08 00 00 00 00 00 00 00 00 00 00 00 00 ... +T1E08 004:697.769 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:700.033 - 2.559ms returns 0x184 +T1E08 004:700.133 JLINK_HasError() +T1E08 004:700.197 JLINK_WriteReg(R0, 0x08010800) +T1E08 004:700.269 - 0.071ms returns 0 +T1E08 004:700.331 JLINK_WriteReg(R1, 0x00000400) +T1E08 004:700.392 - 0.060ms returns 0 +T1E08 004:700.453 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:700.513 - 0.059ms returns 0 +T1E08 004:700.574 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:700.633 - 0.059ms returns 0 +T1E08 004:700.695 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:700.755 - 0.059ms returns 0 +T1E08 004:700.815 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:700.951 - 0.134ms returns 0 +T1E08 004:701.044 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:701.133 - 0.089ms returns 0 +T1E08 004:701.213 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:701.291 - 0.078ms returns 0 +T1E08 004:701.382 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:701.469 - 0.087ms returns 0 +T1E08 004:701.561 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:701.678 - 0.116ms returns 0 +T1E08 004:701.784 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:701.875 - 0.091ms returns 0 +T1E08 004:701.957 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:702.043 - 0.086ms returns 0 +T1E08 004:702.146 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:702.251 - 0.105ms returns 0 +T1E08 004:702.338 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:702.423 - 0.085ms returns 0 +T1E08 004:702.552 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:702.638 - 0.085ms returns 0 +T1E08 004:702.719 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:702.797 - 0.078ms returns 0 +T1E08 004:702.874 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:702.953 - 0.079ms returns 0 +T1E08 004:703.061 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:703.162 - 0.101ms returns 0 +T1E08 004:703.253 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:703.328 - 0.075ms returns 0 +T1E08 004:703.405 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:703.484 - 0.079ms returns 0 +T1E08 004:703.562 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:703.638 - 0.075ms returns 0x00000050 +T1E08 004:703.695 JLINK_Go() +T1E08 004:703.767 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:707.581 - 3.885ms +T1E08 004:707.771 JLINK_IsHalted() +T1E08 004:708.770 - 0.998ms returns FALSE +T1E08 004:708.864 JLINK_HasError() +T1E08 004:712.190 JLINK_IsHalted() +T1E08 004:715.272 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:716.193 - 4.003ms returns TRUE +T1E08 004:716.286 JLINK_ReadReg(R15 (PC)) +T1E08 004:716.365 - 0.078ms returns 0x20000000 +T1E08 004:716.439 JLINK_ClrBPEx(BPHandle = 0x00000050) +T1E08 004:716.514 - 0.074ms returns 0x00 +T1E08 004:716.768 JLINK_ReadReg(R0) +T1E08 004:716.886 - 0.117ms returns 0x00000000 +T1E08 004:718.854 JLINK_WriteMem(0x20000184, 0x27C Bytes, ...) +T1E08 004:718.945 Data: 73 00 54 61 73 6B 5F 49 6E 69 74 00 68 0C 01 08 ... +T1E08 004:719.107 CPU_WriteMem(636 bytes @ 0x20000184) +T1E08 004:722.115 - 3.259ms returns 0x27C +T1E08 004:722.238 JLINK_WriteMem(0x20000400, 0x184 Bytes, ...) +T1E08 004:722.312 Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ... +T1E08 004:722.429 CPU_WriteMem(388 bytes @ 0x20000400) +T1E08 004:724.714 - 2.475ms returns 0x184 +T1E08 004:724.818 JLINK_HasError() +T1E08 004:724.883 JLINK_WriteReg(R0, 0x08010C00) +T1E08 004:724.947 - 0.063ms returns 0 +T1E08 004:725.008 JLINK_WriteReg(R1, 0x00000240) +T1E08 004:725.069 - 0.060ms returns 0 +T1E08 004:725.129 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:725.199 - 0.060ms returns 0 +T1E08 004:725.262 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:725.327 - 0.065ms returns 0 +T1E08 004:725.391 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:725.453 - 0.062ms returns 0 +T1E08 004:725.518 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:725.581 - 0.062ms returns 0 +T1E08 004:725.644 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:725.707 - 0.062ms returns 0 +T1E08 004:725.770 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:725.833 - 0.062ms returns 0 +T1E08 004:725.897 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:725.962 - 0.065ms returns 0 +T1E08 004:726.026 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:726.089 - 0.062ms returns 0 +T1E08 004:726.153 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:726.225 - 0.072ms returns 0 +T1E08 004:726.289 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:726.352 - 0.062ms returns 0 +T1E08 004:726.415 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:726.478 - 0.063ms returns 0 +T1E08 004:726.543 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:726.611 - 0.068ms returns 0 +T1E08 004:726.665 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:726.719 - 0.053ms returns 0 +T1E08 004:726.774 JLINK_WriteReg(R15 (PC), 0x2000010C) +T1E08 004:726.828 - 0.054ms returns 0 +T1E08 004:726.883 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:726.937 - 0.053ms returns 0 +T1E08 004:726.991 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:727.045 - 0.053ms returns 0 +T1E08 004:727.156 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:727.222 - 0.066ms returns 0 +T1E08 004:727.277 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:727.331 - 0.053ms returns 0 +T1E08 004:727.386 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:727.441 - 0.055ms returns 0x00000051 +T1E08 004:727.495 JLINK_Go() +T1E08 004:727.560 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:731.539 - 4.041ms +T1E08 004:731.667 JLINK_IsHalted() +T1E08 004:732.761 - 1.093ms returns FALSE +T1E08 004:732.877 JLINK_HasError() +T1E08 004:737.769 JLINK_IsHalted() +T1E08 004:740.985 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:741.931 - 4.162ms returns TRUE +T1E08 004:742.063 JLINK_ReadReg(R15 (PC)) +T1E08 004:742.132 - 0.069ms returns 0x20000000 +T1E08 004:742.207 JLINK_ClrBPEx(BPHandle = 0x00000051) +T1E08 004:742.279 - 0.072ms returns 0x00 +T1E08 004:742.346 JLINK_ReadReg(R0) +T1E08 004:742.431 - 0.084ms returns 0x00000000 +T1E08 004:742.499 JLINK_HasError() +T1E08 004:742.567 JLINK_WriteReg(R0, 0x00000002) +T1E08 004:742.633 - 0.065ms returns 0 +T1E08 004:742.701 JLINK_WriteReg(R1, 0x00000240) +T1E08 004:742.765 - 0.063ms returns 0 +T1E08 004:742.830 JLINK_WriteReg(R2, 0x20000184) +T1E08 004:742.894 - 0.064ms returns 0 +T1E08 004:742.959 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:743.023 - 0.063ms returns 0 +T1E08 004:743.088 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:743.152 - 0.063ms returns 0 +T1E08 004:743.217 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:743.281 - 0.063ms returns 0 +T1E08 004:743.336 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:743.389 - 0.053ms returns 0 +T1E08 004:743.443 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:743.496 - 0.053ms returns 0 +T1E08 004:743.551 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:743.604 - 0.053ms returns 0 +T1E08 004:743.658 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:743.712 - 0.053ms returns 0 +T1E08 004:743.844 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:743.917 - 0.073ms returns 0 +T1E08 004:743.993 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:744.069 - 0.075ms returns 0 +T1E08 004:744.140 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:744.210 - 0.069ms returns 0 +T1E08 004:744.275 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:744.330 - 0.054ms returns 0 +T1E08 004:744.388 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:744.442 - 0.053ms returns 0 +T1E08 004:744.503 JLINK_WriteReg(R15 (PC), 0x20000086) +T1E08 004:744.556 - 0.054ms returns 0 +T1E08 004:744.619 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:744.699 - 0.079ms returns 0 +T1E08 004:744.769 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:744.823 - 0.054ms returns 0 +T1E08 004:744.882 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:744.935 - 0.053ms returns 0 +T1E08 004:744.993 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:745.047 - 0.054ms returns 0 +T1E08 004:745.105 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:745.161 - 0.055ms returns 0x00000052 +T1E08 004:745.219 JLINK_Go() +T1E08 004:745.285 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:749.375 - 4.155ms +T1E08 004:749.491 JLINK_IsHalted() +T1E08 004:752.461 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:753.435 - 3.942ms returns TRUE +T1E08 004:753.543 JLINK_ReadReg(R15 (PC)) +T1E08 004:753.612 - 0.068ms returns 0x20000000 +T1E08 004:753.682 JLINK_ClrBPEx(BPHandle = 0x00000052) +T1E08 004:753.748 - 0.065ms returns 0x00 +T1E08 004:753.825 JLINK_ReadReg(R0) +T1E08 004:753.890 - 0.065ms returns 0x00000000 +T1E08 004:818.289 JLINK_WriteMem(0x20000000, 0x184 Bytes, ...) +T1E08 004:818.386 Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ... +T1E08 004:818.500 CPU_WriteMem(388 bytes @ 0x20000000) +T1E08 004:820.827 - 2.537ms returns 0x184 +T1E08 004:821.034 JLINK_HasError() +T1E08 004:821.097 JLINK_WriteReg(R0, 0x08000000) +T1E08 004:821.158 - 0.062ms returns 0 +T1E08 004:821.214 JLINK_WriteReg(R1, 0x00B71B00) +T1E08 004:821.267 - 0.053ms returns 0 +T1E08 004:821.322 JLINK_WriteReg(R2, 0x00000003) +T1E08 004:821.376 - 0.053ms returns 0 +T1E08 004:821.430 JLINK_WriteReg(R3, 0x00000000) +T1E08 004:821.484 - 0.054ms returns 0 +T1E08 004:821.539 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:821.592 - 0.053ms returns 0 +T1E08 004:821.646 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:821.701 - 0.054ms returns 0 +T1E08 004:821.755 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:821.809 - 0.054ms returns 0 +T1E08 004:821.864 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:821.917 - 0.053ms returns 0 +T1E08 004:821.972 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:822.025 - 0.053ms returns 0 +T1E08 004:822.080 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:822.133 - 0.053ms returns 0 +T1E08 004:822.187 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:822.241 - 0.053ms returns 0 +T1E08 004:822.295 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:822.358 - 0.062ms returns 0 +T1E08 004:822.415 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:822.469 - 0.053ms returns 0 +T1E08 004:822.524 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:822.587 - 0.063ms returns 0 +T1E08 004:822.641 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:822.694 - 0.053ms returns 0 +T1E08 004:822.749 JLINK_WriteReg(R15 (PC), 0x20000054) +T1E08 004:822.803 - 0.054ms returns 0 +T1E08 004:822.858 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:822.911 - 0.053ms returns 0 +T1E08 004:822.966 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:823.019 - 0.053ms returns 0 +T1E08 004:823.073 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:823.127 - 0.053ms returns 0 +T1E08 004:823.181 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:823.235 - 0.053ms returns 0 +T1E08 004:823.290 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:823.353 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:824.326 - 1.035ms returns 0x00000053 +T1E08 004:824.446 JLINK_Go() +T1E08 004:824.519 CPU_WriteMem(2 bytes @ 0x20000000) +T1E08 004:825.485 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:829.275 - 4.827ms +T1E08 004:829.396 JLINK_IsHalted() +T1E08 004:832.329 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 004:833.187 - 3.791ms returns TRUE +T1E08 004:833.329 JLINK_ReadReg(R15 (PC)) +T1E08 004:833.415 - 0.085ms returns 0x20000000 +T1E08 004:833.496 JLINK_ClrBPEx(BPHandle = 0x00000053) +T1E08 004:833.573 - 0.077ms returns 0x00 +T1E08 004:833.669 JLINK_ReadReg(R0) +T1E08 004:833.759 - 0.090ms returns 0x00000000 +T1E08 004:833.842 JLINK_HasError() +T1E08 004:833.924 JLINK_WriteReg(R0, 0xFFFFFFFF) +T1E08 004:834.001 - 0.077ms returns 0 +T1E08 004:834.083 JLINK_WriteReg(R1, 0x08000000) +T1E08 004:834.158 - 0.075ms returns 0 +T1E08 004:834.240 JLINK_WriteReg(R2, 0x00010000) +T1E08 004:834.315 - 0.075ms returns 0 +T1E08 004:834.541 JLINK_WriteReg(R3, 0x04C11DB7) +T1E08 004:834.605 - 0.063ms returns 0 +T1E08 004:834.663 JLINK_WriteReg(R4, 0x00000000) +T1E08 004:834.721 - 0.059ms returns 0 +T1E08 004:834.780 JLINK_WriteReg(R5, 0x00000000) +T1E08 004:834.834 - 0.054ms returns 0 +T1E08 004:834.892 JLINK_WriteReg(R6, 0x00000000) +T1E08 004:834.946 - 0.053ms returns 0 +T1E08 004:835.003 JLINK_WriteReg(R7, 0x00000000) +T1E08 004:835.057 - 0.053ms returns 0 +T1E08 004:835.116 JLINK_WriteReg(R8, 0x00000000) +T1E08 004:835.172 - 0.056ms returns 0 +T1E08 004:835.232 JLINK_WriteReg(R9, 0x20000180) +T1E08 004:835.288 - 0.056ms returns 0 +T1E08 004:835.349 JLINK_WriteReg(R10, 0x00000000) +T1E08 004:835.517 - 0.168ms returns 0 +T1E08 004:835.613 JLINK_WriteReg(R11, 0x00000000) +T1E08 004:835.689 - 0.077ms returns 0 +T1E08 004:835.764 JLINK_WriteReg(R12, 0x00000000) +T1E08 004:835.833 - 0.068ms returns 0 +T1E08 004:835.906 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 004:835.975 - 0.069ms returns 0 +T1E08 004:836.055 JLINK_WriteReg(R14, 0x20000001) +T1E08 004:836.124 - 0.069ms returns 0 +T1E08 004:836.203 JLINK_WriteReg(R15 (PC), 0x20000002) +T1E08 004:836.282 - 0.079ms returns 0 +T1E08 004:836.344 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 004:836.401 - 0.057ms returns 0 +T1E08 004:836.462 JLINK_WriteReg(MSP, 0x20001000) +T1E08 004:836.517 - 0.055ms returns 0 +T1E08 004:836.578 JLINK_WriteReg(PSP, 0x20001000) +T1E08 004:836.633 - 0.055ms returns 0 +T1E08 004:836.709 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 004:836.797 - 0.088ms returns 0 +T1E08 004:836.863 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 004:836.921 - 0.058ms returns 0x00000054 +T1E08 004:836.984 JLINK_Go() +T1E08 004:837.052 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 004:840.795 - 3.809ms +T1E08 004:840.929 JLINK_IsHalted() +T1E08 004:841.673 - 0.743ms returns FALSE +T1E08 004:841.783 JLINK_HasError() +T1E08 004:847.173 JLINK_IsHalted() +T1E08 004:848.626 - 1.448ms returns FALSE +T1E08 004:848.949 JLINK_HasError() +T1E08 004:850.901 JLINK_IsHalted() +T1E08 004:852.339 - 1.434ms returns FALSE +T1E08 004:852.542 JLINK_HasError() +T1E08 004:855.045 JLINK_IsHalted() +T1E08 004:856.361 - 1.315ms returns FALSE +T1E08 004:856.461 JLINK_HasError() +T1E08 004:857.997 JLINK_IsHalted() +T1E08 004:859.204 - 1.204ms returns FALSE +T1E08 004:859.389 JLINK_HasError() +T1E08 004:860.845 JLINK_IsHalted() +T1E08 004:861.783 - 0.937ms returns FALSE +T1E08 004:861.985 JLINK_HasError() +T1E08 004:863.473 JLINK_IsHalted() +T1E08 004:865.059 - 1.582ms returns FALSE +T1E08 004:865.366 JLINK_HasError() +T1E08 004:868.108 JLINK_IsHalted() +T1E08 004:869.695 - 1.583ms returns FALSE +T1E08 004:869.957 JLINK_HasError() +T1E08 004:871.329 JLINK_IsHalted() +T1E08 004:872.580 - 1.249ms returns FALSE +T1E08 004:872.781 JLINK_HasError() +T1E08 004:874.296 JLINK_IsHalted() +T1E08 004:876.278 - 1.977ms returns FALSE +T1E08 004:876.574 JLINK_HasError() +T1E08 004:877.896 JLINK_IsHalted() +T1E08 004:879.323 - 1.426ms returns FALSE +T1E08 004:879.421 JLINK_HasError() +T1E08 004:880.848 JLINK_IsHalted() +T1E08 004:881.938 - 1.087ms returns FALSE +T1E08 004:882.142 JLINK_HasError() +T1E08 004:884.393 JLINK_IsHalted() +T1E08 004:885.347 - 0.953ms returns FALSE +T1E08 004:885.477 JLINK_HasError() +T1E08 004:887.190 JLINK_IsHalted() +T1E08 004:888.139 - 0.949ms returns FALSE +T1E08 004:888.237 JLINK_HasError() +T1E08 004:890.021 JLINK_IsHalted() +T1E08 004:891.083 - 1.061ms returns FALSE +T1E08 004:891.263 JLINK_HasError() +T1E08 004:893.021 JLINK_IsHalted() +T1E08 004:894.212 - 1.190ms returns FALSE +T1E08 004:894.405 JLINK_HasError() +T1E08 004:895.910 JLINK_IsHalted() +T1E08 004:896.907 - 0.995ms returns FALSE +T1E08 004:897.121 JLINK_HasError() +T1E08 004:898.926 JLINK_IsHalted() +T1E08 004:899.981 - 1.053ms returns FALSE +T1E08 004:900.169 JLINK_HasError() +T1E08 004:902.030 JLINK_IsHalted() +T1E08 004:903.030 - 0.999ms returns FALSE +T1E08 004:903.163 JLINK_HasError() +T1E08 004:908.981 JLINK_IsHalted() +T1E08 004:910.083 - 1.101ms returns FALSE +T1E08 004:910.264 JLINK_HasError() +T1E08 004:912.137 JLINK_IsHalted() +T1E08 004:914.112 - 1.976ms returns FALSE +T1E08 004:914.279 JLINK_HasError() +T1E08 004:916.320 JLINK_IsHalted() +T1E08 004:917.253 - 0.932ms returns FALSE +T1E08 004:917.353 JLINK_HasError() +T1E08 004:919.647 JLINK_IsHalted() +T1E08 004:921.404 - 1.757ms returns FALSE +T1E08 004:921.517 JLINK_HasError() +T1E08 004:922.792 JLINK_IsHalted() +T1E08 004:923.698 - 0.906ms returns FALSE +T1E08 004:923.791 JLINK_HasError() +T1E08 004:925.385 JLINK_IsHalted() +T1E08 004:926.474 - 1.088ms returns FALSE +T1E08 004:926.574 JLINK_HasError() +T1E08 004:930.905 JLINK_IsHalted() +T1E08 004:933.215 - 2.307ms returns FALSE +T1E08 004:933.444 JLINK_HasError() +T1E08 004:934.897 JLINK_IsHalted() +T1E08 004:935.766 - 0.867ms returns FALSE +T1E08 004:935.977 JLINK_HasError() +T1E08 004:938.427 JLINK_IsHalted() +T1E08 004:939.371 - 0.943ms returns FALSE +T1E08 004:939.567 JLINK_HasError() +T1E08 004:941.457 JLINK_IsHalted() +T1E08 004:942.389 - 0.931ms returns FALSE +T1E08 004:942.498 JLINK_HasError() +T1E08 004:943.982 JLINK_IsHalted() +T1E08 004:945.023 - 1.040ms returns FALSE +T1E08 004:945.159 JLINK_HasError() +T1E08 004:946.940 JLINK_IsHalted() +T1E08 004:947.901 - 0.959ms returns FALSE +T1E08 004:948.082 JLINK_HasError() +T1E08 004:949.909 JLINK_IsHalted() +T1E08 004:950.933 - 1.022ms returns FALSE +T1E08 004:951.052 JLINK_HasError() +T1E08 004:954.878 JLINK_IsHalted() +T1E08 004:955.902 - 1.024ms returns FALSE +T1E08 004:956.013 JLINK_HasError() +T1E08 004:957.966 JLINK_IsHalted() +T1E08 004:958.817 - 0.850ms returns FALSE +T1E08 004:958.905 JLINK_HasError() +T1E08 004:960.191 JLINK_IsHalted() +T1E08 004:961.021 - 0.828ms returns FALSE +T1E08 004:961.155 JLINK_HasError() +T1E08 004:963.316 JLINK_IsHalted() +T1E08 004:964.204 - 0.887ms returns FALSE +T1E08 004:964.299 JLINK_HasError() +T1E08 004:965.679 JLINK_IsHalted() +T1E08 004:966.605 - 0.924ms returns FALSE +T1E08 004:966.714 JLINK_HasError() +T1E08 004:968.049 JLINK_IsHalted() +T1E08 004:968.879 - 0.829ms returns FALSE +T1E08 004:968.986 JLINK_HasError() +T1E08 004:971.006 JLINK_IsHalted() +T1E08 004:971.820 - 0.813ms returns FALSE +T1E08 004:971.911 JLINK_HasError() +T1E08 004:973.262 JLINK_IsHalted() +T1E08 004:974.078 - 0.815ms returns FALSE +T1E08 004:974.185 JLINK_HasError() +T1E08 004:976.029 JLINK_IsHalted() +T1E08 004:977.077 - 1.046ms returns FALSE +T1E08 004:977.271 JLINK_HasError() +T1E08 004:979.323 JLINK_IsHalted() +T1E08 004:980.203 - 0.879ms returns FALSE +T1E08 004:980.293 JLINK_HasError() +T1E08 004:982.048 JLINK_IsHalted() +T1E08 004:983.013 - 0.964ms returns FALSE +T1E08 004:983.116 JLINK_HasError() +T1E08 004:984.389 JLINK_IsHalted() +T1E08 004:985.203 - 0.813ms returns FALSE +T1E08 004:985.306 JLINK_HasError() +T1E08 004:988.257 JLINK_IsHalted() +T1E08 004:989.212 - 0.954ms returns FALSE +T1E08 004:989.309 JLINK_HasError() +T1E08 004:991.083 JLINK_IsHalted() +T1E08 004:992.078 - 0.993ms returns FALSE +T1E08 004:992.261 JLINK_HasError() +T1E08 004:994.091 JLINK_IsHalted() +T1E08 004:995.277 - 1.184ms returns FALSE +T1E08 004:995.440 JLINK_HasError() +T1E08 004:996.996 JLINK_IsHalted() +T1E08 004:997.841 - 0.844ms returns FALSE +T1E08 004:997.928 JLINK_HasError() +T1E08 005:000.025 JLINK_IsHalted() +T1E08 005:001.065 - 1.037ms returns FALSE +T1E08 005:001.264 JLINK_HasError() +T1E08 005:003.057 JLINK_IsHalted() +T1E08 005:004.162 - 1.104ms returns FALSE +T1E08 005:004.359 JLINK_HasError() +T1E08 005:006.048 JLINK_IsHalted() +T1E08 005:007.096 - 1.047ms returns FALSE +T1E08 005:007.229 JLINK_HasError() +T1E08 005:009.081 JLINK_IsHalted() +T1E08 005:011.125 - 2.043ms returns FALSE +T1E08 005:011.254 JLINK_HasError() +T1E08 005:013.421 JLINK_IsHalted() +T1E08 005:014.349 - 0.926ms returns FALSE +T1E08 005:014.446 JLINK_HasError() +T1E08 005:015.711 JLINK_IsHalted() +T1E08 005:016.633 - 0.921ms returns FALSE +T1E08 005:016.737 JLINK_HasError() +T1E08 005:018.033 JLINK_IsHalted() +T1E08 005:018.819 - 0.786ms returns FALSE +T1E08 005:018.908 JLINK_HasError() +T1E08 005:020.271 JLINK_IsHalted() +T1E08 005:021.089 - 0.816ms returns FALSE +T1E08 005:021.208 JLINK_HasError() +T1E08 005:023.279 JLINK_IsHalted() +T1E08 005:024.431 - 1.151ms returns FALSE +T1E08 005:024.611 JLINK_HasError() +T1E08 005:026.121 JLINK_IsHalted() +T1E08 005:027.239 - 1.116ms returns FALSE +T1E08 005:027.462 JLINK_HasError() +T1E08 005:029.067 JLINK_IsHalted() +T1E08 005:030.015 - 0.947ms returns FALSE +T1E08 005:030.124 JLINK_HasError() +T1E08 005:031.416 JLINK_IsHalted() +T1E08 005:032.313 - 0.897ms returns FALSE +T1E08 005:032.393 JLINK_HasError() +T1E08 005:033.768 JLINK_IsHalted() +T1E08 005:034.706 - 0.937ms returns FALSE +T1E08 005:034.809 JLINK_HasError() +T1E08 005:036.121 JLINK_IsHalted() +T1E08 005:037.175 - 1.053ms returns FALSE +T1E08 005:037.261 JLINK_HasError() +T1E08 005:038.597 JLINK_IsHalted() +T1E08 005:039.538 - 0.940ms returns FALSE +T1E08 005:039.608 JLINK_HasError() +T1E08 005:041.035 JLINK_IsHalted() +T1E08 005:042.584 - 1.549ms returns FALSE +T1E08 005:042.687 JLINK_HasError() +T1E08 005:044.639 JLINK_IsHalted() +T1E08 005:045.583 - 0.944ms returns FALSE +T1E08 005:045.665 JLINK_HasError() +T1E08 005:049.009 JLINK_IsHalted() +T1E08 005:050.000 - 0.990ms returns FALSE +T1E08 005:050.182 JLINK_HasError() +T1E08 005:052.365 JLINK_IsHalted() +T1E08 005:053.327 - 0.961ms returns FALSE +T1E08 005:053.437 JLINK_HasError() +T1E08 005:055.431 JLINK_IsHalted() +T1E08 005:056.337 - 0.905ms returns FALSE +T1E08 005:056.445 JLINK_HasError() +T1E08 005:057.751 JLINK_IsHalted() +T1E08 005:058.708 - 0.956ms returns FALSE +T1E08 005:058.799 JLINK_HasError() +T1E08 005:060.141 JLINK_IsHalted() +T1E08 005:061.049 - 0.907ms returns FALSE +T1E08 005:061.154 JLINK_HasError() +T1E08 005:064.185 JLINK_IsHalted() +T1E08 005:065.083 - 0.897ms returns FALSE +T1E08 005:065.183 JLINK_HasError() +T1E08 005:066.605 JLINK_IsHalted() +T1E08 005:067.580 - 0.974ms returns FALSE +T1E08 005:067.673 JLINK_HasError() +T1E08 005:069.518 JLINK_IsHalted() +T1E08 005:070.519 - 1.000ms returns FALSE +T1E08 005:070.714 JLINK_HasError() +T1E08 005:072.237 JLINK_IsHalted() +T1E08 005:073.072 - 0.834ms returns FALSE +T1E08 005:073.157 JLINK_HasError() +T1E08 005:075.127 JLINK_IsHalted() +T1E08 005:076.156 - 1.028ms returns FALSE +T1E08 005:076.261 JLINK_HasError() +T1E08 005:077.918 JLINK_IsHalted() +T1E08 005:078.903 - 0.985ms returns FALSE +T1E08 005:078.994 JLINK_HasError() +T1E08 005:080.914 JLINK_IsHalted() +T1E08 005:082.154 - 1.239ms returns FALSE +T1E08 005:082.249 JLINK_HasError() +T1E08 005:083.945 JLINK_IsHalted() +T1E08 005:084.912 - 0.965ms returns FALSE +T1E08 005:085.024 JLINK_HasError() +T1E08 005:086.322 JLINK_IsHalted() +T1E08 005:087.837 - 1.513ms returns FALSE +T1E08 005:087.947 JLINK_HasError() +T1E08 005:089.329 JLINK_IsHalted() +T1E08 005:090.277 - 0.946ms returns FALSE +T1E08 005:090.383 JLINK_HasError() +T1E08 005:091.704 JLINK_IsHalted() +T1E08 005:092.585 - 0.880ms returns FALSE +T1E08 005:092.676 JLINK_HasError() +T1E08 005:093.813 JLINK_IsHalted() +T1E08 005:094.738 - 0.923ms returns FALSE +T1E08 005:094.831 JLINK_HasError() +T1E08 005:096.399 JLINK_IsHalted() +T1E08 005:097.204 - 0.804ms returns FALSE +T1E08 005:097.292 JLINK_HasError() +T1E08 005:098.426 JLINK_IsHalted() +T1E08 005:099.346 - 0.919ms returns FALSE +T1E08 005:099.455 JLINK_HasError() +T1E08 005:100.649 JLINK_IsHalted() +T1E08 005:101.458 - 0.808ms returns FALSE +T1E08 005:101.560 JLINK_HasError() +T1E08 005:102.871 JLINK_IsHalted() +T1E08 005:104.754 - 1.882ms returns FALSE +T1E08 005:104.863 JLINK_HasError() +T1E08 005:106.871 JLINK_IsHalted() +T1E08 005:107.705 - 0.833ms returns FALSE +T1E08 005:107.797 JLINK_HasError() +T1E08 005:109.416 JLINK_IsHalted() +T1E08 005:110.195 - 0.778ms returns FALSE +T1E08 005:110.277 JLINK_HasError() +T1E08 005:112.331 JLINK_IsHalted() +T1E08 005:113.240 - 0.908ms returns FALSE +T1E08 005:113.350 JLINK_HasError() +T1E08 005:115.421 JLINK_IsHalted() +T1E08 005:116.328 - 0.906ms returns FALSE +T1E08 005:116.417 JLINK_HasError() +T1E08 005:117.739 JLINK_IsHalted() +T1E08 005:118.573 - 0.834ms returns FALSE +T1E08 005:118.641 JLINK_HasError() +T1E08 005:120.033 JLINK_IsHalted() +T1E08 005:121.018 - 0.985ms returns FALSE +T1E08 005:121.101 JLINK_HasError() +T1E08 005:122.364 JLINK_IsHalted() +T1E08 005:123.283 - 0.918ms returns FALSE +T1E08 005:123.389 JLINK_HasError() +T1E08 005:124.665 JLINK_IsHalted() +T1E08 005:125.465 - 0.799ms returns FALSE +T1E08 005:125.564 JLINK_HasError() +T1E08 005:126.755 JLINK_IsHalted() +T1E08 005:127.717 - 0.960ms returns FALSE +T1E08 005:127.905 JLINK_HasError() +T1E08 005:129.674 JLINK_IsHalted() +T1E08 005:130.589 - 0.914ms returns FALSE +T1E08 005:130.691 JLINK_HasError() +T1E08 005:131.906 JLINK_IsHalted() +T1E08 005:132.839 - 0.933ms returns FALSE +T1E08 005:132.941 JLINK_HasError() +T1E08 005:134.249 JLINK_IsHalted() +T1E08 005:136.162 - 1.912ms returns FALSE +T1E08 005:136.265 JLINK_HasError() +T1E08 005:137.465 JLINK_IsHalted() +T1E08 005:138.329 - 0.863ms returns FALSE +T1E08 005:138.413 JLINK_HasError() +T1E08 005:140.533 JLINK_IsHalted() +T1E08 005:141.467 - 0.933ms returns FALSE +T1E08 005:141.574 JLINK_HasError() +T1E08 005:142.912 JLINK_IsHalted() +T1E08 005:143.877 - 0.964ms returns FALSE +T1E08 005:144.059 JLINK_HasError() +T1E08 005:145.652 JLINK_IsHalted() +T1E08 005:146.494 - 0.841ms returns FALSE +T1E08 005:146.588 JLINK_HasError() +T1E08 005:148.496 JLINK_IsHalted() +T1E08 005:149.333 - 0.836ms returns FALSE +T1E08 005:149.440 JLINK_HasError() +T1E08 005:150.735 JLINK_IsHalted() +T1E08 005:151.579 - 0.843ms returns FALSE +T1E08 005:151.663 JLINK_HasError() +T1E08 005:152.974 JLINK_IsHalted() +T1E08 005:154.027 - 1.052ms returns FALSE +T1E08 005:154.116 JLINK_HasError() +T1E08 005:158.227 JLINK_IsHalted() +T1E08 005:159.088 - 0.861ms returns FALSE +T1E08 005:159.176 JLINK_HasError() +T1E08 005:160.922 JLINK_IsHalted() +T1E08 005:161.742 - 0.819ms returns FALSE +T1E08 005:161.845 JLINK_HasError() +T1E08 005:163.955 JLINK_IsHalted() +T1E08 005:164.889 - 0.933ms returns FALSE +T1E08 005:164.996 JLINK_HasError() +T1E08 005:166.335 JLINK_IsHalted() +T1E08 005:168.396 - 2.060ms returns FALSE +T1E08 005:168.489 JLINK_HasError() +T1E08 005:171.340 JLINK_IsHalted() +T1E08 005:172.209 - 0.869ms returns FALSE +T1E08 005:172.307 JLINK_HasError() +T1E08 005:173.615 JLINK_IsHalted() +T1E08 005:174.453 - 0.837ms returns FALSE +T1E08 005:174.528 JLINK_HasError() +T1E08 005:175.864 JLINK_IsHalted() +T1E08 005:176.799 - 0.933ms returns FALSE +T1E08 005:176.989 JLINK_HasError() +T1E08 005:178.503 JLINK_IsHalted() +T1E08 005:179.881 - 1.377ms returns FALSE +T1E08 005:179.996 JLINK_HasError() +T1E08 005:181.158 JLINK_IsHalted() +T1E08 005:182.020 - 0.861ms returns FALSE +T1E08 005:182.097 JLINK_HasError() +T1E08 005:183.362 JLINK_IsHalted() +T1E08 005:184.208 - 0.845ms returns FALSE +T1E08 005:184.300 JLINK_HasError() +T1E08 005:185.447 JLINK_IsHalted() +T1E08 005:186.403 - 0.954ms returns FALSE +T1E08 005:186.618 JLINK_HasError() +T1E08 005:187.855 JLINK_IsHalted() +T1E08 005:189.185 - 1.329ms returns FALSE +T1E08 005:189.278 JLINK_HasError() +T1E08 005:190.800 JLINK_IsHalted() +T1E08 005:192.197 - 1.396ms returns FALSE +T1E08 005:192.305 JLINK_HasError() +T1E08 005:194.115 JLINK_IsHalted() +T1E08 005:195.031 - 0.915ms returns FALSE +T1E08 005:195.167 JLINK_HasError() +T1E08 005:197.306 JLINK_IsHalted() +T1E08 005:198.243 - 0.937ms returns FALSE +T1E08 005:198.341 JLINK_HasError() +T1E08 005:203.939 JLINK_IsHalted() +T1E08 005:204.885 - 0.944ms returns FALSE +T1E08 005:204.984 JLINK_HasError() +T1E08 005:206.235 JLINK_IsHalted() +T1E08 005:207.205 - 0.969ms returns FALSE +T1E08 005:207.312 JLINK_HasError() +T1E08 005:209.237 JLINK_IsHalted() +T1E08 005:210.158 - 0.921ms returns FALSE +T1E08 005:210.239 JLINK_HasError() +T1E08 005:212.219 JLINK_IsHalted() +T1E08 005:213.183 - 0.963ms returns FALSE +T1E08 005:213.323 JLINK_HasError() +T1E08 005:215.219 JLINK_IsHalted() +T1E08 005:216.165 - 0.945ms returns FALSE +T1E08 005:216.283 JLINK_HasError() +T1E08 005:218.225 JLINK_IsHalted() +T1E08 005:219.092 - 0.866ms returns FALSE +T1E08 005:219.195 JLINK_HasError() +T1E08 005:221.503 JLINK_IsHalted() +T1E08 005:222.337 - 0.832ms returns FALSE +T1E08 005:222.502 JLINK_HasError() +T1E08 005:224.046 JLINK_IsHalted() +T1E08 005:225.207 - 1.159ms returns FALSE +T1E08 005:225.329 JLINK_HasError() +T1E08 005:227.222 JLINK_IsHalted() +T1E08 005:228.171 - 0.949ms returns FALSE +T1E08 005:228.291 JLINK_HasError() +T1E08 005:230.052 JLINK_IsHalted() +T1E08 005:231.038 - 0.985ms returns FALSE +T1E08 005:231.138 JLINK_HasError() +T1E08 005:233.176 JLINK_IsHalted() +T1E08 005:234.171 - 0.994ms returns FALSE +T1E08 005:234.275 JLINK_HasError() +T1E08 005:235.606 JLINK_IsHalted() +T1E08 005:236.669 - 1.062ms returns FALSE +T1E08 005:236.796 JLINK_HasError() +T1E08 005:238.590 JLINK_IsHalted() +T1E08 005:239.672 - 1.081ms returns FALSE +T1E08 005:239.853 JLINK_HasError() +T1E08 005:241.167 JLINK_IsHalted() +T1E08 005:244.362 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 005:245.244 - 4.075ms returns TRUE +T1E08 005:245.367 JLINK_ReadReg(R15 (PC)) +T1E08 005:245.445 - 0.078ms returns 0x20000000 +T1E08 005:245.515 JLINK_ClrBPEx(BPHandle = 0x00000054) +T1E08 005:245.591 - 0.076ms returns 0x00 +T1E08 005:245.671 JLINK_ReadReg(R0) +T1E08 005:245.744 - 0.073ms returns 0xE31B6678 +T1E08 005:249.143 JLINK_HasError() +T1E08 005:249.234 JLINK_WriteReg(R0, 0xFFFFFFFF) +T1E08 005:249.291 - 0.056ms returns 0 +T1E08 005:249.346 JLINK_WriteReg(R1, 0x08010000) +T1E08 005:249.399 - 0.053ms returns 0 +T1E08 005:249.453 JLINK_WriteReg(R2, 0x00000E40) +T1E08 005:249.508 - 0.054ms returns 0 +T1E08 005:249.562 JLINK_WriteReg(R3, 0x04C11DB7) +T1E08 005:249.615 - 0.053ms returns 0 +T1E08 005:249.669 JLINK_WriteReg(R4, 0x00000000) +T1E08 005:249.731 - 0.062ms returns 0 +T1E08 005:249.786 JLINK_WriteReg(R5, 0x00000000) +T1E08 005:249.839 - 0.052ms returns 0 +T1E08 005:249.893 JLINK_WriteReg(R6, 0x00000000) +T1E08 005:249.947 - 0.053ms returns 0 +T1E08 005:250.001 JLINK_WriteReg(R7, 0x00000000) +T1E08 005:250.054 - 0.053ms returns 0 +T1E08 005:250.110 JLINK_WriteReg(R8, 0x00000000) +T1E08 005:250.163 - 0.053ms returns 0 +T1E08 005:250.217 JLINK_WriteReg(R9, 0x20000180) +T1E08 005:250.270 - 0.053ms returns 0 +T1E08 005:250.324 JLINK_WriteReg(R10, 0x00000000) +T1E08 005:250.377 - 0.053ms returns 0 +T1E08 005:250.431 JLINK_WriteReg(R11, 0x00000000) +T1E08 005:250.484 - 0.053ms returns 0 +T1E08 005:250.538 JLINK_WriteReg(R12, 0x00000000) +T1E08 005:250.591 - 0.053ms returns 0 +T1E08 005:250.655 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 005:250.717 - 0.063ms returns 0 +T1E08 005:250.810 JLINK_WriteReg(R14, 0x20000001) +T1E08 005:250.896 - 0.086ms returns 0 +T1E08 005:250.955 JLINK_WriteReg(R15 (PC), 0x20000002) +T1E08 005:251.018 - 0.062ms returns 0 +T1E08 005:251.073 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 005:251.125 - 0.053ms returns 0 +T1E08 005:251.180 JLINK_WriteReg(MSP, 0x20001000) +T1E08 005:251.233 - 0.053ms returns 0 +T1E08 005:251.287 JLINK_WriteReg(PSP, 0x20001000) +T1E08 005:251.340 - 0.053ms returns 0 +T1E08 005:251.401 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 005:251.454 - 0.053ms returns 0 +T1E08 005:251.522 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 005:251.578 - 0.055ms returns 0x00000055 +T1E08 005:251.632 JLINK_Go() +T1E08 005:251.701 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 005:255.534 - 3.900ms +T1E08 005:255.647 JLINK_IsHalted() +T1E08 005:256.465 - 0.818ms returns FALSE +T1E08 005:256.537 JLINK_HasError() +T1E08 005:258.383 JLINK_IsHalted() +T1E08 005:259.315 - 0.930ms returns FALSE +T1E08 005:259.441 JLINK_HasError() +T1E08 005:260.719 JLINK_IsHalted() +T1E08 005:261.618 - 0.898ms returns FALSE +T1E08 005:261.736 JLINK_HasError() +T1E08 005:266.836 JLINK_IsHalted() +T1E08 005:267.728 - 0.891ms returns FALSE +T1E08 005:267.816 JLINK_HasError() +T1E08 005:269.556 JLINK_IsHalted() +T1E08 005:270.362 - 0.805ms returns FALSE +T1E08 005:270.506 JLINK_HasError() +T1E08 005:272.122 JLINK_IsHalted() +T1E08 005:273.610 - 1.487ms returns FALSE +T1E08 005:273.737 JLINK_HasError() +T1E08 005:275.488 JLINK_IsHalted() +T1E08 005:276.357 - 0.868ms returns FALSE +T1E08 005:294.287 JLINK_HasError() +T1E08 005:297.865 JLINK_IsHalted() +T1E08 005:300.849 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 005:301.719 - 3.853ms returns TRUE +T1E08 005:301.827 JLINK_ReadReg(R15 (PC)) +T1E08 005:301.897 - 0.070ms returns 0x20000000 +T1E08 005:301.963 JLINK_ClrBPEx(BPHandle = 0x00000055) +T1E08 005:302.027 - 0.064ms returns 0x00 +T1E08 005:302.166 JLINK_ReadReg(R0) +T1E08 005:302.278 - 0.111ms returns 0xDAB13A7F +T1E08 005:303.416 JLINK_HasError() +T1E08 005:303.499 JLINK_WriteReg(R0, 0x00000003) +T1E08 005:303.557 - 0.057ms returns 0 +T1E08 005:303.612 JLINK_WriteReg(R1, 0x08010000) +T1E08 005:303.666 - 0.055ms returns 0 +T1E08 005:303.777 JLINK_WriteReg(R2, 0x00000E40) +T1E08 005:303.832 - 0.055ms returns 0 +T1E08 005:303.887 JLINK_WriteReg(R3, 0x04C11DB7) +T1E08 005:304.059 - 0.171ms returns 0 +T1E08 005:304.134 JLINK_WriteReg(R4, 0x00000000) +T1E08 005:304.199 - 0.064ms returns 0 +T1E08 005:304.270 JLINK_WriteReg(R5, 0x00000000) +T1E08 005:304.326 - 0.056ms returns 0 +T1E08 005:304.380 JLINK_WriteReg(R6, 0x00000000) +T1E08 005:304.433 - 0.053ms returns 0 +T1E08 005:304.487 JLINK_WriteReg(R7, 0x00000000) +T1E08 005:304.541 - 0.053ms returns 0 +T1E08 005:304.596 JLINK_WriteReg(R8, 0x00000000) +T1E08 005:304.649 - 0.053ms returns 0 +T1E08 005:304.703 JLINK_WriteReg(R9, 0x20000180) +T1E08 005:304.757 - 0.053ms returns 0 +T1E08 005:304.811 JLINK_WriteReg(R10, 0x00000000) +T1E08 005:304.864 - 0.053ms returns 0 +T1E08 005:304.918 JLINK_WriteReg(R11, 0x00000000) +T1E08 005:304.971 - 0.053ms returns 0 +T1E08 005:305.025 JLINK_WriteReg(R12, 0x00000000) +T1E08 005:305.083 - 0.057ms returns 0 +T1E08 005:305.138 JLINK_WriteReg(R13 (SP), 0x20001000) +T1E08 005:305.192 - 0.054ms returns 0 +T1E08 005:305.246 JLINK_WriteReg(R14, 0x20000001) +T1E08 005:305.299 - 0.053ms returns 0 +T1E08 005:305.354 JLINK_WriteReg(R15 (PC), 0x20000086) +T1E08 005:305.407 - 0.053ms returns 0 +T1E08 005:305.461 JLINK_WriteReg(XPSR, 0x01000000) +T1E08 005:305.515 - 0.053ms returns 0 +T1E08 005:305.569 JLINK_WriteReg(MSP, 0x20001000) +T1E08 005:305.622 - 0.053ms returns 0 +T1E08 005:305.677 JLINK_WriteReg(PSP, 0x20001000) +T1E08 005:305.730 - 0.053ms returns 0 +T1E08 005:305.784 JLINK_WriteReg(CFBP, 0x00000000) +T1E08 005:305.837 - 0.052ms returns 0 +T1E08 005:305.892 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) +T1E08 005:305.948 - 0.055ms returns 0x00000056 +T1E08 005:306.003 JLINK_Go() +T1E08 005:306.159 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 005:310.586 - 4.581ms +T1E08 005:310.797 JLINK_IsHalted() +T1E08 005:313.894 CPU_ReadMem(2 bytes @ 0x20000000) +T1E08 005:314.711 - 3.914ms returns TRUE +T1E08 005:314.813 JLINK_ReadReg(R15 (PC)) +T1E08 005:314.880 - 0.066ms returns 0x20000000 +T1E08 005:314.945 JLINK_ClrBPEx(BPHandle = 0x00000056) +T1E08 005:315.043 - 0.098ms returns 0x00 +T1E08 005:315.109 JLINK_ReadReg(R0) +T1E08 005:315.181 - 0.071ms returns 0x00000000 +T1E08 005:375.242 JLINK_WriteMemEx(0x20000000, 0x00000002 Bytes, Flags = 0x02000000) +T1E08 005:375.368 Data: FE E7 +T1E08 005:375.485 CPU_WriteMem(2 bytes @ 0x20000000) +T1E08 005:376.391 - 1.149ms returns 0x2 +T1E08 005:376.460 JLINK_HasError() +T1E08 005:376.516 JLINK_HasError() +T1E08 005:376.573 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +T1E08 005:376.627 - 0.054ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +T1E08 005:376.681 JLINK_Reset() +T1E08 005:381.396 Memory map 'before startup completion point' is active +T1E08 005:381.528 JLINK_GetResetTypeDesc +T1E08 005:381.584 - 0.055ms +T1E08 005:385.639 Reset type: NORMAL (https://kb.segger.com/J-Link_Reset_Strategies) +T1E08 005:385.740 CPU_WriteMem(4 bytes @ 0xE000EDF0) +T1E08 005:386.633 CPU_WriteMem(4 bytes @ 0xE000EDFC) +T1E08 005:391.575 Reset: Halt core after reset via DEMCR.VC_CORERESET. +T1E08 005:400.088 Reset: Reset device via AIRCR.SYSRESETREQ. +T1E08 005:400.331 CPU_WriteMem(4 bytes @ 0xE000ED0C) +T1E08 005:456.603 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 005:457.733 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 005:458.611 CPU_WriteMem(4 bytes @ 0xE000EDFC) +T1E08 005:465.681 CPU_ReadMem(4 bytes @ 0xE000EDF0) +T1E08 005:469.949 CPU_WriteMem(4 bytes @ 0xE0002000) +T1E08 005:471.074 CPU_ReadMem(4 bytes @ 0xE000EDFC) +T1E08 005:472.055 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 005:473.125 - 96.441ms +T1E08 005:473.404 JLINK_Go() +T1E08 005:473.546 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 005:474.485 CPU_WriteMem(4 bytes @ 0xE0002008) +T1E08 005:474.594 CPU_WriteMem(4 bytes @ 0xE000200C) +T1E08 005:474.675 CPU_WriteMem(4 bytes @ 0xE0002010) +T1E08 005:474.755 CPU_WriteMem(4 bytes @ 0xE0002014) +T1E08 005:474.834 CPU_WriteMem(4 bytes @ 0xE0002018) +T1E08 005:474.951 CPU_WriteMem(4 bytes @ 0xE000201C) +T1E08 005:476.607 CPU_WriteMem(4 bytes @ 0xE0001004) +T1E08 005:483.774 Memory map 'after startup completion point' is active +T1E08 005:483.895 - 10.492ms +T1E08 005:495.109 JLINK_Close() +T1E08 005:496.669 CPU is running +T1E08 005:496.803 CPU_WriteMem(4 bytes @ 0xE0002008) +T1E08 005:497.633 CPU is running +T1E08 005:497.738 CPU_WriteMem(4 bytes @ 0xE000200C) +T1E08 005:498.618 CPU is running +T1E08 005:498.729 CPU_WriteMem(4 bytes @ 0xE0002010) +T1E08 005:499.857 CPU is running +T1E08 005:500.109 CPU_WriteMem(4 bytes @ 0xE0002014) +T1E08 005:501.046 CPU is running +T1E08 005:501.163 CPU_WriteMem(4 bytes @ 0xE0002018) +T1E08 005:502.297 CPU is running +T1E08 005:502.398 CPU_WriteMem(4 bytes @ 0xE000201C) +T1E08 005:512.898 OnDisconnectTarget() start +T1E08 005:513.024 J-Link Script File: Executing OnDisconnectTarget() +T1E08 005:513.121 CPU_WriteMem(4 bytes @ 0xE0042004) +T1E08 005:514.063 CPU_WriteMem(4 bytes @ 0xE0042008) +T1E08 005:519.001 OnDisconnectTarget() end - Took 2.02ms +T1E08 005:519.159 CPU_ReadMem(4 bytes @ 0xE0001000) +T1E08 005:549.638 - 54.527ms +T1E08 005:549.858 +T1E08 005:549.913 Closed diff --git a/MDK-ARM/Steering Wheel_Infatry.uvguix.yunha b/MDK-ARM/Steering Wheel_Infatry.uvguix.yunha index 2351901..f921599 100644 --- a/MDK-ARM/Steering Wheel_Infatry.uvguix.yunha +++ b/MDK-ARM/Steering Wheel_Infatry.uvguix.yunha @@ -20,12 +20,12 @@ 346 Code Coverage - 514 100 + 622 186 204 Performance Analyzer - 330 92 92 100 + 448 130 130 100 @@ -70,7 +70,7 @@ 466 Source Browser 500 - 166 + 300 @@ -93,8 +93,8 @@ 2 3 - -1 - -1 + -32000 + -32000 -1 @@ -110,8 +110,8 @@ 0 - 371 - 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000200000001000000010000004B443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C4D444B2D41524D5C737461727475705F73746D33326634303778782E730000000015737461727475705F73746D33326634303778782E7300000000C5D4F200FFFFFFFF3D443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000FFDC7800FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000B800000066000000A005000093020000 + 1435 + 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000D000000020000000100000046443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C7461736B5C636861737369735F6374726C2E63000000000E636861737369735F6374726C2E6300000000C5D4F200FFFFFFFF42443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6D6F64756C655C67696D62616C2E63000000000867696D62616C2E6300000000FFDC7800FFFFFFFF43443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6D6F64756C655C636861737369732E630000000009636861737369732E6300000000BECEA100FFFFFFFF43443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6D6F64756C655C636861737369732E680000000009636861737369732E6800000000F0A0A100FFFFFFFF42443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6D6F64756C655C636F6E6669672E630000000008636F6E6669672E6300000000BCA8E100FFFFFFFF44443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C7461736B5C737465705F6D6F746F722E63000000000C737465705F6D6F746F722E63000000009CC1B600FFFFFFFF4B443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C4D444B2D41524D5C737461727475705F73746D33326634303778782E730000000015737461727475705F73746D33326634303778782E7300000000F7B88600FFFFFFFF3D443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000D9ADC200FFFFFFFF43443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6D6F64756C655C636D645C636D642E630000000005636D642E6300000000A5C2D700FFFFFFFF44443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6465766963655C6D6F746F725F726D2E63000000000A6D6F746F725F726D2E6300000000B3A6BE00FFFFFFFF5D443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C4D6964646C6577617265735C54686972645F50617274795C4672656552544F535C536F757263655C7461736B732E6300000000077461736B732E6300000000EAD6A300FFFFFFFF41443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C6D6F64756C655C73686F6F742E63000000000773686F6F742E6300000000F6FA7D00FFFFFFFF44443A5C79756E68615C6769745F67696D62616C5C524D5C5374656572696E6720576865656C5F496E66617472795C557365725C7461736B5C73686F6F745F6374726C2E63000000000C73686F6F745F6374726C2E6300000000B5E99D00FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000EB00000066000000A005000083020000 @@ -150,11 +150,11 @@ 0 16 - 0300000066000000B100000063020000 + 0300000066000000E400000053020000 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -170,11 +170,11 @@ 0 16 - 0300000066000000B100000063020000 + 0300000066000000E400000053020000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -194,7 +194,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -214,7 +214,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -234,7 +234,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -254,7 +254,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -274,7 +274,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -294,7 +294,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -314,7 +314,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -334,7 +334,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -354,7 +354,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -374,7 +374,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -394,7 +394,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -414,7 +414,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -434,7 +434,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -450,11 +450,11 @@ 0 16 - 0300000066000000B100000063020000 + 0300000066000000E400000053020000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -470,11 +470,11 @@ 0 16 - 0300000066000000B100000063020000 + 0300000066000000E400000053020000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -490,11 +490,11 @@ 0 16 - 0000000094020000A00500002A030000 + 0000000084020000A00500002A030000 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -514,7 +514,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -530,11 +530,11 @@ 0 16 - 03000000970200009D05000011030000 + 03000000870200009D05000011030000 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -554,7 +554,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -574,7 +574,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -614,7 +614,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -634,7 +634,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -654,7 +654,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -674,7 +674,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -694,7 +694,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -714,7 +714,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -734,7 +734,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -754,7 +754,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -774,7 +774,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -794,7 +794,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -814,7 +814,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -834,7 +834,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -854,7 +854,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -874,7 +874,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -894,7 +894,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -914,7 +914,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -934,7 +934,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -954,7 +954,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -974,7 +974,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -994,7 +994,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1014,7 +1014,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1034,7 +1034,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1054,7 +1054,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1074,7 +1074,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1094,7 +1094,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1114,7 +1114,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1134,7 +1134,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1150,11 +1150,11 @@ 0 16 - 0300000066000000B100000063020000 + 0300000066000000E400000053020000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -1170,11 +1170,11 @@ 0 16 - 03000000970200009D05000011030000 + 03000000870200009D05000011030000 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -1190,11 +1190,11 @@ 0 16 - 03000000970200009D05000011030000 + 03000000870200009D05000011030000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -1214,7 +1214,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1234,7 +1234,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1250,11 +1250,11 @@ 0 16 - 03000000970200009D05000011030000 + 03000000870200009D05000011030000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -1270,11 +1270,11 @@ 0 16 - 03000000970200009D05000011030000 + 03000000870200009D05000011030000 16 - 3C000000530000001001000016020000 + 2200000039000000F6000000FC010000 @@ -1294,7 +1294,7 @@ 16 - 3C0000005300000050020000C3000000 + 220000003900000036020000A9000000 @@ -1314,7 +1314,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1334,7 +1334,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1354,7 +1354,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1374,7 +1374,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1394,7 +1394,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1414,7 +1414,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1434,7 +1434,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1454,7 +1454,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1474,7 +1474,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1494,7 +1494,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1514,7 +1514,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1534,7 +1534,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1554,7 +1554,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1574,7 +1574,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1594,7 +1594,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1614,7 +1614,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1634,7 +1634,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1654,7 +1654,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1674,7 +1674,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1694,7 +1694,7 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 @@ -1710,7 +1710,7 @@ 0 16 - 0000000000000000D10300001C000000 + 0300000000000000D40300001C000000 16 @@ -1794,19 +1794,19 @@ 16 - 3C00000053000000F0000000F8000000 + 2200000039000000D6000000DE000000 3312 - 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFB8000000BF00000028040000C3000000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000000000000B80000006600000028040000D6000000B80000004F00000028040000BF0000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF700300004F00000074030000AC010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000740300006600000028040000C3010000740300004F00000028040000AC01000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFB40000004F000000B80000007C020000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000B400000093020000000000004F000000B40000007C0200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000098010000280400009C01000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180008000000000000000000000B30100002804000037020000000000009C010000280400002002000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF140200009C010000180200002002000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000007C020000A005000080020000010000000100001004000000010000009EFDFFFF6E000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF01000077940000018000800000010000000000000097020000A0050000410300000000000080020000A00500002A0300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFB8000000BF00000028040000C3000000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000000000000B80000006600000028040000D6000000B80000004F00000028040000BF0000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF700300004F00000074030000AC010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000740300006600000028040000C3010000740300004F00000028040000AC01000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFE70000004F000000EB0000006C0200000100000002000010040000000100000077FFFFFF0C050000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000E700000083020000000000004F000000E70000006C0200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000098010000280400009C01000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180008000000000000000000000B30100002804000037020000000000009C010000280400002002000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF140200009C010000180200002002000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000006C020000A0050000700200000100000001000010040000000100000035FEFFFF05010000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF01000077940000018000800000010000000000000087020000A0050000410300000000000070020000A00500002A0300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File - 2970 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000001643414E5F4341505F5354415455535F4F46464C494E45960000000000000014001643414E5F4341505F5354415455535F4F46464C494E45175349474E414C5F524546455245455F5241575F524544590C4253505F554152545F524546114253505F554152545F5472616E736D6974145349474E414C5F445231365F5241575F5245445912434D445F47696D62616C4F75747075745F740F675F616461707465725F45543136730F434D445F557064617465496E70757410434D445F47657447696D62616C436D6411434D445F47657443686173736973436D640D434D445F445231365F496E697415434D445F23234E414D4523235F476574496E70757414434D445F416461707465725F52656769737465720F434D445F537769746368506F735F7408434D445F52435F740D4253505F554152545F445231360E436861737369735F4D6F64655F7405464443414E08667269635F72706D1353686F6F745F43616C7554617267657452504D0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 + 2965 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000E434841535349535F4D4F44455F74960000000000000013000E434841535349535F4D4F44455F740E576865656C5F4449525B695D2D3E0F5261646465725F4449525B695D2D3E0D576865656C5F4449525F6F75740E5261646465725F4449525F6F75740D54656C6573636F70655F6F757413726F746F72363032305F6A69657375616E5F3213726F746F72333530385F6A69657375616E5F3213726F746F72333530385F6A69657375616E5F3113726F746F72363032305F6A69657375616E5F3112726F746F72333530385F6A69657375616E321643414E5F4341505F5354415455535F4F46464C494E45175349474E414C5F524546455245455F5241575F524544590C4253505F554152545F524546114253505F554152545F5472616E736D6974145349474E414C5F445231365F5241575F5245445912434D445F47696D62616C4F75747075745F740F675F616461707465725F45543136730F434D445F557064617465496E70757400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 1423 @@ -1838,7 +1838,7 @@ Debug 2373 - 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 + 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 898 @@ -1871,11 +1871,11 @@ 0 16 - B80000004F00000028030000BF000000 + B80000004F000000EA030000BF000000 16 - B80000006600000028030000D6000000 + B800000066000000EA030000D6000000 @@ -1891,11 +1891,11 @@ 0 16 - 0300000066000000B100000054020000 + 0300000066000000B100000089020000 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -1911,11 +1911,11 @@ 0 16 - 0300000066000000B100000054020000 + 0300000066000000B100000089020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -1931,11 +1931,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -1951,11 +1951,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -1971,11 +1971,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -1991,11 +1991,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2015,7 +2015,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2031,11 +2031,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2051,11 +2051,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2071,11 +2071,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2091,11 +2091,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2111,11 +2111,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2131,11 +2131,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2151,11 +2151,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2171,11 +2171,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2191,11 +2191,11 @@ 0 16 - 0300000066000000B100000054020000 + 0300000066000000B100000089020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -2211,11 +2211,11 @@ 0 16 - 0300000066000000B100000054020000 + 0300000066000000B100000089020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -2231,11 +2231,11 @@ 0 16 - 030000005D0200009D05000011030000 + 03000000C70100002504000007020000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2251,11 +2251,11 @@ 0 16 - 0000000071020000280300002A030000 + 00000000A6020000EA0300002A030000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2271,11 +2271,11 @@ 0 16 - 030000005D0200009D05000011030000 + 03000000C70100002504000007020000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2291,11 +2291,11 @@ 0 16 - B80000006300000028030000BF000000 + B800000063000000EA030000BF000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2311,11 +2311,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2355,7 +2355,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2371,11 +2371,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2391,11 +2391,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2411,11 +2411,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2431,11 +2431,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2451,11 +2451,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2475,7 +2475,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2495,7 +2495,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2515,7 +2515,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2535,7 +2535,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2555,7 +2555,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2575,7 +2575,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2595,7 +2595,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2615,7 +2615,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2635,7 +2635,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2655,7 +2655,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2675,7 +2675,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2695,7 +2695,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2715,7 +2715,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2735,7 +2735,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2755,7 +2755,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2775,7 +2775,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2795,7 +2795,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2815,7 +2815,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2835,7 +2835,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2855,7 +2855,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2875,7 +2875,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -2891,11 +2891,11 @@ 0 16 - 0300000066000000B100000054020000 + 0300000066000000B100000089020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -2911,11 +2911,11 @@ 0 16 - 030000005D0200009D05000011030000 + 03000000C70100002504000007020000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -2931,11 +2931,11 @@ 0 16 - 030000005D0200009D05000011030000 + 03000000C70100002504000007020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -2951,11 +2951,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2971,11 +2971,11 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 @@ -2991,11 +2991,11 @@ 0 16 - 030000005D0200009D05000011030000 + 03000000C70100002504000007020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -3011,11 +3011,11 @@ 0 16 - 030000005D0200009D05000011030000 + 03000000C70100002504000007020000 16 - 2200000039000000F6000000FC010000 + BE000000D50000009201000098020000 @@ -3031,11 +3031,11 @@ 0 16 - BB0000006600000025030000A6000000 + BB00000066000000E7030000A6000000 16 - 220000003900000036020000A9000000 + BE000000D5000000D202000045010000 @@ -3055,7 +3055,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3075,7 +3075,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3095,7 +3095,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3115,7 +3115,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3135,7 +3135,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3155,7 +3155,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3175,7 +3175,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3195,7 +3195,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3215,7 +3215,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3235,7 +3235,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3255,7 +3255,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3275,7 +3275,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3295,7 +3295,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3315,7 +3315,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3335,7 +3335,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3355,7 +3355,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3375,7 +3375,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3395,7 +3395,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3415,7 +3415,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3435,7 +3435,7 @@ 16 - 2200000039000000D6000000DE000000 + BE000000D5000000720100007A010000 @@ -3511,7 +3511,7 @@ 2 16 - 000000001C0000006F02000038000000 + 010000001C0000007002000038000000 16 @@ -3531,23 +3531,23 @@ 0 16 - 2F030000660000009D05000011030000 + F1030000660000009D05000011030000 16 - E5030000C50100000D08000049020000 + 26040000D30100003606000057020000 - 3416 - 000000000C000000000000000020000001000000FFFFFFFFFFFFFFFFB8000000BF00000028030000C3000000010000000100001004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000001000000B80000006600000028030000D6000000B80000004F00000028030000BF0000000000000040280056080000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF700300004F00000074030000AC010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000740300006600000028040000C3010000740300004F00000028040000AC01000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFB40000004F000000B80000006D020000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000B400000084020000000000004F000000B40000006D0200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF000000006D0200002803000071020000010000000100001004000000010000005BFEFFFF5400000000000000000000000000000001000000C60000000000000001000000000000000000000001000000FFFFFFFFD002000071020000D40200002A03000000000000020000000400000000000000000000000000000000000000000000000000000001000000C600000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF0000000042020000A005000046020000000000000100000004000000010000009EFDFFFF6E000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF0100007794000001800080000000000000000000005D020000A0050000410300000000000046020000A00500002A0300000000000040820046060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000040000001000000FFFFFFFFFFFFFFFF280300004F0000002C0300002A03000001000000020000100400000001000000000000000000000000000000000000000000000001000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000018000400000010000002C03000066000000A0050000410300002C0300004F000000A00500002A03000000000000404100560F0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF0500000000000000000000000000000000000000000000000000000001000000FFFFFFFF8F07000001000000FFFFFFFF8F070000000000000000000000000000 + 3415 + 000000000C000000000000000020000001000000FFFFFFFFFFFFFFFFB8000000BF000000EA030000C3000000010000000100001004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000001000000B800000066000000EA030000D6000000B80000004F000000EA030000BF0000000000000040280056080000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF700300004F00000074030000AC010000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000740300006600000028040000C3010000740300004F00000028040000AC01000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFB40000004F000000B8000000A2020000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000B4000000B9020000000000004F000000B4000000A20200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF00000000A2020000EA030000A602000001000000010000100400000001000000000000000000000000000000000000000000000001000000C60000000000000001000000000000000000000001000000FFFFFFFFD0020000A6020000D40200002A03000000000000020000000400000000000000000000000000000000000000000000000000000001000000C600000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF00000000AC01000028040000B0010000000000000100000004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000000000000000000C7010000280400003702000000000000B001000028040000200200000000000040820046060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000040000001000000FFFFFFFFFFFFFFFFEA0300004F000000EE0300002A0300000100000002000010040000000100000029FDFFFF0602000000000000000000000000000001000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB09000001800040000001000000EE03000066000000A005000041030000EE0300004F000000A00500002A03000000000000404100560F0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF0500000000000000000000000000000000000000000000000000000001000000FFFFFFFF8F07000001000000FFFFFFFF8F070000000000000000000000000000 59392 File - 2970 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000001643414E5F4341505F5354415455535F4F46464C494E45960000000000000014001643414E5F4341505F5354415455535F4F46464C494E45175349474E414C5F524546455245455F5241575F524544590C4253505F554152545F524546114253505F554152545F5472616E736D6974145349474E414C5F445231365F5241575F5245445912434D445F47696D62616C4F75747075745F740F675F616461707465725F45543136730F434D445F557064617465496E70757410434D445F47657447696D62616C436D6411434D445F47657443686173736973436D640D434D445F445231365F496E697415434D445F23234E414D4523235F476574496E70757414434D445F416461707465725F52656769737465720F434D445F537769746368506F735F7408434D445F52435F740D4253505F554152545F445231360E436861737369735F4D6F64655F7405464443414E08667269635F72706D1353686F6F745F43616C7554617267657452504D0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000100150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 + 2965 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000E434841535349535F4D4F44455F74960000000000000013000E434841535349535F4D4F44455F740E576865656C5F4449525B695D2D3E0F5261646465725F4449525B695D2D3E0D576865656C5F4449525F6F75740E5261646465725F4449525F6F75740D54656C6573636F70655F6F757413726F746F72363032305F6A69657375616E5F3213726F746F72333530385F6A69657375616E5F3213726F746F72333530385F6A69657375616E5F3113726F746F72363032305F6A69657375616E5F3112726F746F72333530385F6A69657375616E321643414E5F4341505F5354415455535F4F46464C494E45175349474E414C5F524546455245455F5241575F524544590C4253505F554152545F524546114253505F554152545F5472616E736D6974145349474E414C5F445231365F5241575F5245445912434D445F47696D62616C4F75747075745F740F675F616461707465725F45543136730F434D445F557064617465496E70757400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000100150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 1423 @@ -3562,8 +3562,8 @@ 59399 Build - 972 - 00200000000000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000004001C0000000000000000000000000000000001000000010000000180D07F0000000004001D000000000000000000000000000000000100000001000000018030800000000004001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000004006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0000000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000004002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000400000000000000000000000000000000000001000000010000009600000003002050000000000672656D6F7465960000000000000001000672656D6F7465000000000180EB880000000004002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000400230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000004004E00000000000000000000000000000000010000000100000001807202000000000400530000000000000000000000000000000001000000010000000180BE010000000004005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 + 955 + 00200000000000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0100000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000000002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050FFFFFFFF00960000000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000000240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 583 @@ -3579,7 +3579,7 @@ Debug 2362 - 00200000010000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000004002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020001002D0000000000000000000000000000000001000000010000000180F07F0000020001002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020001002F0000000000000000000000000000000001000000010000000180BB8A00000200010030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000100310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F0100000200010032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000002000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 + 00200000010000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000004002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020001002D0000000000000000000000000000000001000000010000000180F07F0000020001002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020001002F0000000000000000000000000000000001000000010000000180BB8A00000200010030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000100310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800F0100000200010032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000002000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 898 @@ -3603,7 +3603,61 @@ 0 100 - 1 + 2 + + ..\User\task\chassis_ctrl.c + 21 + 32 + 46 + 1 + + 0 + + + ..\User\module\gimbal.c + 0 + 52 + 1 + 1 + + 0 + + + ..\User\module\chassis.c + 1 + 506 + 524 + 1 + + 0 + + + ..\User\module\chassis.h + 12 + 150 + 170 + 1 + + 0 + + + ..\User\module\config.c + 27 + 321 + 333 + 1 + + 0 + + + ..\User\task\step_motor.c + 2 + 33 + 50 + 1 + + 0 + startup_stm32f407xx.s 0 @@ -3616,12 +3670,57 @@ ../Core/Src/main.c 0 - 68 + 67 73 1 0 + + ..\User\module\cmd\cmd.c + 84 + 13 + 24 + 1 + + 0 + + + ..\User\device\motor_rm.c + 5 + 216 + 238 + 1 + + 0 + + + ../Middlewares/Third_Party/FreeRTOS/Source/tasks.c + 7 + 3426 + 3433 + 1 + + 0 + + + ..\User\module\shoot.c + 0 + 1 + 1 + 1 + + 0 + + + ..\User\task\shoot_ctrl.c + 0 + 1 + 1 + 1 + + 0 + diff --git a/MDK-ARM/Steering Wheel_Infatry.uvoptx b/MDK-ARM/Steering Wheel_Infatry.uvoptx index 597f40a..4e339eb 100644 --- a/MDK-ARM/Steering Wheel_Infatry.uvoptx +++ b/MDK-ARM/Steering Wheel_Infatry.uvoptx @@ -120,11 +120,12 @@ 0 DLGUARM + 榶?p 0 JL2CM3 - -U20760100 -O78 -S2 -ZTIFSpeedSel5000 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO7 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_1024.FLM -FS08000000 -FL0100000 -FP0($$Device:STM32F407IGHx$CMSIS\Flash\STM32F4xx_1024.FLM) + -U20760100 -O78 -S2 -ZTIFSpeedSel5000 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_1024.FLM -FS08000000 -FL0100000 -FP0($$Device:STM32F407IGHx$CMSIS\Flash\STM32F4xx_1024.FLM) 0 @@ -239,6 +240,11 @@ 1 shoot + + 16 + 1 + cmd_et16s1 + 0 @@ -1142,7 +1148,7 @@ device - 0 + 1 0 0 0 diff --git a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.axf b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.axf index 9ded83e..d5557e1 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.axf and b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.axf differ diff --git a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.build_log.htm b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.build_log.htm index 30c855d..765a83f 100644 --- a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.build_log.htm +++ b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.build_log.htm @@ -22,7 +22,7 @@ Dialog DLL: TCM.DLL V1.48.0.0

Project:

D:\yunha\git_gimbal\RM\Steering Wheel_Infatry\MDK-ARM\Steering Wheel_Infatry.uvprojx -Project File Date: 01/28/2026 +Project File Date: 02/07/2026

Output:

*** Using Compiler 'V6.16', folder: 'D:\Keil_v5\ARM\ARMCLANG\Bin' diff --git a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.hex b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.hex index 955f81d..6eeb66e 100644 --- a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.hex +++ b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.hex @@ -1,33 +1,33 @@ :020000040800F2 -:10000000A8EF0120B10200081D840008A5710008B6 -:100010008D8200087D2A000899A8000800000000D1 -:10002000000000000000000000000000118B00082C -:10003000293400080000000091860008E5970008B8 -:10004000CB020008CB020008CB020008CB0200085C -:10005000CB020008CB02000861370008CB02000881 -:10006000CB0200086D37000879370008CB02000882 -:10007000C1320008CB020008CB020008CB02000806 -:10008000CB020008CB020008CB020008A12A00081E -:10009000812A0008912A0008CB0200088537000851 -:1000A000CB020008B1980008CB020008CB02000880 -:1000B000CB020008CB020008CB020008CB020008EC -:1000C000CB020008CB020008CB020008CB020008DC -:1000D000CB02000851A80008CB02000869A800085C -:1000E000CB020008CB020008CB020008CB020008BC -:1000F000CB020008CB020008CB020008CB020008AC -:10010000CB020008CB020008CB020008CB0200089B -:10011000CB020008CB020008CB020008CB0200088B -:10012000CB020008D1320008E1320008F1320008A9 -:10013000CB020008CB020008CB020008D12A00083D -:10014000B12A0008C12A0008CB020008CB0200082F -:10015000CB02000801330008CB02000881A8000888 -:10016000CB020008CB020008CB020008CB0200083B -:10017000CB020008CB020008CB0200080000000000 -:10018000CB020008CB02000800F002F800F080F873 +:1000000000EF0120B5020008A98F0008417D00081B +:100010003D8E0008A92A0008F1AA0008000000008F +:1000200000000000000000000000000091960008A1 +:10003000813F00080000000011920008459A000866 +:10004000CF020008CF020008CF020008CF0200084C +:10005000CF020008CF020008B9420008CF02000812 +:10006000CF020008C5420008D1420008CF020008B4 +:10007000193E0008CF020008CF020008CF02000896 +:10008000CF020008CF020008CF020008CD2A0008E6 +:10009000AD2A0008BD2A0008CF020008DD42000892 +:1000A000119B0008CF020008CF020008CF02000811 +:1000B000CF020008CF020008CF020008CF020008DC +:1000C000CF020008CF020008CF020008CF020008CC +:1000D000CF020008A9AA0008CF020008C1AA0008A0 +:1000E000CF020008CF020008CF020008CF020008AC +:1000F000CF020008CF020008CF020008CF0200089C +:10010000CF020008CF020008CF020008CF0200088B +:10011000CF020008CF020008CF020008CF0200087B +:10012000CF020008293E0008393E0008493E000879 +:10013000CF020008CF020008CF020008FD2A000805 +:10014000DD2A0008ED2A0008CF020008CF020008CF +:10015000CF020008593E0008CF020008D9AA0008C3 +:10016000CF020008CF020008CF020008CF0200082B +:10017000CF020008CF020008CF02000800000000F4 +:10018000CF020008CF02000800F002F800F082F869 :100190000AA090E8000C82448344AAF10107DA45E2 -:1001A00001D100F075F8AFF2090EBAE80F0013F0B4 -:1001B000010F18BFFB1A43F001031847A800010004 -:1001C000E80001000A444FF0000C10F8013B13F066 +:1001A00001D100F077F8AFF2090EBAE80F0013F0B2 +:1001B000010F18BFFB1A43F001031847500A010052 +:1001C000900A01000A444FF0000C10F8013B13F0B4 :1001D000070408BF10F8014B1D1108BF10F8015BA0 :1001E000641E05D010F8016B641E01F8016BF9D193 :1001F00013F0080F1EBF10F8014BAD1C0C1B09D1EA @@ -36,4137 +36,4293 @@ :10022000103A24BF78C878C1FAD8520724BF30C822 :1002300030C144BF04680C607047000000230024F4 :1002400000250026103A28BF78C1FBD8520728BFE6 -:1002500030C148BF0B60704766290FF09285752941 -:1002600000F01A81632900F04485732900F0498564 -:10027000002070471FB50FF072FD00F047FD04002D -:10028000002000210EF052FFE0601FBD10B510BD30 -:1002900000F040FE1146FFF7EDFF0AF0D9FD00F037 -:1002A0005EFE03B4FFF7F2FF03BC00F09FFE000008 -:1002B0000948804709480047FEE7FEE7FEE7FEE7FA -:1002C000FEE7FEE7FEE7FEE7FEE7FEE70448054936 -:1002D000054A064B704700009D98000889010008F8 -:1002E000A8AA0120A8EF0120A8AF0120A8E70120BB -:1002F00053EA020C00F069802DE9F04B4FF0000644 -:10030000002B1FBFB3FA83F503FA05F424FA05F6B0 -:100310005E4012BF1643B2FA82F502FA05F4C5F147 -:1003200020051EBF22FA05FC44EA0C04203556EADB -:10033000044C4FEA144418BF641C4FF000084FF0FF -:100340000009904271EB030C39D3002919BFB1FAAF -:1003500081F701FA07F6B0FA80F700FA07F6C7F15D -:1003600020071EBF20FA07FC46EA0C062037B6FB22 -:10037000F4FCA7EB0507103F07F01F0BCBF120069D -:100380002CFA06F60CFA0BFB44BFB3460026202FCE -:10039000A4BF5E464FF0000B5BEA060C08BF4FF0AF -:1003A000010B19EB0B0948EB0608ABFB027C06FBC3 -:1003B00002CC0BFB03CCC01B71EB0C01C1E70B465D -:1003C000024641464846BDE8F08B13B5084318BFC6 -:1003D0004FF0FF300146AFF30080BDE81C4070478E -:1003E0000FB41CB5084B06AA7B44694600900598DB -:1003F00000F055FC04460020694600F063FC2046EE -:100400001CBC5DF814FB0000D90800000FB47CB5DB -:100410000C0009AA009001D02044401E084B7B44E8 -:1004200069460190089800F03AFC05461CB100208E -:10043000694600F047FC28467CBC5DF814FB0000D0 -:10044000AD08000070B50C460546012A05D0287895 -:10045000800600D5EA69002302E0012305E05B1C69 -:10046000934202D2E05C0028F9D1A869E618C01ACC -:10047000A861286A184428622846AFF3008004E087 -:10048000D5E9012114F8010B9047B442F8D328466E -:10049000AFF3008070BD00002DE9F0410646002456 -:1004A00010687529314616A510D0AFF300800028DA -:1004B00002DA404213A507E031688A0701D512A588 -:1004C00002E0490704D511A5012401E0AFF3008043 -:1004D00000210A2206F1240709E0B0FBF2FCB0FB80 -:1004E000F2F302FB1C00303078541846491C0028F7 -:1004F000F3D123462A463046BDE8F04100F062B908 -:10050000000000002D0000002B0000002000000073 -:100510002DE9F0474FF0000A89460446C0F820A0B4 -:100520002046E1688847002876D0252806D0D4E9FF -:1005300001219047206A401C2062F1E7E1682046D3 -:1005400000258847C4F81CA006460027C4F818A058 -:100550002A2E09D030460EF0AFFD38B304EB8708E1 -:10056000303EC8F8186019E059F8041B204604EB27 -:1005700087029161E1688847012F064618D1E0693A -:10058000002820DA25F020051DE0D8F8180000EB3F -:10059000800006EB40003038C8F818002046E168BB -:1005A000884706460EF088FD0028EED1012F0AD0BC -:1005B0002E2E08D12046E16888477F1C0646022F70 -:1005C00045F02005C4DBA069002803DA404245F06D -:1005D0000105A061E80701D025F01005B6B1A6F12C -:1005E0004100192802D8203645F400654A463146B4 -:1005F000204625604D46FFF72FFE58B1012806D052 -:10060000ED1D25F0070000F1080989E704E005F178 -:10061000040985E730468AE7206ABDE8F08710B50F -:10062000431C02E010F8011B71B18107FAD14FF0B1 -:10063000013202C88C1A8C4314EAC211F9D0C01AD4 -:100640000A0603D0C01E10BDC01A10BD0A0401D096 -:10065000801E10BD0902FCD0401E10BD032A40F2CE -:10066000308010F0030C00F0158011F8013BBCF154 -:10067000020F624498BF11F801CB00F8013B38BF6C -:1006800011F8013BA2F1040298BF00F801CB38BF7A -:1006900000F8013B11F0030300F02580083AC0F098 -:1006A000088051F8043B083A51F804CBA0E8081040 -:1006B000F5E7121D5CBF51F8043B40F8043BAFF373 -:1006C0000080D20724BF11F8013B11F801CB48BFCD -:1006D00011F8012B24BF00F8013B00F801CB48BF03 -:1006E00000F8012B704710B5203AC0F00B80B1E83C -:1006F0001850A0E81850B1E81850A0E81850203A57 -:10070000BFF4F5AF5FEA027C24BFB1E81850A0E85F -:10071000185044BF18C918C0BDE810405FEA827C79 -:1007200024BF51F8043B40F8043B08BF7047D20790 -:1007300028BF31F8023B48BF11F8012B28BF20F831 -:10074000023B48BF00F8012B704702F0FF0343EA69 -:10075000032242EA024200F002B84FF0000200B564 -:10076000134694469646203922BFA0E80C50A0E8D4 -:100770000C50B1F12001BFF4F7AF090728BFA0E882 -:100780000C5048BF0CC05DF804EB890028BF40F84E -:10079000042B08BF704748BF20F8022B11F0804F90 -:1007A00018BF00F8012B704770477047704710B5AD -:1007B00000F0B0FA006810BD10B5044600F0AAFAC7 -:1007C000046010BD2DE9F0470D4699469246044657 -:1007D00000F124080168880604D5E06921F01001C1 -:1007E000216000E00120A84201DD471B00E0002756 -:1007F000A1697A1902EB0900081AA0612078C006E5 -:1008000002D42046AFF30080002608E0D4E901219D -:100810001AF806009047206A401C761C20624E455C -:10082000F4DB2078C0060AD52046AFF3008006E04E -:10083000D4E9012130209047206A401C2062381EF4 -:10084000A7F10107F4DC07E0D4E9012118F805005D -:100850009047206A401C2062281EA5F10105F3DCA8 -:100860002046AFF300802078000602D50220BDE8C4 -:10087000F0870120FBE72DE9FF4F0C461E464FF0A5 -:10088000FF378BB0D2E90001DDF860800A908A461C -:10089000C1F30A5505B93D46002108464FF0000056 -:1008A000BAF1000F00F4400005DA00EB80004FF4CD -:1008B000400101EA50004FEA9059B9F1010F00DD03 -:1008C000B9460A9850EA4A000ED044F61050A5F2F4 -:1008D000FF3545432F14B8F1000F1ED07542291E75 -:1008E0001EDDC9F100021CE0B8F1010F4FF000005D -:1008F00001D0302103E0F24305E02154401CB04216 -:10090000FBDB30460022002121540B99C1F80880FE -:10091000C1E900200FB0BDE8F08FBD1B6D1CDEE704 -:100920004A4600DA694206A800F07EFA06AB93E870 -:10093000070003AB83E8070050460A990DF052F90F -:100940008DE80700A0F500501F3800900398002D97 -:100950000ADD42F21F014A460844002303A903901E -:1009600068460DF0BBFB09E0A0F500504A461F3871 -:10097000002303A9039068460DF0C5FB8DE807002E -:100980000004000C03D04FF0FF30410800E0104697 -:10099000B8F1000F03D00022009215461EE0751E2C -:1009A00005D400F0BBF9303262556D1EF9D5B3465F -:1009B0000122084302D000227F1C04E02078302866 -:1009C00001D100227F1E002A099784D01DE0112D3D -:1009D00007DA00F0A3F9303262556D1C50EA0102CB -:1009E000F5D1084302D00098C8B10EE00021681E7E -:1009F00005E0235C625C63542254401E491C814222 -:100A0000F7DBAB46A81B401E0990002004F80B0042 -:100A10000B98099AC0F80880C0E9002B7AE71126E4 -:100A20004FF0000857E72DE9F04F88460446D21DE5 -:100A300022F0070191B0D1E90001CDE90A010DF0E2 -:100A400099FC02460B98C00F01D02D2007E02068CA -:100A5000810701D52B2002E0202101EAC000032AF2 -:100A6000099001D0072A05DB03464146204600F0E5 -:100A70009BF90BE12078800601D5E06900E00620B3 -:100A8000B8F1650F814606D0B8F1660F18D0B8F1FD -:100A9000670F70D131E00020B9F1110F009001DB38 -:100AA000112301E009F101030AAA01A90CA8FFF72B -:100AB000E2FEDDE90C70002609F10105834647E0FE -:100AC00001204B4600904FF000470AAA01A90CA84C -:100AD000FFF7D1FEDDE90DB00C995D46002610B997 -:100AE00009F101000D18B9EB050003D4C0F1FF3680 -:100AF00009F10105A5EB09002BE0B9F1010F01DABD -:100B00004FF001090020B9F1110F0090484601DDB6 -:100B1000112300E003460AAA01A90CA8FFF7ABFEC7 -:100B2000DDE90C704D4600268346207800070AD484 -:100B3000AB4500DA5D4601A8012D04DD411911F82D -:100B4000011C302907D04F4502DA17F1040F04DAEF -:100B5000012082460FE06D1EEEE7002F02DCED1B48 -:100B60003E4403E0781CA84200DD7D1CB81B00F168 -:100B7000010A4FF000472078000703D4AA4501DBA3 -:100B80004FF0FF3A0021B7F1004F0DF143088DF807 -:100B9000431024D002202B23002F01DA7F422D2383 -:100BA0000A21021EA0F1010000DC5FB197FBF1FCFD -:100BB00097FBF1F201FB1C7C17460CF1300C08F896 -:100BC00001CDEEE7A8F1010003702188090501D5E8 -:100BD000452100E06521A0F1010800F8011C0998F9 -:100BE0000FA9A1EB0807FF1D00B10120411901EB7E -:100BF000EA70A1693844081A401EA0612078C00636 -:100C000002D42046AFF30080099828B1D4E901212D -:100C10009047206A401C20622078C00622D52046DA -:100C2000AFF300801EE0002E04DBB34502DD01A817 -:100C3000805D00E03020D4E901219047206A401C0B -:100C40002062761CAAF101005FEA000A0AD100F0D6 -:100C50005DF8C0680168405CD4E901219047206AD2 -:100C6000401C2062281EA5F10105DCDC07E0D4E968 -:100C7000012118F8010B9047206A401C2062381EA1 -:100C8000A7F10107F3DC2046AFF30080032011B089 -:100C900041E6000001694A1C02610878704700B50E -:100CA0008FB0CDE901310021059105497944CDE9A5 -:100CB000031011466846FFF72BFC0FB000BD000083 -:100CC000E5FFFFFF0A6802F8010B0A607047D1E9EF -:100CD00000239A4202D2531C0B601070704710B56B -:100CE000436913B1AFF3008001E0FFF7ABFB0120D4 -:100CF00010BD127800F124010A7000224A7001220E -:100D0000EDE711684FF0FF32E9E700000048704757 -:100D1000C8C4012000487047A8C4012030B5B0F114 -:100D20000A0271F100034FEA900E4EEA817EB0EBA9 -:100D30000E0061EB91014FEA101E4EEA017E10EBAE -:100D40000E0041EB11114FEA102E4EEA016E10EB2E -:100D50000E0041EB11214FEA104E4EEA014E10EB0E -:100D60000E0041EB1141401841F100014FEAD00063 -:100D700040EA41704FEAD1014FEA810444EA90749D -:100D800010EB800544EB01046D1944EB0404521B85 -:100D9000A3414FF0000348BF0A3200D530BD401CCC -:100DA00041F1000130BD00002DE9F0411F4604462D -:100DB00003260168072A01F4006004DB08B116A5C8 -:100DC00005E016A503E008B115A500E015A521F082 -:100DD00010002060A069C01EA0610FB1401EA0617C -:100DE0002046AFF300804FB1D4E901213846904747 -:100DF000206A401C2062C01C206206E0206AFAE7DC -:100E0000D4E9012115F8010B9047761EF8D220464F -:100E1000AFF30080BDE8F0814E414E006E616E0080 -:100E2000494E4600696E66002DE9F0478146164638 -:100E30008AB0354878440DC88DE80D0032487844B2 -:100E4000801C03AC0DC884E80D0041F69B300844BB -:100E5000372190FBF1F290FBF1F5A5F1800501FB44 -:100E600012041B3C02D56442012000E00020DFF8A0 -:100E700098A080460027FA44AAF1BE0A0EE0E007D7 -:100E80000AD03246684607EB470101230AEB81018D -:100E90000DF039F98DE8070064107F1C002CEED1AD -:100EA000194F7F44AE3F19E0E80715D007EB041057 -:100EB0000DF1180A90E80E008AE80E00C068F042B2 -:100EC00001D1981908903246012306A903A80DF014 -:100ED0001AF903AB83E807006D10641C002DE3D101 -:100EE0004FF0010332466946B8F1000F03A802D063 -:100EF0000DF0F4F801E00DF006F9C9E90001C9F8B8 -:100F000008200AB0BDE8F0878CF000000048704768 -:100F1000A8C401207546FFF7F9FFAE4605006946F3 -:100F2000534620F00700854618B020B5FFF7CEF9EC -:100F3000BDE820404FF000064FF000074FF00008DA -:100F40004FF0000BAC46ACE8C009ACE8C009ACE817 -:100F5000C009ACE8C00921F007018D46704710B503 -:100F60000446AFF300802046BDE81040FFF799B972 -:100F700030B44FF0013C50F8042B51F8043BCCFA4C -:100F800052F4D51A20D1FCB950F8042B51F8043B87 -:100F9000CCFA52F4D51A17D1B4B950F8042B51F841 -:100FA000043BCCFA52F4D51A0ED16CB950F8042B8C -:100FB00051F8043BCCFA52F4D51A05D1002CDAD002 -:100FC00030BC4FF00000704729BAB1FA81F111F03E -:100FD0001801D1F120008440F2D1CA40CB4012F078 -:100FE000FF0213F0FF0330BCD01A704701491820EC -:100FF000ABBEFEE72600020070470000B0B52DED45 -:10100000028B044600284FF0FF0061D00D460029F6 -:101010005ED095ED000A95ED011A95ED022A95ED49 -:10102000033A20EE010A22EE033A21EE011A22EEE3 -:10103000022A31EE021A30EE030A31EE011AB7EE3F -:10104000008A30EE000A78EE410A0DF0C1FCB0EEE5 -:10105000401A95ED000A95ED012A95ED023A95EDBD -:10106000034A20EE030A24EE022A30EE420A30EE52 -:10107000000AB0EEC02AB4EE482AF1EE10FA84ED70 -:10108000011A02DA0DF0A2F901E009F06FFE84ED19 -:10109000020A95ED000A95ED011A95ED032A95EDEA -:1010A000023A20EE020A21EE031A30EE010A23EE84 -:1010B000031A22EE022A32EE011A31EE011A30EE44 -:1010C000000A78EE410A0DF083FC002084ED000A4E -:1010D00040B2BDEC028BB0BD70B52DED028B002887 -:1010E0004FD0B7EE001A81EE000A0D4604464FF0CD -:1010F0007E51002D80ED040A4FF00000C4E900107D -:10110000A060E06000F09F80D5E900600EF05CFD1B -:1011100041EC180B30460EF057FD41EC110BB0EED0 -:10112000480AF0EE680A0DF053FB51EC100B0EF07C -:101130001FF895ED000AB5EE400AF1EE10FA22D143 -:1011400095ED010AB5EE400AF1EE10FA1BD195EDCE -:10115000020AB5EE400AF1EE10FA14D140F2C56071 -:10116000C3F64D7044F62D214AF2564244F2AD7357 -:10117000C3F60D41CBF63932C3F619730FC4002004 -:1011800061E0FF205FE09FED321A00EE100AB4EE3E -:10119000410AF1EE10FA1EDCB5EE400AF1EE10FA4B -:1011A00019DB9FED2C2AB4EE420AF1EE10FA25DC91 -:1011B000B4EE410AF1EE10FA20DB9FED271AB4EEEF -:1011C000410AF1EE10FA2CDCB4EE420AF1EE10FA0C -:1011D00027DB002037E045F66E10C3F67F7045F23E -:1011E0000C3148F6AB0249F28553C3F6B011CBF689 -:1011F000BB32C3F697530FC4002024E040F2C56011 -:10120000C3F64D7044F62D214AF2564244F2AD73B6 -:10121000C3F60D41CBF63932C3F619730FC4002063 -:1012200011E040F2C560C3F64D7044F62D214AF23C -:10123000564244F2AD73C3F60D41CBF63932C3F6D4 -:1012400019730FC4002040B2BDEC028B70BD00BF0B -:10125000DB0FC9BFDB0F49C00000B4C20021C0E9E9 -:101260000011816070470000B0B52DED108B8EB07D -:10127000044600284FF0FF0018BF002904D140B2F7 -:101280000EB0BDEC108BB0BD002AF8D040F21005B6 -:101290004EF69E70C2F20005C3F627502860C3B117 -:1012A00093ED00EA93ED01FAD3ED028AB5EE40EA40 -:1012B000F1EE10FA11D1B5EE40FAF1EE10FA0CD1C0 -:1012C000F5EE408AF1EE10FA07D1204600F094FACC -:1012D000D5E7204600F090FAD1E792ED000A92EDB2 -:1012E000011A94ED014A94ED025A92ED022A94ED0E -:1012F000036A94ED003A24EE407A61EE050A37EE77 -:10130000607A62EE060A37EE607A60EE030A62EEF9 -:10131000051A71EEA00A61EE061A70EEE10A61EE9E -:10132000031A62EE042A22EE032A21EE041A91ED3A -:1013300000DA71EEE21A20EE066A31EE021A20EEB1 -:10134000050A36EE216AD1ED019AD1ED02AA31EEFD -:10135000400AB6EE001AB5EE40DA27EE015A60EE0A -:10136000810A26EE017AF1EE10FA20EE016A0AD126 -:10137000F5EE409AF1EE10FA05D1F5EE40AAF1EE45 -:1013800010FA00F0EC812DEE0D0A29EEA91A30EECC -:10139000010A2AEEAA1A30EE010A8DED0D6A8DEDD2 -:1013A0000C7ACDED0B0A8DED0A5A05F0FDFE2DEEFF -:1013B000001A8DED071A29EE801A2AEE800A8DEDAB -:1013C000081A8DED090A2EEE0E0A2FEE0F1A30EED6 -:1013D000010A28EEA81A30EE010A05F0E5FE94EDA8 -:1013E000001A6EEE00DA6FEE00AA94ED034A31EEB9 -:1013F00001EA68EE808A94ED012A94ED023A2AEE21 -:101400008E6A61EE01EA8DED026A28EE8E0A2DEEFB -:10141000AE5A26EE046A62EE02BA35EE465A20EE65 -:10142000036A36EE055A2DEEAB6A32EE02FA36EE5C -:10143000055A2AEE8F6A23EE066A36EE055A28EE22 -:101440008F6A26EE046A63EE03FA36EE055A2DEE35 -:10145000AF6A24EE048A35EE465A2DEE886A2DEEE8 -:101460008E9A35EE465A29EE046A2AEEAE7A37EEA7 -:10147000066A22EE000A2DEE8FAA36EE400A23EE0F -:101480000A6A36EE000A2AEEAB6A30EE460A2AEE07 -:10149000AF6A73EE039A36EE000A28EEA96A24EECC -:1014A000066A36EE000A2AEE886A30EE460A25EE13 -:1014B000055A20EE000A35EE000A21EE02BA21EEAE -:1014C000035A21EE041A8DED051A22EE031A8DED52 -:1014D000031A23EE041A8DED041A34EE041A8DED6E -:1014E000015A22EE04CA6EEE03CA8DED061A29EEE9 -:1014F00084DA05F059FE94ED013A94ED022A9DED4F -:10150000021A29EE024A21EE031A31EE444A94ED02 -:10151000031A28EEAE5A35EE044A2AEE015A35EE89 -:10152000044A28EEAB5AF7EE001A34EE454A2AEE8A -:10153000A95A81EE800A25EE015A35EE044A28EEBA -:10154000AF5A34EE454A28EE885A75EE042A3CEE2E -:101550000C4A9DED075A34EE6C4A34EE454A3BEE98 -:101560000B5A9DED086A35EE0D5A35EE465A2FEEB0 -:10157000056A29EE847AF6EE007A76EE470A37EEAF -:10158000EF6A36EE486A9DED018A20EE066A3CEE6F -:10159000487A27EE227A36EE076A36EE6D7A22EE28 -:1015A000226A66EE073A70EEE33ADDED050ADDEDFC -:1015B000034A60EE015A74EEE00ADDED044A60EE83 -:1015C000200A7BEE244A64EEA24A70EEA40A63EE7F -:1015D000224A70EEEA0A74EEE56A66EEA06A77EED9 -:1015E000EB7A76EEA33A78EE0C6A77EEEF7A60EE5D -:1015F000266A67EEA27A76EEA76A76EEE86A60EE71 -:10160000027ADDED068A27EEA68A38EE23CA68EE56 -:10161000843A2EEE058A78EE233A3BEEAB8A71EEE1 -:10162000C81A3FEEAF8A71EEC81A9DED098A21EE05 -:1016300022AA71EEC81AB1EE008A23EE089A21EEB2 -:10164000899A73EEC93A94ED009A2AEE07BA73EEBE -:101650008B3A29EE22BA77EE8B7A67EEA07A72EE99 -:10166000A22A77EEA33A63EE227A75EEE75A65EE88 -:10167000A65A35EEA3DA68EE853A6EEE045A73EE9A -:10168000E53A62EE085A65EEA11A73EEE11AF8EE39 -:10169000003A60EE233A62EE235A75EECB5A65EEBD -:1016A000875A20EE033A71EEA51A73EE0A5A20EE1D -:1016B000090A22EE222A65EEA05A30EE422A75EE81 -:1016C000A11A22EE262A23EE811A32EE218A2FEE6B -:1016D000042A29EE854A31EE241A34EE022A21EE3C -:1016E000071A36EE400A32EE011A20EE200A30EEDA -:1016F000010A23EE261A31EE009A2CEE0C0A2DEE8A -:101700000D1A30EE010A28EE081A31EE000A29EE11 -:10171000091A31EE000A05F047FD95ED004A9DEDEE -:101720000A5A20EE0C1ADDED0B0A20EE0D2A24EEEB -:10173000011A9DED0C7A9DED0D6A20EE083A20EE1F -:10174000090A35EE415A24EE021A70EEC10A24EE5F -:10175000031A24EE000A37EE417A36EE406A94ED21 -:10176000043A94ED000A94ED011A25EE035A94ED23 -:10177000022A30EE050A20EE835A94ED034A35EE34 -:10178000011A27EE035A35EE022A26EE033A84EDBB -:10179000000A84ED011A20EE000A21EE011A33EE50 -:1017A000043A30EE010A22EE021A30EE010A23EE6C -:1017B000031A30EE010A84ED022A84ED033A05F0A3 -:1017C000F3FC94ED001A94ED012A94ED023A94EDA5 -:1017D000034A20EE011A20EE022A20EE033A20EE00 -:1017E000040A002084ED001A84ED012A84ED023AF7 -:1017F00084ED030A43E50000B0B52DED108B0446DF -:1018000000284FF0FF0018BF002900F06981002A6E -:1018100000F0668140F2100542F60230C2F2000587 -:10182000C3F60750286092ED000A92ED011A94ED7C -:10183000014A94ED025A92ED022A94ED036A94ED66 -:10184000003A24EE407A61EE050A37EE607A62EEE5 -:10185000060A37EE607A60EE030A62EE051A71EE50 -:10186000A00A61EE061A70EEE10A61EE031A62EE5A -:10187000042A22EE032A21EE041A91ED00CA71EE29 -:10188000E21A20EE066A31EE021A20EE050A36EE62 -:10189000216A91ED01DA91ED02EA31EE400AB6EEED -:1018A000001AB5EE40CA27EE01BA20EE81AA26EE54 -:1018B000019AF1EE10FA20EE018A0AD1B5EE40DA73 -:1018C000F1EE10FA05D1B5EE40EAF1EE10FA00F0B3 -:1018D000BC802CEE0C0A2DEE0D1A30EE010A2EEE15 -:1018E0000E1A30EE010A05F05FFC94ED003A94ED1B -:1018F000025AF1EE001A2CEE001A94ED014A75EE30 -:10190000050A63EE212A65EE053A62EEA34A61EE0E -:10191000205A74EEA54A64EE045A2DEE002A94ED86 -:10192000036A34EE047A62EEA52A72EEA42A62EE0D -:10193000074A32EEE4CA76EE062A64EE214A66EEE3 -:10194000066A64EEA67A21EE22DA77EECD7A23EEED -:1019500003DA2DEE21DA2EEE000A24EE0DEA33EE44 -:10196000033A7EEE277A22EE03EA77EECE7AB2EEE3 -:1019700000EA24EE0E4A77EEE47A24EE25FA7FEEB2 -:10198000277A24EE234A34EE274A60EE244A34EEC6 -:1019900084FA2DEE054A21EE033A33EE043A25EEA1 -:1019A0000E4A25EE215A65EE264A33EE243A62EEBF -:1019B000222A33EE623A33EE453A65EE842A32EE5D -:1019C000833A24EE234A34EE033A20EE050A30EE41 -:1019D00003DA21EE070A25EEA11A21EE061A31EEEE -:1019E000400A23EEA11A26EE011A30EE010A22EE79 -:1019F000201A30EE41EA2CEE0C0A2FEE0F1A30EED0 -:101A0000010A2DEE0D1A31EE000A2EEE0E1A31EEFD -:101A1000000A05F0C9FB95ED004A20EE0C1A20EEF5 -:101A20000F2A24EE011A20EE0D3A20EE0E0A3BEEAC -:101A300041BA24EE021A3AEE41AA24EE031A24EE29 -:101A4000000A39EE419A38EE408A94ED043A94ED5A -:101A5000000A94ED011A2BEE035A94ED022A30EE9F -:101A6000050A2AEE035A94ED034A35EE011A29EECF -:101A7000035A35EE022A28EE033A84ED000A84ED7B -:101A8000011A20EE000A21EE011A33EE043A30EE7C -:101A9000010A22EE021A30EE010A23EE031A30EE9A -:101AA000010A84ED022A84ED033A05F07DFB94EDF2 -:101AB000001A94ED012A94ED023A94ED034A20EEC7 -:101AC000011A20EE022A20EE033A20EE040A00203A -:101AD00084ED001A84ED012A84ED023A84ED030AB4 -:101AE00040B2BDEC108BB0BDB1EE601AB4EE600A2E -:101AF000F1EE10FAB4EE401AC8BFB0EE600AF1EE93 -:101B000010FAC8BFB0EE410A7047000080B54DF62C -:101B10007840C2F201000068082109F035FC80BD60 -:101B200080B54CF29C52C2F2010200201221132314 -:101B300000F086F9002080BD80B5022001214FF021 -:101B4000FF3209F061FC80BD9FED010A704700BFC4 -:101B50000000C84380B54DF67840C2F2010000682D -:101B6000102109F011FC80BD80B54CF29C50C2F2EE -:101B70000100C21D01200221062300F061F90020AE -:101B800080BD000080B5042001214FF0FF3209F034 -:101B90003BFC80BDF0B581B000284FF0FE0700F09F -:101BA00097800C46002900F0938040F2DC46C2F298 -:101BB00000060546307808B1FD2789E009F082FC6F -:101BC0004DF67841C2F20101002808607BD0002068 -:101BD0007E21B622EC6200F08FF901201421B6229A -:101BE00000F08AF91E2000F08DFE00201E2100F07A -:101BF0004DF90020002100F049F91E2865D101208F -:101C00000021012400F042F90F2860D1062000F0E5 -:101C10004FFD072000F04CFD41F6F152C0F60002E6 -:101C200000200121002700F043FE41F60D31C0F6EF -:101C30000001062000F086FD41F65531C0F6000196 -:101C4000072000F07FFD00204021AA2200F054F977 -:101C500000204121012200F04FF9002053210822E9 -:101C600000F04AF900205821042200F045F9002034 -:101C70007D21042200F040F9322000F043FE0120D3 -:101C80000F21012200F038F901201021032200F079 -:101C900033F901201621002200F02EF9012018212D -:101CA000012200F029F901201521802200F024F9F9 -:101CB0000A2000F027FE0620347000F013FD0720F4 -:101CC00000F010FD04E0FE2702E0FC2700E0FC2706 -:101CD00078B201B0F0BD0000002841D04CF29C5118 -:101CE000C2F20101B1F901209FED1F3A00EE102A66 -:101CF000B8EEC00A80EE030AB1F90330B1F905C0AD -:101D000001EE103A02EE10CAB8EEC11AB8EEC22ABD -:101D100081EE031A82EE032A4FF60003CFF6FF731B -:101D200080ED040A4A7C897CD20042EA51120021EB -:101D3000B1EB922F80ED051A80ED062A18BF1A43E9 -:101D400000EE102AB8EEC00AB4EE001A20EE010A26 -:101D5000B3EE071A30EE010A80ED0A0A48B2704766 -:101D6000FE2148B2704700BF00A0AA45C0B34CF2A4 -:101D70009C51C2F20101B1F90720B1F90930B1F962 -:101D80000B1000EE102A01EE103A9FED172A03EE19 -:101D9000101AB8EEC00AB8EEC11AB8EEC33A80EE17 -:101DA000020A81EE021A83EE022A9FED103AC16AFE -:101DB00091ED014A91ED025A20EE030A21EE031A39 -:101DC00022EE032A91ED003A31EE441A30EE430A36 -:101DD00032EE452A80ED070A80ED081A80ED092AC7 -:101DE0006FF00100704700BF6F12034235FA8E3C5E -:101DF00010B5012000F090FC4DF67844C2F20104C9 -:101E000038B90120012100F0C3FC2068022109F04B -:101E1000BBFA022000F080FC002818BF10BD022091 -:101E2000012100F0B5FC2068042109F0ADFA10BDD5 -:101E300080B5182001214FF0FF3209F0E5FA80BD8E -:101E4000002A08BF704770B51C4615460E4618B1EB -:101E5000012805D1022000E00120002100F098FCBB -:101E60004CF2AF5146F08000C2F201010870002030 -:101E70000122002300F02CFD0020294622460123E8 -:101E800000F0FCFCBDE8704070470000F0B581B088 -:101E9000044601200D46012600F034FD14B1012C4A -:101EA00004D102263046002100F072FC4CF2AF56FD -:101EB000C2F2010645F08000374607F8010B00200A -:101EC000314601220023012500F002FD00203146A9 -:101ED0000222002300F0D2FC34B1012C09D14CF2D3 -:101EE000AF57C2F2010702252846012100F050FC3D -:101EF0003878C0B201B0F0BDB0B5044601F07F0043 -:101F00004CF2AF51C2F20101087001204A70012564 -:101F100000F0F8FC14B1012C04D102252846002160 -:101F200000F036FC4CF2AF51C2F201010020022257 -:101F3000002300F0CDFC24B1012C18BFB0BD02205D -:101F400000E00120012100F023FCB0BD2DE9F043A9 -:101F500081B040F64428C2F200080646D8F80000D6 -:101F600014460D466421002A08BF0A2409F076F9B8 -:101F700008B1FB242FE04DF2C459C2F20109D9F88F -:101F8000000000E0006930B10178B142FAD1416847 -:101F9000A942F7D11AE0142000F012FC88B10746DC -:101FA00020461C21002209F0AFF8B86058B1D9F8DA -:101FB00000003C7300243E707D603861C9F80070F9 -:101FC00005E0FE2403E0384600F06EFBFF24D8F85D -:101FD000000009F0B9F960B201B0BDE8F08300007B -:101FE000704700004DF2C452C2F20102126800E0D4 -:101FF0001269002A04BF0020704713788342F7D18A -:1020000053688B42F4D1906870470000D0E9021207 -:10201000081FB0FA80F14FF0020008BF0320022A27 -:1020200018BF4809704700004DF2943240F2D411B5 -:10203000C2F201020128C2F2000118BF00220028EA -:1020400018BF1146012888BF0021084670470000CC -:102050002DE9F04115464DF2AC52C2F20102127860 -:10206000012A11D1A5B140F64428C2F20008074662 -:10207000D8F800000E4664211C4609F0EFF858B16C -:10208000FB2040B2BDE8F081FD2040B2BDE8F08108 -:10209000FE2040B2BDE8F08138463146FFF7A2FF8E -:1020A000D8F800100646084609F04EF966B13046E9 -:1020B00029460022234608F0E3FF002818BF4FF00E -:1020C000FF3040B2BDE8F081FC2040B2BDE8F081B5 -:1020D0002DE9F0478AB04DF2AC57C2F201073878CB -:1020E00008B1FD248AE040F22000C2F2000068211D -:1020F000FEF733FB002400BFE0B200F03BFA0134EE -:10210000012CF9D04DF2A85041F6E171C2F2010064 -:10211000C0F6000101600020002409F0C9F840F673 -:102120004421C2F200010028086066D0E8464FF062 -:1021300001094046282187F80090FEF70EFB40F287 -:10214000D416C2F200064FF00E0A30464146CDE9E1 -:102150000244CDE90799CDF824A0049401F0FEFFD4 -:10216000304602F0CBFB42F27D22C0F60002002096 -:10217000062100F051F842F21155C0F6000500208A -:1021800000212A4600F048F8002001212A4600F0EC -:1021900043F8002002212A4600F03EF83046032191 -:1021A00001F07EFF4DF29436C2F201063046414600 -:1021B000CDE9049A01F0D2FF304602F09FFB42F2D3 -:1021C0004132C0F600020120082100F025F801206C -:1021D00000212A4600F020F8012001212A4600F0C3 -:1021E0001BF8012002212A4600F016F83046112182 -:1021F00001F056FF87F8009000E0FF2460B20AB0BB -:10220000BDE8F08780B54DF2A852C2F20102126813 -:10221000002A18BF904780BD4DF2AC53C2F20103B3 -:102220001B78012B1EBFFD2358B270473AB101281D -:102230004FF0FF0398BF0C2904D958B27047FE2312 -:1022400058B2704740F2200CC2F2000C342310FB4D -:1022500003C0002340F8212058B2704780B54DF2EA -:10226000AC53C2F201031B78012B03D1FFF76EFEC2 -:1022700040B280BDFD2040B280BD00002DE9F04F8E -:1022800093B003A80D3001904FF0000A0CAE00206F -:1022900005E000BF0298002800F101004CD15FFA70 -:1022A00080FB02905846FFF7BFFE0028F2D004469C -:1022B00009E000BF02F092FE0990384603A900220F -:1022C000002308F071FF2046002101F0C9FF00281B -:1022D000E0D02046002132460AAB01F0D1FF0028B1 -:1022E000F1D10E980028304618BF043005683046FA -:1022F000FFF78CFE804628464146FFF783FF814664 -:1023000058464946FFF76EFE0028DCD00746DDE957 -:102310000F02CDF80CA00028CDE908AACDE906AA45 -:102320008DF80C80CDE904598DF81820C2D10198A0 -:102330000AA9FEF793F9BDE713B0BDE8F08F0000DE -:102340002DE9F04F93B003A80D3001904FF0000A33 -:102350000CAE002005E000BF0298002800F101004B -:102360004CD15FFA80FB02905846FFF75DFE0028D3 -:10237000F2D0044609E000BF02F030FE0990384672 -:1023800003A90022002308F00FFF2046012101F0DD -:1023900067FF0028E0D02046012132460AAB01F059 -:1023A0006FFF0028F1D10E980028304618BF043086 -:1023B00005683046FFF72AFE804628464146FFF76B -:1023C00021FF814658464946FFF70CFE0028DCD025 -:1023D0000746DDE90F02CDF80CA00028CDE908AAD8 -:1023E000CDE906AA8DF80C80CDE904598DF81820A6 -:1023F000C2D101980AA9FEF731F9BDE713B0BDE8D3 -:10240000F08F00002DE9F04389B017464DF2AC5231 -:10241000C2F201021278012A04D10446012806D929 -:10242000FF2000E0FD2040B209B0BDE8F08301F0DC -:10243000FE001D460E46022802D00DB9FE20F2E72E -:10244000DDF84080B8F1080F01D9FF20EBE7204606 -:10245000FFF7EAFD98B181460020032E0890CDE9F0 -:102460000600CDE90400CDE90200019009D8DFE8BB -:1024700006F0020A0D110197002100200DE0FE2058 -:10248000D1E7FF20CFE70297002005E00197022067 -:10249000002102E0022002970421CDE90310002070 -:1024A000002DCDF814808DF8180018BFB8F1000F7A -:1024B00005D001A8183029464246FEF7CFF8484615 -:1024C00001F070FF38B101A901F118026B464846CE -:1024D00001F0FAFD28B101A9204600F0A5F8013865 -:1024E000A1E700209FE7000079B180B582B00A68BB -:1024F00091F804C04B1D0021CDF800C0FFF782FF0A -:1025000002B0BDE8804040B27047FE2040B2704744 -:102510002DE9F04389B001AC04F118090025E84623 -:1025200004E000BF002D05F1010520D1EFB23846CF -:10253000FFF77AFD0028F5D0064600BF384600F0C8 -:1025400027F80028EED1304601F02CFF0028E9D012 -:102550003846214600F02EF80028E3D030462146C8 -:102560004A46434601F0B0FD0028E7D0DAE709B05B -:10257000BDE8F0834DF6804100EBC010C2F20101CE -:1025800001EBC0000021C0F80014C0F8041470472B -:102590004DF6804100EBC010C2F2010101EBC0001A -:1025A000D0F80014D0F80404081AB0FA80F04009FA -:1025B00070470000002904BF002070472DE9F0415A -:1025C0004DF6804C00EBC012C2F2010C0CEBC202C3 -:1025D000D2F800E4D2F804349E451FD002F204453C -:1025E0002C6800EBC0100CEBC00000EB441264013F -:1025F00050F804C0D2E901805769D2E90364C1E907 -:1026000000C8C1E90447C1E90206D2E90620C1E9D0 -:1026100006202868013000F01F002860BEEB030090 -:1026200018BF0120BDE8F08101284FF0000238D822 -:10263000B9B32DE9F0474DF6804C00EBC012C2F261 -:10264000010C0CEBC202D2F80034D2F804E40133DE -:1026500003F01F0373451ED002F58069D9F80040CE -:1026600000EBC0100CEBC00000EB44124FEA441A20 -:10267000D1E904C6D1E90078D1E9025440F80A70E2 -:102680005661C2E9034CC2E90185D1E90610C2E9ED -:102690000610C9F80030B3EB0E0218BF0122BDE8E6 -:1026A000F04710467047000080B509F0E5FD80BD99 -:1026B00008284FF0FF0213D801460620DFE801F09A -:1026C0000A1010101010050709000A2002E0172058 -:1026D00000E0092080B502F035FE0022BDE8804010 -:1026E00050B2704708284FF0FF0213D80146062069 -:1026F000DFE801F00A1010101010050709000A2089 -:1027000002E0172000E0092080B502F01FFE002241 -:10271000BDE8804050B270470C2884BF002070474D -:1027200080B54FF6F461C0F6000101EBC0025268BB -:1027300031F83010104602F045FC0138B0FA80F054 -:10274000400980BDB9B10C2882BFFF2040B270475C -:102750004FF6F462C0F6000232F830C000200023C9 -:102760002CFA00F2D20709D10E2B03F1010300F17C -:102770000100F5D908E0FE2040B2704740F288021F -:10278000C2F2000242F82010002040B27047000060 -:102790000C2882BFFF2040B2704780B50A464FF632 -:1027A000F461C0F6000101EBC0035B6831F8301042 -:1027B000184602F00DFC0020BDE8804040B2704792 -:1027C00080B509F0CBFB80BD012882BFFF2040B25D -:1027D00070474FF65C71C0F60001B7EE001A51F871 -:1027E0003010B4EE410AF1EE10FAC8BFB0EE410A63 -:1027F0000A689FED111AD16AB5EE400A0131F1EE77 -:1028000010FAB8BFB0EE410A01EE101AB8EE411A44 -:1028100020EE010ABCEEC00A10EE101A30B10128F9 -:1028200014BF02F1400002F1340001E002F138006F -:102830000160002040B2704700000000012882BF04 -:10284000FF2040B2704780B54FF65C71C0F60001C2 -:1028500001EBC00251F83000918804F065F80020C7 -:10286000BDE8804040B2704740F27031C2F20001D2 -:10287000002818BF002108467047000070B510B14D -:10288000FF2040B270BD1E4614460D46FFF7ECFF18 -:102890000028F5D02946224616B103F0DFF902E000 -:1028A000142303F021F9002818BF012040B270BDA5 -:1028B000002A0FBFFE2040F2D003C2F2000303EB58 -:1028C00040101CBF40F82120002040B2704700009B -:1028D00070B510B1FF2040B270BD1E4614460D46C3 -:1028E000FFF7C2FF0028F5D02946224616B103F0B3 -:1028F000A3FC02E0142303F04BFA002818BF0120C8 -:1029000040B270BD70B5044608F050FB0546FF2686 -:1029100008F02EFB411C05290BD80120884010F03F -:10292000310F0BD110F0060F0AD0204602F044FA06 -:1029300011E06FF00041884218BF002670B270BDF0 -:102940004FF47A70B0FBF5F1B4FBF1F0A14288BF0F -:10295000012008F0E3FA002670B270BD2DE9F041C5 -:1029600008F024FB04460AF067FE4FF47A784EF232 -:102970001806B8FBF4F4CEF20006376804FB00F545 -:102980000AF05AFE60433168854208BF394656F85E -:10299000042C01FB08F10132B1FBF2F100FB08F05D -:1029A000401A00F57A700021BDE8F08103288FBF3E -:1029B000002040B201A151F82000704718D5012035 -:1029C0001004002060D501205804002080B582B09A -:1029D00001680A68D20614D5002201920A680192A1 -:1029E00049680191019907F0B7FD4CF20C5100EBD9 -:1029F000C000C2F2010101EB8000006A002818BF8C -:102A0000804702B080BD00003AB103284FF0FF03B9 -:102A100098BF082904D958B27047FE2358B27047AE -:102A20004CF20C5300EBC000C2F2010303EB800038 -:102A3000002340F8212058B27047000070B50328E9 -:102A400002D9FF2040B270BD144602460D4600294F -:102A50004FF0FE0018BF002C01D140B270BD1046EF -:102A60001E46FFF7A3FF294622461EB104F012FBC3 -:102A700040B270BD04F054FB40B270BDFEE70000F0 -:102A800080B540F2D410C2F2000001F09FFC80BD7E -:102A900080B540F2D410C2F2000001F097FC80BD76 -:102AA00080B540F2D410C2F2000001F08FFC80BD6E -:102AB00080B54DF29430C2F2010001F087FC80BD78 -:102AC00080B54DF29430C2F2010001F07FFC80BD70 -:102AD00080B54DF29430C2F2010001F077FC80BD68 -:102AE0004FF0030160B146F200420068C4F20002F8 -:102AF00002F58063984208BF0121801A08BF014691 -:102B0000C8B2704780B5024603284FF0FF000BD8CB -:102B100051B140F2B010C2F2000050F8220028B1CA -:102B200002691AB18068904740B280BD00790022E6 -:102B30000A54FC2040B280BDB0B54CF21000C2F285 -:102B4000010000F017F840F2B0150024C2F20005B1 -:102B500003E000BF0134042C09D055F824000028FC -:102B6000F8D0C1680029F5D080688847F2E70020D6 -:102B7000B0BD000010B10179032902D9FF2040B295 -:102B8000704740F2B012C2F2000242F82100002069 -:102B900040B2704750B380B590F88010022902D837 -:102BA0000144097CB1B900210FF2480C1CF8012046 -:102BB00083181B7C002B08BF042203D1022901F1DA -:102BC0000101F3D180F8802080F8842080F8A820CB -:102BD00080F8C02000F1100100F14802012300F04C -:102BE000F5F80020BDE8804040B27047FF2040B2B9 -:102BF000704700BF000102000146006891ED241AF1 -:102C000090ED030A91ED252A20EE011A20EE020A2A -:102C1000002081ED241A81ED250A704700207047BD -:102C20000146006891ED251A90ED020A002031EE70 -:102C3000400A81ED250A704790F88010012902D0E2 -:102C400051B9012100E0002180F8801080F8841043 -:102C500080F8A81080F8C010002070470146006876 -:102C600091ED241A90ED040A91ED252A20EE011A27 -:102C700020EE020A002081ED241A81ED250A70471A -:102C800001460122002081F8C3207047014690F8D8 -:102C9000C100013000F00302002081F8C12070471C -:102CA0000146006891ED251A90ED020A002030EEF1 -:102CB000010A81ED250A70470146006891ED241A4A -:102CC00090ED020A002031EE400A81ED240A70479F -:102CD0000146006891ED241A90ED020A002030EEC2 -:102CE000010A81ED240A70470146052081F88C0015 -:102CF0000222002081F8AC207047000000207047BD -:102D000010B5864600284FF0000018BF002A00D1F9 -:102D100010BDD2F804C08CF000404FEACC0343EA67 -:102D20005073062B10D80020DFE803F0050E0E0EBE -:102D300004222B00ECE79EF82600002818BF012093 -:102D4000E1B391F8261024E0DEF82C0000EA0C0034 -:102D5000A0EB0C00B0FA80F04FEA501081B3C96AC2 -:102D600001EA0C01A1EB0C01B1FA81F1490913E070 -:102D70009EF82800002818BF012019B391F82810E8 -:102D800007E09EF82700002818BF0120E1B191F864 -:102D90002710002918BF0121127A002A08BF10BD90 -:102DA000022A05D0012A07D181F00101084010BD97 -:102DB00080F00100084010BD002010BD0021EBE7AD -:102DC0000021E9E70021E7E70021E5E72DE9F047E9 -:102DD000804600284FF0FF001ED00E46E1B140F2C1 -:102DE0002C1A1C4691460025C0F6010A03E000BFDC -:102DF0001035B02D0FD00AEB0507787A2042F7D0B6 -:102E0000304649463A46FFF77BFF0028F0D0F96884 -:102E100040468847ECE7002040B2BDE8F08700005C -:102E20002DE9F0410022C1E90022C1E90222C1E9F5 -:102E300004228A6150F8015F037C90F83C60013BFA -:102E4000DFB2FC0040F20133032F4FF00007D0F84F -:102E50000480D0F808E0D0F80CC0C0F2020338BFFC -:102E600023FA04F70F75447C013CE4B2E700032C1D -:102E70004FF0000438BF23FA07F44C75847C013C02 -:102E8000E4B2E700032C4FF0000438BF23FA07F444 -:102E90008C75C47C0E70013CE4B2E600032C4FF04C -:102EA000000438BF23FA06F4CC75047D4D60013C64 -:102EB000E4B2E500032C4FF0000438BF23FA05F418 -:102EC0000C76447DC1F80880013CE4B2E500032C97 -:102ED0004FF0000438BF23FA05F44C76847DC1F826 -:102EE0000CE0671EFFB2FE00032F4FF0000738BF53 -:102EF00023FA06F78F76C07DC1F810C00138C0B242 -:102F0000C70003284FF0000038BF23FA07F2CA7643 -:102F1000BDE8F08180B505F0EDFB80BD90F83D0087 -:102F20007047000070B52DED028B20B30446FFF70B -:102F300015FD05460E460CF09CFE9FED1F8A00EE27 -:102F4000100A80EE080AE068281A66F1000184ED94 -:102F5000010A0CF08EFE00EE100A80EE080A94F8CA -:102F60008000E560042884ED020A06D3204600F0C4 -:102F700005F9FC201BE0FF2019E094F8A8004CF2B2 -:102F80006045C2F2010505EB0010816820468847C4 -:102F900094F8840005EB001041682046884794F8B7 -:102FA000C00005EB0010C16820468847002040B2F1 -:102FB000BDEC028B70BD00BF00247449B0B505465E -:102FC00000284FF0FF000BD00C4649B12846C42121 -:102FD000FDF7C3FB2C60FFF7AFFDFFF78FFE00206E -:102FE00040B2B0BD80B5417C69B1042280F88C202C -:102FF000002200F11001C0E9242200F1480202235E -:10300000FFF7E4FE80BD032180F88C1080BD000036 -:1030100080B5417C61B3012280F8AC20B0F930204A -:103020000368524200EE102AB0F9322090ED021AE5 -:1030300003EE102AB8EEC00A93ED012AB8EEC33AA7 -:1030400021EE000A21EE031A22EE000A22EE011AF6 -:10305000B7EE082A00F1100121EE021A00F1480231 -:10306000042380ED2C0A80ED2D1AFFF7AFFE80BD02 -:10307000002180F8AC1080BD80B5417C71B190F822 -:103080003630012200F1100180F8C22080F8C330F0 -:1030900000F148020823FFF799FE80BD002180F867 -:1030A000C11080BD90F824200168032A05D0022AAF -:1030B00005D0012A06D1143102E0163100E01531A5 -:1030C000097800E0032180F88C10D0E90512C0E9EE -:1030D0002412704790F825200168032A05D0022A9F -:1030E00005D0012A06D1173102E0193100E018316C -:1030F000097800E0002190ED070A90ED081AB8EE7B -:10310000002A20EE020ABFEE082A21EE021A80F8F9 -:10311000AC1080ED2C0A80ED2D1A704790F8261027 -:10312000027C012980F8C12007D0022909D0032997 -:1031300004BF032180F8C11006E0002180F8C2100E -:1031400002E0012180F8C11090F827100139CAB2BD -:10315000022A88BF70474FF4FF6202EAC10140F2C1 -:103160000012C0F201024FF48033CA4023FA01F189 -:1031700080F8C22080F8C31070470000032180F857 -:103180008C10002180F8AC1080F8C110704700004E -:1031900010B5044600F00AF8002818BF10BD2046FC -:1031A000FFF7F8FC2046FFF7BDFE10BD78B32DE910 -:1031B000F04F83B0044654F8100F0190606B04F197 -:1031C0001C0B029001989BE8C00F04F1040EA06351 -:1031D00004F154009EE82E5080E8C00F0298A564C8 -:1031E0000025E16322646364C4F84CC0C4F850E075 -:1031F000E06600BFE8B22146FFF784FC0135042DEC -:10320000F8D1002003B0BDE8F04F40B27047FF2076 -:1032100040B2704790ED001AF5EE400AF1EE10FA58 -:1032200031EE000A10DDB4EE600AF1EE10FAA2BF32 -:1032300030EE600A80ED000A7047B5EE400AF1EE0C -:1032400010FAB8BF30EE200A80ED000A7047000087 -:10325000B5EE401AF1EE10FA30EE600AD8BF7047B2 -:10326000B6EE002A21EE022AB4EE420AF1EE10FA7E -:10327000C4BF30EE410A7047B1EE422AB4EE420AB2 -:10328000F1EE10FAB8BF30EE010A704790ED001A67 -:10329000B4EE601AF1EE10FAC8BFC0ED000A90ED6E -:1032A000001AB4EE401AF1EE10FAB8BF80ED000A31 -:1032B000704700004CF22800C2F201007047000085 -:1032C00080B540F25C20C2F2000001F015FC80BD28 -:1032D00080B54DF21C40C2F2010001F00DFC80BD32 -:1032E00080B540F2FC10C2F2000001F005FC80BD88 -:1032F00080B54DF2BC30C2F2010001F0FDFB80BD93 -:1033000080B540F2BC20C2F2000001F0F5FB80BDA8 -:10331000D0F800C06FF00F024AF6AB2352FA8CF2DD -:10332000CAF6AA230146A2FB0330000905A31B5CD1 -:1033300040F2FF302CEA00005F2A88BF0430C1E968 -:103340001603704700061016000610168269816A7F -:10335000B2F5005F06D06AB9022912D0012914D053 -:10336000D1B90EE0032917D8DFE801F0020B020FF4 -:103370000120704703293CBF012070471CBF00207B -:103380007047C06AC0F300607047C06AA0F1C070A7 -:10339000B0FA80F0400970470020704780B5D0F83F -:1033A00000C0D0F808E0DCF80000BEF1400F20F4C7 -:1033B0008020CCF800000846CCF8043004BF10464A -:1033C0000A46CCF80800CCF80C2080BD10B5E8B156 -:1033D0004DF2AD54C2F20104207810B1FD2040B28C -:1033E00010BD08F06FF84DF67C41C2F20101086093 -:1033F00060B143F21542C0F6000202200321FFF73C -:1034000003FB01202070002040B210BDFE2040B21E -:1034100010BD000080B54DF67C40C2F2010000688E -:10342000012107F0B1FF80BD70470000002843D0A4 -:10343000B0B50446451C02202070204600F05CF820 -:10344000E869296A6A6AAB6A2860B4F92D00AA6043 -:10345000EB60696003F0CAFEB4F92F10607408468F -:1034600003F0C4FEB4F93110A074084603F0BEFEA8 -:10347000B4F93310E074084603F0B8FEB4F935101F -:103480002075084603F0B2FEB4F93710607508469F -:1034900003F0ACFEB4F93910A075084603F0A6FE9F -:1034A000B4F93B10E075084603F0A0FE207600203A -:1034B000BDE8B04040B27047FE2040B27047000007 -:1034C000B0B103210170002180F83D10C0F8011057 -:1034D000C0F80510C0F80910C0F80D10C0F81110A0 -:1034E000C0F81510C0F81910C0F81D1048B2704788 -:1034F000FE2148B2704700002DE9F0472DED088B02 -:10350000002800F01A8140F23011C2F200014B781D -:103510008F78012267F30A2300EE103AB8EEC00A52 -:1035200000F11D0480F83D2010EE102A2260CA78B8 -:10353000FB0862F34A1300EE103AB8EEC00A10EE30 -:10354000103AE3600B794F799B0043EA921207F03F -:10355000010342EA832200EE102AB8EEC00A10EE00 -:10356000102A62608A797B0862F3CA1301EE103A6E -:10357000B8EEC11A11EE103AA3600F7ACB794E7AE9 -:1035800012097F0063F30A1247EAD31306F0030718 -:103590008D7A43EA4723A0F82D30B308CF7A65F33C -:1035A0008A13A0F83730FB000F7B4E7B43EA55139C -:1035B000A0F8353066F30A278B7BA0F83370F70844 -:1035C000CE7B63F34A17A0F83170B7000E7C47EA50 -:1035D000931306F0010743EA8723497C9FED5E8A37 -:1035E0009FED5E9AA0F82F307308BFEE00AAB7EEE9 -:1035F00000BA61F3CA13F0EE480AB0EE491AF0EED1 -:103600004A1AB0EE4B2AA0F83920A0F83B30A0F8B7 -:10361000392007F053FC216810EE100A00EE101A52 -:10362000F0EE480AB0EE491AF0EE4A1AB0EE4B2A14 -:10363000606007F043FCA16810EE100A00EE101A5B -:10364000F0EE480AB0EE491AF0EE4A1AB0EE4B2AF4 -:10365000206007F033FCE16810EE100A00EE101A4B -:10366000F0EE480AB0EE491AF0EE4A1AB0EE4B2AD4 -:10367000A06007F023FC206810EE108AC4F80C80CC -:103680000CF0A2FA9FED300B074659EC10AB5246F6 -:103690004B460E460CF0DFFA58B99FED2D0B38461D -:1036A00053EC102B31460CF0C8FA002804BF002060 -:1036B000206060680CF088FA52464B4606460F467A -:1036C0000CF0C9FA58B99FED220B304653EC102B81 -:1036D00039460CF0B2FA002804BF00206060A068F0 -:1036E0000CF072FA52464B4606460F460CF0B3FAFF -:1036F00058B99FED170B304653EC102B39460CF0A0 -:103700009CFA002804BF0020A06040460CF05CFA40 -:1037100052464B4606460F4600250CF09CFA68B907 -:103720009FED0B0B304653EC102B39460CF085FA0D -:10373000002804BF0025E56000E0FE2568B2BDEC6E -:10374000088BBDE8F08700BF7B14AE47E17A84BFE9 -:103750007B14AE47E17A843F0080B04300E0D3445D -:1037600080B5012001F052FB80BD000080B508202B -:1037700001F04CFB80BD000080B5102001F046FB3D -:1037800080BD000080B5202001F040FB80BD00001E -:1037900072B600BFFEE7000070B52DED0E8B04463B -:1037A00000284FF0FF0000F0B6810D46002900F020 -:1037B000B281FFF7D3F8D4E90023801A99410CF0C5 -:1037C00058FA9FEDD70A01EE100A81EE000A84ED47 -:1037D000020AFFF7C3F82A78C4E90001204611461F -:1037E00000F062FB204607F059FB94ED02DA95EDFC -:1037F000010A95ED02EA04F5367004F5287120EE11 -:103800000DAA07F069FB94ED141AB0EE408A9FED03 -:10381000C59A94ED740A38EE011A7AEE010AB0EEF8 -:10382000491AFFF715FD94ED141AB0EE40BA94ED65 -:10383000750A38EE011A7AEE010AB0EE491AFFF75E -:1038400007FD607C02280BD0012800F0AC80002826 -:1038500040F048810020C4E99300C4F8540241E1DB -:103860009FEDB09A04F5F2752846B0EE4A0AF0EEE4 -:10387000490AFFF7CFFC94ED790A9FEDAB1AB4EE3D -:10388000410AF1EE10FA05DD9FEDA82A30EE020A9A -:1038900085ED000A95ED003A9FEDA52AB1EE484A64 -:1038A000B4EE423AF1EE10FABCBF33EE093A85EDC0 -:1038B000003A9FED9E3AB4EE428A33EE485AF1EE5A -:1038C00010FAB8BFB0EE454AB4EE424A94ED796AB8 -:1038D00034EE095AF1EE10FAB8BFB0EE454A34EEB4 -:1038E000064AB4EE414A34EE033AF1EE10FAC8BF8C -:1038F000B0EE434AB4EE424A34EE091AF1EE10FA41 -:10390000B8BFB0EE414AE06894ED151A41782DEE4B -:103910000E0A30EE010A84ED144A84ED150A39B11D -:10392000D0ED460A90ED470A04F15400FFF7AEFCD3 -:10393000D4ED021A94ED130AD4EDB20A94EDB31A41 -:1039400004F1680004F082FD9FED7AAA84ED930AE9 -:10395000D4ED021AD4ED0D0A94ED140A04F1E0003E -:10396000B0EE4A1A04F072FDD4ED021AD4ED0A0A40 -:1039700004F58E70B0EE4A1AB0EE408A04F066FD8F -:1039800084ED940AD4ED021AD4ED0C0A94ED150AD4 -:1039900004F5AC70B0EE4A1A04F058FDD4ED021AEA -:1039A000D4ED090A73E020462946B0EE40CA04F17E -:1039B000500600F0C1F8E068007838B13046B0EE4B -:1039C0004C0AF0EE4B0AFFF761FC1BE096ED000A93 -:1039D0009FED551AB4EE410AF1EE10FA05DD9FEDA8 -:1039E000531A30EE010A86ED000A96ED000A9FEDAB -:1039F000501AB4EE410AF1EE10FABCBF30EE090ADB -:103A000086ED000AE068417839B1D0ED460A90EDC4 -:103A1000470A04F15400FFF739FCD4ED021A94ED83 -:103A2000130AD4EDB60A94EDB71A04F1680004F055 -:103A30000DFD9FED40AA84ED930AD4ED021AD4ED5A -:103A40000D0A94ED140A04F1E000B0EE4A1A04F0F5 -:103A5000FDFCD4ED021AD4ED0A0A04F58E70B0EE26 -:103A60004A1AB0EE408A04F0F1FC84ED940AD4EDD9 -:103A7000021AD4ED0C0A94ED150A04F5AC70B0EE00 -:103A80004A1A04F0E3FCD4ED021AD4EDA60AB0EE13 -:103A9000409A04F5CA70B0EE4A1A04F0D7FCE06808 -:103AA00084ED950A90F8041169B194EDA72A90ED80 -:103AB000421A94ED943A38EE422A21EE021A33EE7D -:103AC000011A84ED941A90F8051159B194EDA51AD4 -:103AD00090ED432A39EE411A22EE011A30EE010A26 -:103AE00084ED950A94ED930A04F5F67003F090FBCB -:103AF00084ED930A94ED940A04F5037003F088FBB7 -:103B000084ED940A94ED950A04F50B7003F080FBA4 -:103B1000002084ED950A40B2BDEC0E8B70BD00BF55 -:103B200000247449DB0FC940DB0F4940DB0FC9C0DB -:103B3000DB0F49C00000000000284FF0FF0218BF53 -:103B4000002901D150B270474A78022A19D0AAB987 -:103B500091ED010A91ED021A90ED022A90ED143ACE -:103B600090ED154A20EE020A22EE011A33EE000A09 -:103B700034EE011A80ED140A80ED151A002250B2BD -:103B80007047CA68026509690022416550B27047F2 -:103B9000002808BF7047C16891F8FB20022A05D0B1 -:103BA000012A08D05AB990EDA90A06E090EDAA0AB8 -:103BB000B1EE400A01E090EDA80A80ED0C0A91F800 -:103BC000FC20022A05D0012A06D04AB900F5297244 -:103BD00004E000F52A7201E000F5287212684263E1 -:103BE00091F8F820022A05D0012A06D04AB900F53A -:103BF000257204E000F5277201E000F526721268D4 -:103C0000426291F8F910022905D0012906D049B97C -:103C100000F5257104E000F5277101E000F526713B -:103C20000968816200F52B7C9CE80E103C3080E82E -:103C30000E10704710B52DED028B002800F09E800D -:103C40000446C1600020607404F1680001F158026C -:103C50000121B0EE408A04F0B1FCE16804F1A40057 -:103C600001F138020121B0EE480A04F0A7FCE16836 -:103C700004F1E00001F198020121B0EE480A04F0DD -:103C80009DFCE16804F58E7001F178020121B0EE2F -:103C9000480A04F093FCE16804F5AC7001F1D80225 -:103CA0000121B0EE480A04F089FCE16804F5CA700D -:103CB00001F1B8020121B0EE480A04F07FFCE0688F -:103CC00090ED4B0A90ED4C1AD0ED440A30EE011AFB -:103CD00084ED750A04F5F670B0EE480A84ED741AA6 -:103CE00003F0D4FAE068B0EE480AD0ED440A04F5D7 -:103CF000037003F0CBFAE068B0EE480AD0ED440A56 -:103D000004F50B7003F0C2FAFEF7E2F9E06881787F -:103D1000022902D10E3003F069FEE06881780129A2 -:103D200006D1063003F03EFCE068063003F04CFBA1 -:103D3000E0680179022902D12E3003F057FEE068D5 -:103D4000C178022902D1263003F050FEE0680179E3 -:103D5000012906D11E3003F025FCE0681E3003F077 -:103D600033FBE068C17801290AD1163003F01AFC50 -:103D7000E068163003F028FB002002E0FF2000E09E -:103D8000002040B2BDEC028B10BD000010B504460F -:103D9000C0688178022908D10E3003F04FFDE06839 -:103DA00094ED930A0E3003F07DFEE06881780129DE -:103DB0001CD1D0F8401194ED930AC4F86012D0F8E9 -:103DC0004811C4F86812D0F84411C4F86412D0F84D -:103DD0003C11C4F85C1290ED5D1A04F5167120EEEA -:103DE000010A063084ED960A03F048FBE068017989 -:103DF000022908D12E3003F021FDE06894ED940AE9 -:103E00002E3003F04FFEE068C178022908D1263039 -:103E100003F014FDE06894ED950A263003F042FEAD -:103E2000E068C17801291CD1D0F8681194ED950A99 -:103E3000C4F88812D0F87011C4F89012D0F86C1140 -:103E4000C4F88C12D0F86411C4F8841290ED5F1A93 -:103E500004F5207120EE010A163084EDA00A03F06B -:103E60000DFBE0680179012918BF10BDD0F854118D -:103E700094ED940AC4F87412D0F85C11C4F87C1262 -:103E8000D0F85811C4F87812D0F85011C4F8701254 -:103E900090ED5E1A04F51B7120EE010A1E3084EDD0 -:103EA0009B0A03F0EBFA10BDB0B52DED028BC8B341 -:103EB0000446407C0D46884234D004F1680004F08A -:103EC000C5FB04F1A40004F0C1FB04F1E00004F020 -:103ED000BDFB04F58E7004F0B9FB04F5AC7004F082 -:103EE000B5FB04F5CA7004F0B1FB9FED108A04F530 -:103EF000F670B0EE480A03F01BFA04F50370B0EE5A -:103F0000480A03F015FA04F50B70B0EE480A03F006 -:103F10000FFA04F15000FDF7A1F9D4E9A801657486 -:103F2000C4E91401BDEC028BB0BD00BF000000006D -:103F300010B5002800F088800446C0688178022906 -:103F400011D10E3003F0FEFDE0680E3003F014FDD9 -:103F500048B100F108030ECB406904F5327C8CE8CF -:103F60000E00C4F8D402E0688178012911D106302E -:103F700003F0F6FBE068063003F054FA48B100F1B4 -:103F80001C030ECB806A04F5327C8CE80E00C4F86A -:103F9000D402E0680179022911D12E3003F0D2FD5C -:103FA000E0682E3003F0E8FC48B100F108030ECBC6 -:103FB000406904F5367C8CE80E00C4F8E402E06841 -:103FC000C178022911D1263003F0BCFDE06826300B -:103FD00003F0D2FC48B100F108030ECB406904F5B0 -:103FE0003A7C8CE80E00C4F8F402E06801790129FB -:103FF00011D11E3003F0B4FBE0681E3003F012FA5A -:1040000048B100F11C030ECB806A04F5367C8CE8C5 -:104010000E00C4F8E402E068C178012911D116301D -:1040200003F09EFBE068163003F0FCF948B100F1A4 -:104030001C030ECB806A04F53A7C8CE80E00C4F8B1 -:10404000F402002040B210BDFF2040B210BD0000BD -:1040500010B380B58B68D1E900C2C0F89C32C0E9CA -:10406000A5C24B69D1E903C2C0F8A832C0E9A8C211 -:1040700001F1280C9CE80C1000F52F7E8EE80C1046 -:10408000D1E906C3D1E90821C0E9ABC3C0E9AD213C -:10409000FFF77EFDBDE880404FF0FF307047000025 -:1040A00090F82020013A012A04D8006800F1140297 -:1040B000002004E000F1240201204FF48021136865 -:1040C000194311607047000010B590F820E0D0F857 -:1040D00000C0AEF1010EBEF1010FDCF808E00ED811 -:1040E0001EF0E05F11D0CEF3016E012000FA0EF059 -:1040F00018608B687BB1486843EAC0030DE000F1AB -:10410000240101204FF4802223E000F1240101204A -:104110004FF400121DE008684305D1E9030403438E -:104120000CEB0E10C0F88031C0F88441097D0129E4 -:1041300005D100F5C2710B6843F480730B605168C0 -:10414000C0F88C11126800F5C071C0F888210020F9 -:1041500001220B681A430A6010BD0000B0B590F848 -:104160002020013A012A2FD846F20060C4F2000054 -:10417000026842F001020260026822F47C5202608E -:10418000D1F814E0CC694A6A0368012C43EA0222A0 -:1041900002600EF01F024FF0010303FA02F2C3693E -:1041A0006FEA020C23EA0203C36113D02CBBC3687D -:1041B00003EA0C03C360CB688C8844EA034300EB3A -:1041C000CE0423640B4611E0416A41F48021416230 -:1041D0000120B0BDC3681343C3600B688C8844EAF8 -:1041E000034300EBCE04236401F10C038C681B88AD -:1041F00043EA044300EBCE04636443688D6943EAF9 -:104200000204D1F810E0096A002D08BF03EA0C048B -:1042100044604369BEF1000F43EA020408BF03EAA9 -:104220000C040129446102D1C1691143C1610168D3 -:1042300021F0010101600020B0BD000080B5FEF753 -:104240004FFC032808BF80BD40F22001C2F20001EC -:10425000342210FB0210006B002818BF804780BD7D -:1042600090F82020013A012A84BF0020704700689E -:104270001022002908BF0C22805800F0030070476C -:1042800010B590F82040013C012C0AD8046871B1A7 -:104290002469A4070ED100F1240101204FF400127B -:1042A00076E000F1240101204FF4802270E0E46800 -:1042B000A40771D0046804EB011CDCF8B0410CF5D4 -:1042C000D87E14F004049460DCF8B04119BFE4080F -:1042D0005460640D1460DEF800400CF5DA7E04F0E2 -:1042E0000204D460DCF8B44124075ABFDEF8004071 -:1042F00004F00F0408241461DEF800400029C4F320 -:1043000007249461DEF800404FEA14445461DCF85D -:10431000B8211A70026802EB0112D2F8B8214FEAF4 -:1043200012225A70026802EB0112D2F8B8214FEA49 -:1043300012429A70026802EB0112D2F8B8214FEAD9 -:104340001262DA70026802EB0112D2F8BC211A7113 -:10435000026802EB0112D2F8BC214FEA12225A7114 -:10436000026802EB0112D2F8BC214FEA12429A71A4 -:10437000026802EB0112D2F8BC214FEA1262DA7134 -:10438000006814BF00F1100100F10C010020202290 -:104390000B681A430A6010BD00F1240101204FF49C -:1043A0000012F5E790F820100139012984BF0020A0 -:1043B00070470068816882688068C1F38061C2F3D9 -:1043C000C0621144C0F30070084470472DE9F04FFB -:1043D00081B0044600684669D0F804908768D0F838 -:1043E0000CB0D0F810A0D0F81880F10703D1002548 -:1043F00030071CD423E0F90710D00121BA078160EF -:1044000009D4780700F1AA80380700F1B08020466F -:1044100000F0A2FA02E0204600F0B0FA0025F8050C -:1044200000F18480F80300F1AA80300707D51BF063 -:10443000100004D0206845F400751021C160700799 -:1044400008D51BF0080005D020680821C16020466F -:1044500000F0FAF9B00706D52068C068800702D0DE -:10446000204600F003FA700607D51AF0100004D0B9 -:10447000206845F4806510210161B00608D51AF066 -:10448000080005D0206808210161204600F000FAEC -:10449000F00606D520680069800702D0204600F0AB -:1044A00009FAB00308D519F0100005D020681021D2 -:1044B0004160204600F010FAF00308D519F008001A -:1044C00005D0206808214160204600F0B1FA300490 -:1044D00040F18F805FEA497040F1888006F4807077 -:1044E00008EA102028435FEA8871014648BF41F07E -:1044F0000201B20558BF01465FEA48700D4648BF49 -:1045000045F00405700558BF0D4630056ED518F00E -:1045100070006BD010380009052862D8DFE800F081 -:10452000035356595C5F45F008055AE020684FF484 -:104530008071BA0581600AD4780512D4380519D47F -:10454000204600F02DFAF8037FF56FAF17E0204604 -:1045500000F038FAF8037FF568AF10E04FF400651B -:104560005DE705F50055F8037FF55FAF07E04FF411 -:10457000805554E705F58045F8037FF556AF206870 -:104580004FF48031BA0381600AD478030FD4380322 -:1045900013D4204600F028FA30073FF548AF4EE725 -:1045A000204600F033FA30073FF541AF47E705F505 -:1045B000004530073FF53BAF41E705F58035300753 -:1045C0003FF535AF3BE745F010050AE045F0200523 -:1045D00007E045F0400504E045F0800501E045F4C2 -:1045E00080752068816921F0700181612068042153 -:1045F00041602DB1606A284360622046FFF71EFECD -:1046000001B0BDE8F08F0000B0B5C8B1044690F825 -:10461000200010B9204600F071F82068016841F0D0 -:104620000101016000F0DAFC054600BF2068416826 -:10463000C90707D100F0D2FC401B0B28F6D312E0CB -:104640000120B0BD016821F00201016000F0C6FC4C -:10465000054600BF2068416889070DD500F0BEFC03 -:10466000401B0B28F6D3606A052140F400306062DD -:10467000012084F82010B0BD217E0268012922F0BB -:10468000800208BF80320260617E0268012922F048 -:10469000400208BF40320260A17E0268012922F078 -:1046A000200208BF20320260E17E0268012922F068 -:1046B000100218BF10320260217F0268012922F027 -:1046C000080208BF08320260617F0268012922F0F7 -:1046D000040208BF04320260D4E901C2D4E9033500 -:1046E00061691A432A431143ACF101021143C161CC -:1046F00000200121606284F82010B0BD70B586B042 -:10470000006846F60002C4F2000200219042CDE9A2 -:104710000411CDE90211019137D046F20041C4F2F3 -:104720000001884240F08D8040F2C801C2F20001D1 -:104730000A6843F64000C4F20200531C0B6052B9F1 -:1047400000210091016841F000710160016801F0F1 -:104750000071009100990021009150F8101C15245F -:1047600041F0080140F8101C50F8100C142500F01E -:104770000800009000980320019040F20040C4F22D -:10478000020000F50060132638E043F64000C4F252 -:1047900002000091016841F080610160016801F050 -:1047A00080610091009940F2C801C2F200010A68DC -:1047B000531C0B6052B900210091016841F0007157 -:1047C0000160016801F000710091009900210091E1 -:1047D00050F8101C412441F0020140F8101C50F820 -:1047E000100C402500F00200009000984FF4825019 -:1047F000019040F200403F26C4F2020002210291E3 -:1048000000210391032104910921059101A900F0E0 -:104810000BFB30460521002200F09CFD304600F0E5 -:1048200095FD28460521002200F094FD284600F061 -:104830008DFD20460521002200F08CFD204600F071 -:1048400085FD06B070BD000080B5FEF749F903286C -:1048500008BF80BD40F22001C2F20001342210FBEB -:104860000210C069002818BF804780BD80B5FEF7E0 -:1048700037F9032808BF80BD40F22001C2F20001D1 -:10488000342210FB02108069002818BF804780BDC9 -:1048900080B5FEF725F9032808BF80BD40F220014E -:1048A000C2F20001342210FB0210406A002818BF37 -:1048B000804780BD80B5FEF713F9032808BF80BD8F -:1048C00040F22001C2F20001342210FB0210006A03 -:1048D000002818BF804780BD80B5FEF701F9032886 -:1048E00008BF80BD40F22001C2F20001342210FB5B -:1048F0000210806A002818BF804780BDB0B504460A -:1049000090F8200001281DD1022084F820002068A2 -:10491000016821F00101016000F060FB054600BF65 -:1049200020684068C00713D000F058FB401B0B28DC -:10493000F6D3606A40F400306062052084F82000FD -:104940000120B0BD606A40F4002060620120B0BD6B -:1049500000206062B0BD000080B5FEF7C1F80328FA -:1049600008BF80BD40F22001C2F20001342210FBDA -:104970000210C068002818BF804780BD80B5FEF7D0 -:10498000AFF8032808BF80BD3421484340F220011E -:10499000C2F200010858002818BF804780BD0000FF -:1049A00080B5FEF79DF8032808BF80BD40F22001C6 -:1049B000C2F20001342210FB02100069002818BF67 -:1049C000804780BD80B5FEF78BF8032808BF80BD07 -:1049D00040F22001C2F20001342210FB02104068B4 -:1049E000002818BF804780BD80B5FEF779F80328FE -:1049F00008BF80BD40F22001C2F20001342210FB4A -:104A000002104069002818BF804780BD80B5FEF7BE -:104A100067F8032808BF80BD40F22001C2F2000100 -:104A2000342210FB02108068002818BF804780BD28 -:104A300080B5FEF755F8032808BF80BD40F220017D -:104A4000C2F20001342210FB0210C06A002818BF15 -:104A5000804780BD70B5866D044600F0BFFA94F8BB -:104A60003510022925D105462068216C026822F004 -:104A700016020260426922F08002426109B9A16C0B -:104A800019B1016821F008010160016821F00101FC -:104A9000016000BF20680068C0070ED000F09EFAD9 -:104AA000401B0628F6D320206065032084F83500DB -:104AB0000CE080206065012008E0E06D3F2101FAF4 -:104AC00000F0B060012084F835000020002184F857 -:104AD000341070BD90F83510022909D1052180F8F5 -:104AE00035100068016821F0010101600020704765 -:104AF0008021416501207047F0B581B00446002057 -:104B000000904CF20000C2F201000268D4E9166085 -:104B100048F2B51337680821C1F64E338140394257 -:104B2000A2FB03250CD0226813685B0708D5136825 -:104B300023F004031360B160616D41F00101616510 -:104B400001218140394208D022685269120604D5F9 -:104B5000B160616D41F0020161650421814039421B -:104B600008D022681268920704D5B160616D41F0E7 -:104B70000401616510218140394215D02068026826 -:104B8000120711D5B16002680168520306D4C90545 -:104B900006D4016821F00801016001E0080342D455 -:104BA000216C09B120468847E16D202000FA01F20E -:104BB0003A4244D020680368DB0640D5B26094F8DE -:104BC00035300268052B1ED122F0160202604269C0 -:104BD00022F080024261226C0AB9A26C1AB102680A -:104BE00022F0080202603F208840B060012084F873 -:104BF0003500216D0020002984F8340040D0204683 -:104C0000884701B0F0BD0168520310D4C90512D421 -:104C1000016821F010010160012084F835000020B6 -:104C200084F8340007E0A16C0029BBD1BCE708037D -:104C300001D4616C00E0E16B09B120468847606DEA -:104C4000F0B1606DC00717D0052084F835002068EA -:104C5000A90A026822F00102026000BF009A013234 -:104C60008A42009202D80268D207F7D1012084F864 -:104C70003500002084F83400E16C09B120468847F3 -:104C800001B0F0BD2DE9F041044600F0A7F9C4B130 -:104C90000546022084F835000020216884F834009D -:104CA000086820F00100086026683068C0070BD053 -:104CB00000F094F9401B0528F6D903212022032097 -:104CC00042E00120BDE8F081306848F23F01CFF2B8 -:104CD0001001251D00EA010C2ECDD4E9050E41EA94 -:104CE0000C01114319432943D4E90778084340EAEA -:104CF0000E01606A3943042841EA080103D1D4E96E -:104D00000B231143194331607169042821F0070115 -:104D100041EA00050CD1D4E90A1045EA010538B191 -:104D20002046FEF713FB18B10121402201200BE0C1 -:104D300020467561FEF7ECFAE16D3F2202FA01F1BF -:104D40008160002201210020626584F83510BDE8F1 -:104D5000F0810000B0B5044690F83400012828D056 -:104D6000012084F83400A56D94F8350001281DD188 -:104D7000022084F83500002060652046FEF70EFB17 -:104D8000E26D3F23206803FA02F2216CAA600268F8 -:104D900042F01602026019B1016841F00801016099 -:104DA000016841F0010101600020B0BD002084F8DD -:104DB00034000220B0BD0000B0B5044600F00EF98A -:104DC000054640F21500C2F200000078611C18BFD1 -:104DD000044400BF00F002F9401BA042FAD3B0BD6A -:104DE00070B540F2880604460025C2F2000603E0D2 -:104DF0000135102D08BF70BD24FA05F0C007F7D0AB -:104E000056F82500002818BF8047F1E780B543F623 -:104E10001441C4F201010A68024208BF80BD086063 -:104E2000FFF7DEFF80BD00002DE9F04F83B000F1F9 -:104E30003E4202F1FF724FEAB22241F60047019270 -:104E4000C4F2020708224FF0010E00254FF0000ABD -:104E50004FF00008B84208BF072200920AE000BFE6 -:104E600008F101080AF1040AB8F1100F05F1020572 -:104E700000F0A4800C680EFA08FB14EA0B09EFD0CE -:104E80004C6804F0030CACF1010EBEF1010F11D817 -:104E90000322876802FA05F6CA68B743AA403A4374 -:104EA00082604268C4F3001722EA0B0207FA08F78F -:104EB0003A434260BCF1030F1CD0C26803238E68E2 -:104EC00003FA05F7BA4306FA05F73A43BCF1020FB5 -:104ED000C2600FD16FF0030202EA580202440AF0E6 -:104EE0001C060F23176A03FA06F40B69A743B340A5 -:104EF0003B431362026803234F68AB409A4307F0B9 -:104F00000303AB401A4317F4403F4FF0010E026019 -:104F1000A6D0002243F644030292C4F202031A68A8 -:104F200043F6004442F480421A601A68C4F2010455 -:104F300002F480420292029A28F003024FF6084BD4 -:104F40002244CFF6FF7B52F80B300AF00C070F26F5 -:104F5000BE4023EA060C019B009E072B38BF1E466D -:104F600006FA07F747EA0C0342F80B30A2684B68D1 -:104F700042EA090743F60C4CDE0258BF22EA090751 -:104F8000A760C4F2010CDCF800209E0242EA090787 -:104F900058BF22EA0907CCF8007062689E0342EA13 -:104FA000090758BF22EA090767602268DB0342EA63 -:104FB000090358BF22EA0903236051E703B0BDE8A3 -:104FC000F08F00000069084018BF01207047000002 -:104FD000002A08BF09048161704700004AF2CC40F2 -:104FE000C2F2010000687047F0B581B0B0B304466A -:104FF00090F83D0028B9002084F83C00204600F0DD -:10500000BFF8242084F83D002068016821F00101E8 -:105010000160016841F400410160016821F4004130 -:10502000016000F061FA48F28041C0F21E0140F6D2 -:105030000012656888424FF00001C0F23D0248F25C -:10504000A16C4FF0000338BF01219042C0F2010C67 -:1050500038BF0123654538BF0B4613B1012001B0AD -:10506000F0BD4DF68361C4F21B31A0FB0112216833 -:105070004FEA924E4B684FF4967623F03F0343EA93 -:1050800092434B6044F6D3530F6A0EFB06F6C1F20F -:105090006203A6FB033627F03F03B709654538BF17 -:1050A000970C7A1C1A430A62CA6948F2A0674CF648 -:1050B000FF73C0F20107BD4222EA030C0AD801388F -:1050C0006A00B0FBF2F001306FF31F30042898BF84 -:1050D00004202BE0A368A0F1010E9BB119206843C6 -:1050E000BEFBF0F00422013062F31F30000512D045 -:1050F0009BB119206843BEFBF0F00422013062F33B -:105100001F3011E005EB4500BEFBF0F001306FF3FE -:105110001F300005ECD1012008E005EB4500BEFB87 -:10512000F0F001306FF31F3040F4004040EA0C0013 -:10513000C8610868D4E9072320F0C0001043184371 -:105140000860886848F2FF3204F10C0790438CCF66 -:1051500018431043A6698860C86820F0FF003843F0 -:105160003043C860086840F001000860002020213A -:10517000206484F83D10206384F83E0001B0F0BD47 -:10518000B0B586B0006845F60001C4F20001002405 -:105190008842CDE90444CDE90244019431D045F27E -:1051A0000041C4F20001884254D1002443F6300586 -:1051B0000094C4F20205286801A940F002002860AA -:1051C000286800F00200009000984FF440700190B1 -:1051D0001220CDE90204032004900420059040F23F -:1051E0000040C4F20200FFF71FFE0094286940F45B -:1051F00000102861286900F400100090009806B0A3 -:10520000B0BD43F630050094C4F2020528681221AF -:1052100040F020002860286800F0200000900098EE -:105220000320019004900420059040F20040C4F255 -:105230000200CDE9021400F5805001A9FFF7F4FD4A -:105240000094286940F480002861286900F48000F7 -:105250000090009806B0B0BD40F215004AF2CC4173 -:10526000C2F20000C2F2010100780A68104408602E -:105270007047000080B543F60040C4F202000168A8 -:1052800041F400710160016841F4806101600168CE -:1052900041F480710160032000F06CF80F2000F0F1 -:1052A00005F800F02BF8002080BD0000B0B540F2FA -:1052B0001502C2F200024CF200011278C2F20101A2 -:1052C0004FF47A730968B3FBF2F20446B1FBF2F1D2 -:1052D000084601F05DF80F2C4FF001050CD858B9C5 -:1052E0004FF0FF3021460022002500F033F84CF249 -:1052F000A040C2F2010004602846B0BD80B582B073 -:10530000002043F640010190C4F202014A6842F4D1 -:1053100080424A604A6802F480420192019A0090F9 -:105320000868002240F08050086008680F2100F0F3 -:105330008050009000986FF0010000F00BF802B070 -:1053400080BD000080B505F09FFB80BD80B505F0F5 -:10535000AFFB80BD70B514460D46064605F0B8FBA0 -:105360002946224603F05CF80146304605F0B8FBBA -:1053700070BD000080B505F0CDFB80BD2DE9F0418A -:10538000002800F08B8043F60808C4F202080446A7 -:10539000D8F8F8030D4600F00700884207D288F8D5 -:1053A000F853D8F8F80300F00700A84276D1206837 -:1053B000810717D5410705D5D8F8001041F4E05111 -:1053C000C8F80010010705D5D8F8001041F4604175 -:1053D000C8F80010D8F80010A26821F0F0011143BD -:1053E000C8F80010C0073FD1D8F8F80300F0070054 -:1053F000A84207D988F8F853D8F8F80300F0070056 -:10540000A8424BD12068410707D5D8F80010E268C0 -:1054100021F4E0511143C8F80010000708D5D8F86E -:105420000000216920F4604040EAC100C8F8000093 -:1054300000F07EF8D8F800104FF6DC62C1F30311DB -:10544000C0F60002515C4CF2000220FA01F14CF26D -:10545000A040C2F201000068C2F201021160FFF731 -:1054600025FF0020BDE8F0816068811E022907D277 -:1054700058F8081C89015CBF0120BDE8F08110E0EC -:10548000012807D158F8081C89035CBF0120BDE83A -:10549000F08106E058F8081C890702D40120BDE815 -:1054A000F081D8F8001021F003010843C8F800008B -:1054B000FFF794FD064641F2883700BFD8F8000098 -:1054C000616800F00C00B0EB810F8DD0FFF786FD16 -:1054D000801BB842F2D90320BDE8F0814CF20000F5 -:1054E000C2F201000068704780B5FFF7F7FF43F68E -:1054F0000801C4F2020109684FF6EC62C1F382218F -:10550000C0F60002515CC84080BD000080B5FFF7C6 -:10551000E5FF43F60801C4F2020109684FF6EC62A8 -:10552000C1F34231C0F60002515CC84080BD0000AA -:1055300010B543F60404C4F20204606800F00C00E5 -:1055400008280AD0042819BF42F20040C0F2F40033 -:1055500041F60030C0F2B70010BD20682168236812 -:10556000490241F60031C0F2B70100F03F02C3F337 -:1055700088105CBF42F20041C0F2F401A1FB0001BF -:105580000023FAF7B5FE21680222C1F3014102EBC4 -:105590004101B0FBF1F010BD2DE9F04182B00028CF -:1055A00000F0A2800446007843F60006C007C4F26B -:1055B000020643D0B06800F00C00042805D1306822 -:1055C00080033BD56068C8BB8EE0B06800F00C007B -:1055D000082802D170684002F1D46568B5F5A02FA3 -:1055E0000AD0B5F5803F0BD0306820F480303060B1 -:1055F000306820F4802006E0306840F4802030607D -:10560000306840F480303060FFF7E8FC002D05463C -:1056100011D000BF3068800310D4FFF7DFFC401BBF -:105620006428F7D922E100BFFFF7D8FC401B6428AB -:105630004FF0030055D830688003F5D420788007F8 -:105640001AD5B06810F00C0F09D0B06800F00C004B -:10565000082840F08A807068400200F18680306837 -:10566000800702D5E06801283ED13068216920F02A -:10567000F80040EAC10030602078000738D4207874 -:1056800040074CD4A5695DB3B06800F00C00082851 -:1056900040F09E80012D27D07068E16900F48002FF -:1056A0008A4221D1216A00F03F028A421CD147F68A -:1056B000C071626A0140B1EB821F15D1A26A00235A -:1056C000CFF6FF7303EBC23200F440316FF30F02E9 -:1056D000914209D1E16A00F07060B0EB016F03D133 -:1056E000002002B0BDE8F081012002B0BDE8F081E9 -:1056F0006069002840F20000C4F2472057D0012121 -:10570000C0F8801EFFF76AFC054600BF706F800777 -:10571000B5D4FFF763FC401B0228F7D9A6E0306C34 -:1057200010F080580AD100200190306C40F0805079 -:105730003064306C00F080500190019847F200070F -:10574000C4F200073868C00524D4386840F480707B -:105750003860FFF743FC05463868C0051AD4FFF7E8 -:105760003DFC401B0228F7D980E0E068002851D0BA -:105770000020C4F2472001210160FFF72FFC0546FD -:10578000306880073FF571AFFFF728FC401B022807 -:10579000F6D96BE0A568052D50D0012D52D0306FA1 -:1057A00020F001003067306F20F004004DE0002150 -:1057B000C0F8801EFFF712FC054600BF706F80071F -:1057C0007FF55DAFFFF70AFC401B0228F6D94DE0DC -:1057D0000027C4F2472700203866FFF7FFFB022DA1 -:1057E00005460BD13068800158D5FFF7F7FB401B09 -:1057F00002284FF00300F5D973E700BF306880013D -:105800007FF56EAFFFF7EAFB401B02284FF0030065 -:10581000F4D966E70020C4F2472000210160FFF7B9 -:10582000DDFB0546306880077FF526AFFFF7D6FB26 -:10583000401B02284FF00300F4D952E7306F40F0CC -:1058400004003067306F40F001003067FFF7C6FB9F -:10585000002D054641F2883714D000BF306F800715 -:1058600013D4FFF7BBFB401BB842F7D9032002B0AB -:10587000BDE8F081FFF7B2FB401BB8424FF00300D8 -:105880003FF62FAF306F8007F4D4B8F1000F7FF4EC -:10589000F9AE306C20F080503064F3E604F11C0562 -:1058A0002FCD08430021CFF6FF7140EA821001EBB3 -:1058B000C3316FF30F0140EA0560084370600120B7 -:1058C0003866FFF78BFB0446306880013FF508AF70 -:1058D000FFF784FB001B02284FF00300F4D900E718 -:1058E00080B503F09BF8022808BF80BD40F2D001CC -:1058F000C2F2000101EB40108069002818BF804708 -:1059000080BD000070B538B10446406A30B1002057 -:10591000206104F1140007E0012070BD6068B0F55B -:10592000827F03D004F11C00002101600026A662E2 -:1059300094F8510020B9204684F8506000F03CF8FB -:10594000022084F8510094E80F0001F48271056888 -:1059500002F4044225F040050560114403F400629E -:105960002369114403F002026369114403F0010248 -:10597000A369E569114403F40072114405F038028B -:10598000256A114405F08002A56A114305F400520E -:1059900011430160626A042101EA134102F010021E -:1059A00011444160C16921F40061C1610120666553 -:1059B00084F85100304670BD2DE9F04F87B00446A1 -:1059C00043F200070068C4F201070026B8420696B9 -:1059D000CDE904660396029602D007B0BDE8F08FC9 -:1059E00043F630000196C4F20200416902AD41F471 -:1059F00080514161416946F2404801F48051019172 -:105A00000199019601684FF0020941F0020101601D -:105A100001684FF0030A01F002010191019901961A -:105A200001684FF0050B41F0010101600068294653 -:105A300000F00100019001981820029007F55440F1 -:105A4000C4F20208CDE90396CDF814A0CDF818B041 -:105A5000FFF7EAF98020CDE9020904A880E8400CAC -:105A600007F550402946FFF7DFF940F2FC15C2F276 -:105A700000054FF440304FF0C0674FF48069C5E92E -:105A800008062846C5E90087C5E90266C5E9049607 -:105A9000C5E90666FFF7F6F8002818BFFDF778FE9F -:105AA000E564AC634DF2BC3508F11800C2F20105A3 -:105AB0004021C5E9000705F10800002280E8060240 -:105AC0004FF40030C5E908022846C5E90522EA611D -:105AD000FFF7D8F8002818BFFDF75AFEA564AC639D -:105AE00007B0BDE8F08F00002DE9F04182B0044618 -:105AF00090F85100012815D10E4600294FF0010001 -:105B000060D01746002A5DD060681D46B0F5827FE0 -:105B100002D1A068002858D0FFF760FA94F850101E -:105B2000012903D1022002B0BDE8F08180460120A6 -:105B300084F85000042084F8510000206065A663BA -:105B4000A787E7872063A086E086A1682064B1F577 -:105B5000004F606408D12068016821F040010160B5 -:105B6000016821F48041016020680168490603D47E -:105B7000016841F040010160E168E08F91B30028C5 -:105B800055D06E1C0BE000BFC068A16B21F8020B62 -:105B9000A163E08F0138E087E08F002847D02068BC -:105BA0008168C907F0D1FFF719FA002EF4D0A0EBF5 -:105BB0000800A842F0D3012084F85100002084F8A6 -:105BC0005000032002B0BDE8F081042084F85100A9 -:105BD0002046314632463B46009500F09FF902B020 -:105BE000BDE8F08118B36E1C0BE000BF007BA16B19 -:105BF0000870A06B0130A063E08F0138E087E08F70 -:105C0000A8B120688168C907F0D1FFF7E7F9002E35 -:105C1000F5D0A0EB0800A842F1D3012084F8510090 -:105C2000002084F85000032002B0BDE8F081204637 -:105C30002946424602F064FE00281CBF2020606511 -:105C4000012084F85100002084F85000606D002885 -:105C500018BF012002B0BDE8F081000010B5044675 -:105C600090F8510001281CBF022010BD13460A46BF -:105C700000294FF0010018BF002B00D110BDA06813 -:105C800058B96168B1F5827F07D1042084F85100CA -:105C90002046114600F03EFA10BD94F8501001293C -:105CA00004BF022010BD012184F85010042184F8A3 -:105CB00051100021B0F5004F6165A263A387E3870F -:105CC000C4E91011A186E18608D12068036823F099 -:105CD00040030360036823F480430360E06C48F2F0 -:105CE000A97E48F2CD73C0F6000EC0F60003C0E9ED -:105CF0000F3E48F28573C0F60003D4F800C0C0E937 -:105D00001331E38F0CF10C01FFF724F840B1606D03 -:105D100040F010006065002084F85000012010BDA4 -:105D200021680868400603D4086840F04000086015 -:105D3000002084F850004A6842F020024A604A6815 -:105D400042F001024A6010BD80B502F067FE0228F1 -:105D500008BF80BD40F2D001C2F2000101EB40104B -:105D60004068002818BF804780BD000080B502F061 -:105D700055FE022808BF80BD40F2D001C2F20001EA -:105D800001EB40100069002818BF804780BD00006B -:105D90002DE9F04182B01D4616460F460446FFF736 -:105DA0001DF994F8511001290DD18046002F4FF0B4 -:105DB000010018BF002E02D102B0BDE8F08194F8B6 -:105DC0005000012803D1022002B0BDE8F08101207B -:105DD00084F85000032084F8510000206065276398 -:105DE000A686E686A063A087E087A168C4E91000C4 -:105DF000B1F5004F08D12068016821F04001016031 -:105E0000016841F48041016020680168490603D4BB -:105E1000016841F0400101606168731EE268B1FAF7 -:105E200081F1B3FA83F349095B09B2F5006F41EAE6 -:105E3000030124D139B1216B0988C160B81C2063EA -:105E4000E08E0138E086E08E002846D06E1C09E026 -:105E5000216B31F8022BC2602163E08E0138E086AD -:105E6000E08ED0B3206881688907F1D4FFF7B6F8D7 -:105E7000002EF5D0A0EB0800A842F1D323E039B101 -:105E800039780173206B01302063E08E0138E086A1 -:105E9000E08E10B36E1C0AE0216B09780173206B51 -:105EA00001302063E08E0138E086E08EA8B12068E2 -:105EB00081688907F0D4FFF791F8002EF5D0A0EBA8 -:105EC0000800A842F1D3012084F85100002084F892 -:105ED0005000032002B0BDE8F0812046294642462A -:105EE00002F056FD00281CBF20206065A06838B96C -:105EF000002001902068C16801918068019001989C -:105F0000012084F85100002084F85000606D0028C2 -:105F100018BF012002B0BDE8F08100002DE9F04378 -:105F200081B01E4615460F460446FFF757F894F811 -:105F300051108146012909D06068B0F5827F14D1E3 -:105F400004294FF0020007D1A16829B9002F4FF0B2 -:105F5000010018BF002D02D101B0BDE8F083002E72 -:105F6000FAD094F85000012803D1022001B0BDE816 -:105F7000F083012084F8500094F851000021042897 -:105F80001CBF052084F851006165A563E687A687DC -:105F90002763E6862068A686216461640168490655 -:105FA00003D4016841F0400101606168731EE2683A -:105FB000B1FA81F1B3FA83F3DDF8208049095B0976 -:105FC000B2F5006F41EA030139D139B1216B09887B -:105FD000C160B81C2063E08E0138E086012608F11C -:105FE000010500BFE08E10B9E08F00286CD020685A -:105FF000816889070CD5E18E012E09D141B1216B51 -:10600000002631F8022BC2602163E18E0139E1865E -:106010008168C9070AD0E18F41B1C068A16B012630 -:1060200021F8020BA163E08F0138E087FEF7D6FF6D -:10603000002DD7D0A0EB09004045D3D33AE039B1C9 -:1060400039780173206B01302063E08E0138E086DF -:10605000012608F1010500BFE08E08B9E08F98B372 -:106060002068816889070DD5E18E012E0AD149B1DA -:10607000216B002609780173206B01302063E08ECC -:106080000138E08620688168C9070BD0E18F49B1EB -:10609000C068A16B01260870A06B0130A063E08F7F -:1060A0000138E087FEF79AFF002DD5D0A0EB09005C -:1060B0004045D1D3012084F85100002084F85000DD -:1060C000032001B0BDE8F083204641464A4602F075 -:1060D0005FFC40B120206065002084F85000012062 -:1060E00001B0BDE8F083A06838B9002000902068B6 -:1060F000C1680091806800900098012084F85100E8 -:10610000002084F85000606D002818BF012001B005 -:10611000BDE8F08370B5044690F85100012806D11F -:1061200000294FF0010018BF002A0CD170BD65682E -:10613000B5F5827F0ED104284FF00200F6D1A56894 -:10614000002DEDD0F2E7002B08BF70BD94F8500091 -:10615000012801D1022070BD012084F8500094F87C -:106160005100002604281CBF052084F851006665F4 -:106170002163A386E386A263A387E387C4E910664D -:1061800094F8510048F2A97148F2C173C0F60001B9 -:10619000C0F60003042808BF0B4648F2CD7048F64D -:1061A000A501C0F60000C0F6000108BF0146E06C82 -:1061B0002568C0E90F1348F28571C0F60001C0E9F7 -:1061C0001316E38F05F10C01FEF7C4FD38B1606DC5 -:1061D00040F010006065012084F8506070BD2268B6 -:1061E000216BA06C536843F001035360C0E90F6654 -:1061F000C0E91366E38E0C32FEF7ACFD40B1606D72 -:1062000040F010006065002084F85000012070BD4F -:1062100021680868400603D4086840F04000086020 -:10622000002084F850004A6842F020024A604A6820 -:1062300042F002024A6070BD10B5044690F8510069 -:1062400001280AD100294FF0010018BF002A00D10F -:1062500010BD94F85000012801D1022010BD01208A -:1062600084F850000320002384F851006365216303 -:10627000A286E286A363C4E91033A387E387A068FC -:10628000B0F5004F08D12068026822F04002026099 -:10629000026842F480420260A06C48F2B57C48F685 -:1062A0003502C0F6000CC0F60002C0E90F2C48F21F -:1062B0008572C0F60002D4F800E0C0E91323E38E33 -:1062C0000EF10C02FEF746FD40B1606D40F010008B -:1062D0006065002084F85000012010BD2168086826 -:1062E000400603D4086840F040000860002084F8AD -:1062F00050004A6842F020024A604A6842F00202B6 -:106300004A6010BD80B502F089FB022808BF80BD3D -:1063100040F2D0014001C2F200010858002818BF25 -:10632000804780BD80B502F079FB022808BF80BDA0 -:1063300040F2D001C2F2000101EB4010C068002819 -:1063400018BF804780BD000080B502F067FB0228BF -:1063500008BF80BD40F2D001C2F2000101EB401045 -:106360008068002818BF804780BD000080B502F01B -:1063700055FB022808BF80BD40F2D001C2F20001E7 -:1063800001EB40104069002818BF804780BD000025 -:1063900080B503F00FFA80BD704700007047000021 -:1063A000B0B590F83C20012A04BF0220B0BD01F135 -:1063B00008053CCDD1E900CE23F47C5322F4705281 -:1063C0001A432EF4F0431A432CF4E0431A4324F406 -:1063D000C0431A432A43C96922F480420368114327 -:1063E0005964002180F83C100846B0BD10B590F803 -:1063F0003C20012A4FF0020252D0012380F83C30A9 -:1064000080F83D200268D2F804E0D2F808C00C6899 -:106410002EF07003234341F2FF74C4F20004A24241 -:1064200053600DDC40F2FF73C4F200039A4215DCA6 -:10643000B2F1804F29D040F20043C4F2000322E0C1 -:1064400040F2FF33C4F201039A4212DC41F600032A -:10645000C4F200039A4218D0002312E040F6000371 -:10646000C4F200039A4210D040F60043C4F2000385 -:1064700009E044F20003C4F201039A4205D040F25D -:106480000043C4F201039A4204D149682CF080030E -:10649000194391600121002280F83D1080F83C20D2 -:1064A000104610BD002804BF0120704710B50446F7 -:1064B00090F83D0028B9002084F83C00204600F008 -:1064C0001FF8022084F83D002068211D03F0F8F930 -:1064D000012084F8460084F83E0084F83F0084F8E8 -:1064E000400084F8410084F8420084F8430084F8B6 -:1064F000440084F8450084F83D00002010BD0000F1 -:1065000080B582B0006844F20041C4F201018842C3 -:1065100016D040F20041C4F20101884227D1002088 -:10652000019043F64400C4F20200016841F0020108 -:106530000160006800F002000190019802B080BD87 -:106540000020009043F64400C4F2020001680022DB -:1065500041F4003101600068052100F40030009032 -:1065600000981920FEF7F6FE1920FEF7EFFE02B0A4 -:1065700080BD000010B5044690F83C0001284FF0A3 -:10658000020008BF10BD012284F83C2084F83D00C1 -:1065900020684FF6777382689A4382600A684F2AB0 -:1065A0000FDC1F2A22DD202A23D0302A21D0402AC6 -:1065B0004DD14B68CA68194603F002FB20684021A0 -:1065C0003BE06F2A17DDB2F5005F20D0B2F5805FA7 -:1065D0002AD0702A3BD1D1E9012CCB68614603F067 -:1065E00017FA2068816841F077011AE00AB1102A91 -:1065F0002DD1114621E0502A18D0602A27D14B68AE -:10660000CA68194603F0EEFA2068602115E0D1E966 -:10661000012CCB68614603F0FBF92068816841F4E6 -:106620008041816000200BE0002009E04B68CA68CF -:10663000194603F0C5FA2068502103F0F5F900204F -:10664000012184F83D10002184F83C1010BD012088 -:10665000F6E7000070470000B0B504460068C16866 -:10666000026902EA0105A9071DD4680731D4280789 -:1066700047D4E8065CD4E80773D128067BD46806C3 -:1066800006D520686FF040010161204600F0E0F976 -:10669000A80658BFB0BD20686FF0200101612046F8 -:1066A000FFF77CFEB0BD6FF002010161012121778F -:1066B0008069800703D02046FFF7CCFF05E0204625 -:1066C00000F0B2F8204600F02DF90020207768078E -:1066D000CDD520686FF00401016102212177806926 -:1066E00010F4407F03D02046FFF7B4FF05E02046BA -:1066F00000F09AF8204600F015F9002020772807CE -:10670000B7D520686FF00801016104212177C069C5 -:10671000800703D02046FFF79DFF05E0204600F0EC -:1067200083F8204600F0FEF800202077E806A2D586 -:1067300020686FF01001016108212177C06910F411 -:10674000407F03D02046FFF785FF05E0204600F09C -:106750006BF8204600F0E6F800202077E8073FF4C9 -:106760008CAF20686FF001010161204600F06EF9E6 -:1067700028067FF584AF20686FF080010161204614 -:10678000FFF70AFE68067FF583AF7AE780B586B02B -:10679000006844F20042C4F2010200219042CDE9B7 -:1067A0000411CDE9021101911BD040F20041C4F265 -:1067B0000101884235D10020009043F63000C4F238 -:1067C0000200016841F004010160006800F004006B -:1067D000009000988020019040F60000C4F2020072 -:1067E00015E043F630000091C4F20200016841F068 -:1067F00020010160006800F0200000900098402017 -:10680000019040F60000C4F2020000F54060022151 -:1068100002910021CDE903110321059101A9FEF7A1 -:1068200003FB06B080BD000070470000B0B5044611 -:1068300090F83C00012804BF0220B0BD0D464FEA8D -:10684000B2010120032984F83C0037D8DFE801F0C9 -:10685000020A12222068294603F0EEF8206850F858 -:10686000181F0EE02068294603F018F9206850F838 -:10687000181F16E02068294603F046F9206850F8F2 -:106880001C1F41F008010160016821F00401016052 -:1068900029690FE02068294603F06AF9206850F85A -:1068A0001C1F41F400610160016821F480610160F6 -:1068B000296909020268114301600020002184F85F -:1068C0003C10B0BD002804BF0120704710B504463D -:1068D00090F83D0028B9002084F83C00204600F0E4 -:1068E0001FF8022084F83D002068211D02F0E8FF17 -:1068F000012084F8460084F83E0084F83F0084F8C4 -:10690000400084F8410084F8420084F8430084F891 -:10691000440084F8450084F83D00002010BD0000CC -:10692000704700007047000010B5044641B10829C7 -:1069300009D0042914BF04F1410004F13F0004E030 -:1069400004F13E0001E004F14000007801281CBF82 -:10695000012010BD022041B1082909D0042914BF2B -:1069600084F8410084F83F0004E084F83E0001E030 -:1069700084F840002068012203F038F8206841F2D2 -:10698000FF71C4F2000188420FDC40F2FF71C4F2D3 -:106990000001884217DCB0F1804F49D040F200413D -:1069A000C4F20001884243D049E040F2FF32C4F211 -:1069B0000102904214DC41F60003C4F20003984245 -:1069C00036D0002314E040F60001C4F200018842F2 -:1069D0002ED040F60041C4F20001884228D02EE0BB -:1069E00044F20003C4F20103984221D040F2004374 -:1069F000C4F20103984222D1436C884243F400431D -:106A00004364C2DD904207DC41F60001C4F200019C -:106A100088420DD0002107E044F20001C4F20101D8 -:106A2000884205D040F20041C4F20101884206D1FB -:106A3000816801F00701062904BF002010BD01682C -:106A400041F001010160002010BD0000704700000E -:106A5000704700007047000080B503F07DFD0528F9 -:106A600008BF80BD4CF20C5100EBC000C2F2010126 -:106A700001EB80000069002818BF804780BD00003E -:106A8000B0B582B0036804461868D9685A6900F046 -:106A90002F05202D01F0200505D125B1204603F05A -:106AA00085FD02B0B0BD5FEA007C1EBF02F0010EA2 -:106AB00001F4907212EB0E024AD1226B0840C1061B -:106AC0003DD5012A3BD100200190186801905868FB -:106AD000019001985869400642D4A08DE18DE28D65 -:106AE000002A1CBF401A5FEA004101D102B0B0BDCC -:106AF000216851E8031F226821F4907142E80313D2 -:106B0000002BF5D1216851E8051F226821F0010111 -:106B100042E80513002BF5D1202184F84210002112 -:106B2000216300BF216851E8031F226821F0100192 -:106B300042E80313002BF5D10221616354E0010602 -:106B400054D44006D2D5204603F0ECFC02B0B0BDD0 -:106B5000C20718BF11F480725DD1420761D467E0AB -:106B6000E06B016849688AB2002A44D0A38D9A423A -:106B700041D2E185C069B0F5807F30D0206850E80F -:106B8000030F216820F4807041E80302002AF5D148 -:106B9000206850E8050F216820F0010041E8050257 -:106BA000002AF5D1206850E8050F216820F0400048 -:106BB00041E80502002AF5D1202084F84200002097 -:106BC000206300BF206850E8030F216820F0100008 -:106BD00041E80302002AF5D1E06BFDF73BFF0220FC -:106BE0006063A08DE18D401A81B20FE0204603F072 -:106BF00005FE02B0B0BDA18D91427FF477AFC069B0 -:106C0000B0F5807F7FF472AF022060632046FFF70B -:106C100021FF02B0B0BD626C42F001026264420723 -:106C200006D5BEF1000F03D0626C42F0020262642E -:106C3000820706D5BEF1000F03D0626C42F0040259 -:106C40006264BCF1000F06D55EEA050203D0626CF7 -:106C500042F008026264626C002A3FF447AF0840C9 -:106C6000800602D5204603F0A1FC20684069616CD3 -:106C700000F0400001F00801401827D0204603F042 -:106C800029FC2068406940061BD500BF206850E8F9 -:106C9000050F216820F0400041E80502002AF5D1E7 -:106CA000E06B70B14AF28931C0F600010165FDF771 -:106CB00011FF00283FF41AAFE06B016D884702B066 -:106CC000B0BD2046FFF7C8FE02B0B0BD2046FFF7BA -:106CD000C3FE0020606402B0B0BD0000002804BF05 -:106CE0000120704710B5044690F8410028B90020F3 -:106CF00084F84000204600F021F8242084F8410068 -:106D00002068C16821F40051C160204603F0B2FC44 -:106D10002068016921F490410161416921F02A0153 -:106D20004161C16841F40051C160002020216064CC -:106D300084F8411084F84210606310BD2DE9F043DF -:106D400087B00446006840F6FF71C4F20101884232 -:106D50004FF000010691CDE90411CDE902115FDC8D -:106D600044F20041C4F20001884200F0B58044F6CC -:106D70000001C4F20001884240F04A81002643F637 -:106D800030000196C4F20200016941F480210161E2 -:106D9000016901F48021019101990196016841F096 -:106DA00004010160006802A900F00400019001984C -:106DB0004FF4406002900220CDE9030603200590C5 -:106DC000072006900020C4F2020000F50060FEF7E4 -:106DD0002BF840F25C2546F22800C2F20005C4F20E -:106DE00002004FF000614FF480624FF4807385E839 -:106DF00043002846C5E90362C5E90566C5E90736CB -:106E00006E62FDF73FFF002818BFFCF7C1FC27208A -:106E100005210022E563AC63FEF79CFA272056E0CB -:106E200041F20041C4F20101884200F0828041F247 -:106E30000001C4F20101884240F0EA80002643F6D6 -:106E400030000196C4F202004169002441F01001B3 -:106E500041614169C4F2020401F0100101910199FC -:106E60000196016802AD41F00201016001684FF036 -:106E7000020801F0020101910199019601684FF0A9 -:106E8000030941F0010101600068072700F00100DB -:106E9000019001988020029004F580602946CDE998 -:106EA0000386CDF814900697FDF7BEFF4FF40070EF -:106EB000CDE9020820462946CDE904690697FDF789 -:106EC000B3FF252005210022FEF744FA2520FEF716 -:106ED0003DFA07B0BDE8F083002043F63001019091 -:106EE000C4F202010A6942F400320A610A6902F43A -:106EF00000320192019A01900A6842F008020A6089 -:106F0000096801F0080101910199602102910221B3 -:106F1000CDE9031003200590072006900020C4F25D -:106F2000020000F5406002A9FDF77EFF07B0BDE852 -:106F3000F083002643F630000196C4F20200416956 -:106F400046F2280841F0200141614169C4F202087B -:106F500001F02001019101990196016841F0400181 -:106F60000160006802A900F04000019001984FF410 -:106F7000844002900220CDE90306032005900820FA -:106F800006900020C4F2020000F5C050FDF74CFF4F -:106F90004DF21C4508F58060C2F201054FF02067F4 -:106FA0004FF48069C5E900072846C5E90266C5E9CE -:106FB0000496C5E90666C5E90866FDF763FE002884 -:106FC00018BFFCF7E5FBE563AC6340F2BC2508F5B0 -:106FD0008F60C2F200054021C5E9000705F10800F5 -:106FE00080E842022846C5E90566C5E907666E6283 -:106FF000FDF748FE002818BFFCF7CAFB4720052113 -:107000000022A563AC63FEF7A5F94720FEF79EF9C1 -:1070100007B0BDE8F083000080B590F84230202B27 -:107020001CBF022080BD00294FF0010318BF002AB9 -:1070300001D1184680BD0023036303F089FB03469A -:10704000184680BD80B503F087FA052808BF80BDCB -:107050004CF20C5100EBC000C2F2010101EB8000C8 -:10706000C068002818BF804780BD000080B503F0CD -:1070700073FA052808BF80BD4CF20C5100EBC0002C -:10708000C2F2010101EB80008068002818BF804730 -:1070900080BD0000B0B5044690F8410020281CBF18 -:1070A0000220B0BD4FF00100C9B3002A134608BF4B -:1070B000B0BD4FF0000C21202162A384E384C4F80A -:1070C00044C084F84100A06B4AF2894E4AF2C94597 -:1070D0002268C0F6000EC0F60005C0E90FE54AF2CE -:1070E0009935C0F600050432C0E9135CFDF732FEA5 -:1070F00030B110206064202084F841000120B0BD30 -:1071000020686FF040010160206850E8050F216899 -:1071100040F0800041E80502002AF5D10020B0BD12 -:10712000034690F8410020281CBF02207047002928 -:107130004FF0010018BF002A00D1704719620020EB -:1071400021219A84DA84586483F841101968CA6846 -:1071500042F08002CA60704780B503F0FDF905284F -:1071600008BF80BD4CF20C5100EBC000C2F201011F -:1071700001EB80004068002818BF804780BD0000F8 -:1071800080B503F0E9F9052808BF80BD4CF20C5129 -:1071900000EBC000C2F2010151F82000002818BF26 -:1071A000804780BDFEE7000045F6DF1110EE100AB3 -:1071B000C5F63771B6EE001AA1EB600020EE011A99 -:1071C00000EE100A21EE002A22EE002AB7EE083A5D -:1071D00033EE422A22EE000A21EE001A20EE011AB6 -:1071E00033EE411A20EE010A7047000040F26111AF -:1071F000884204BF01207047B0F5806F04BF0320B0 -:107200007047A0F29F60B0FA80F0400940007047DC -:1072100010B52DED088B88B3B0EE408A90ED010AD1 -:1072200090ED069A90ED021A90ED07AA29EE000A59 -:1072300038EE400A2AEE011A30EE41BA04461BEE3F -:10724000100A03F019FC002808BFB0EE4B8A94ED39 -:10725000030A94ED041A94ED052A20EE080A29EE9B -:10726000011A30EE010A2AEE021A30EE010A84ED0C -:10727000068A84ED079ABDEC088B10BD9FED020ACB -:10728000BDEC088B10BD00BF00000000002808BF47 -:10729000704710B5F5EE400A0446C0ED000A002024 -:1072A000F1EE10FAA061E0612EDD80EE200A9FED84 -:1072B0001E1A81EE000A07F0E1FC9FED1C1AB7EEE2 -:1072C000002A20EE011A31EE023A20EE000ABFEE4B -:1072D000005A30EE033A30EE055A32EE411A80EE93 -:1072E000034A35EE055A30EE010A85EE035A80EE68 -:1072F000030A34EE041A84ED034A84ED041A84ED83 -:10730000054A84ED015A07E04FF07E519FED050AD2 -:10731000C4E903106061606084ED020ABDE81040BA -:10732000704700BF00000000DB0F4940F304B53F89 -:1073300010B52DED048B10B3B0EE408A90ED030A2A -:1073400090ED041A90ED052A30EE010A30EE020AA3 -:1073500088EE009A044619EE100A03F07DFB00281F -:107360002046B0EE480A08BFB0EE489A84ED069A6F -:1073700084ED079AFFF74CFFBDEC048B10BD9FED29 -:10738000020ABDEC048B10BD00000000B0B501285E -:1073900002D9FF2040B2B0BD4CF2B455C2F2010593 -:1073A000044655F8200060B98820FBF709FA002848 -:1073B00045F82400EDD08821F9F7CFF955F82400DD -:1073C0000470002040B2B0BD80B584B0D8B100F0E8 -:1073D00029F8014600284FF0FC0015D08A888DF866 -:1073E0000C00009208228DF804204FF0FF32CDF8F7 -:1073F0000520029208786946FBF776F8002818BF46 -:107400004FF0FF3000E0FE2040B204B080BD00002D -:1074100001288FBF00204CF2B451C2F2010151F893 -:10742000200070472DE9F04128B3057880462846B2 -:10743000FFF7EEFFF8B1014690F88400D8B10A1DBD -:10744000002309E00126002E08BFBDE8F08191F875 -:1074500084600133B3420ED252F82340002CF1D0A5 -:107460002678AE42EED16688B8F80270BE42E9D105 -:1074700000262046E7E70020BDE8F08110B50C4665 -:10748000014600284FF0FE0018BF002C01D140B289 -:1074900010BD0846FFF7C6FF20B1214600F0D4F822 -:1074A00040B210BDFC2040B210BD0000B0B52DEDC3 -:1074B000028B00286BD00D46002968D00446B5F831 -:1074C00001009FED340A0004DFED330A00BA1021F9 -:1074D00004F00AFE84ED070AE8782979000140EA01 -:1074E0001110BBEE0E0AF3EE0E0A0C2104F0FCFDA7 -:1074F00084ED080A2879697900F00F00B0EE408A1F -:1075000041EA0020BAEE080AF2EE080A0C2104F063 -:10751000EBFD84ED090AA87994ED071A02EE100A32 -:10752000B5EE401AB8EE422AF1EE10FA84ED0A2ABE -:107530000BDA9FED1A2A00BF31EE021AB5EE401A9F -:10754000F1EE10FAF8DB84ED071A94ED071A9FEDBF -:10755000132AB4EE421AF1EE10FA0ADB9FED103A4C -:1075600031EE031AB4EE421AF1EE10FAF8DA84EDB5 -:10757000071AE07958B132EE411AB1EE482AB1EE5D -:10758000400A84ED071A84ED082A84ED090ABDEC4F -:10759000028BB0BDDA0F49C1DA0F4941DB0FC94098 -:1075A000DB0FC9C070B538B104460078FFF7EEFEB6 -:1075B00028B1FF2040B270BDFE2040B270BD2078DF -:1075C000FFF726FF0028F4D090F8842005469AB1F2 -:1075D000281D002105E000BF95F88420013191426B -:1075E0000AD250F82120002AF6D0528863889A42A5 -:1075F000F2D1FD2040B270BD1F2ADAD83020FBF74F -:10760000DFF80028D5D030210646F9F7A6F8206823 -:107610006168C6E900010020E27930722078618853 -:1076200032760322FAF71AFE18B13046FBF73CF81F -:10763000BFE795F8840005EB8001013085F88400F0 -:10764000002040B24E6070BD2DE9F04381B02DEDB9 -:10765000048B84B0044600284FF0FE0071D00D4624 -:1076600000296ED095ED001A95ED012A95ED023AAC -:10767000E079B1EE430AB1EE428AB1EE419A0028B8 -:1076800002BFB0EE430AB0EE428AB0EE419ADFED9F -:10769000300A9FED301A102003F0C2FB8046FBEE4B -:1076A0000E0AB3EE0E1AB0EE480A0C2003F0B8FB37 -:1076B0009FED298A95ED030A9FED281A0746F0EE03 -:1076C000480A0C2003F0ACFB95ED040A8146B1EEAC -:1076D000041AF0EE480A0C2003F0A2FB0646FAEE6C -:1076E000080AB2EE081AB0EE490A0C2003F098FB23 -:1076F0003A094FEA1923A5888DF8072022784FEA26 -:10770000182143EA0713070A47EA061736090095C6 -:1077100008258DF805108DF80C00694610468DF887 -:1077200004508DF806808DF808308DF809908DF89A -:107730000A608DF80B70FAF7D7FE002818BF4FF0DB -:10774000FF3040B204B0BDEC048B01B0BDE8F08363 -:10775000DA0F49C1DA0F4941000000000000FA4386 -:10776000F0B587B0A0B3077805463846FFF750FE5E -:10777000A8B390F8841069B3011D002205E000BF92 -:1077800090F8843001329A4224D251F82240002CE1 -:10779000F6D063886E88B342F2D1F4B169886D4641 -:1077A00038462A460023FAF753FCD0B1FBF7D6F847 -:1077B000D4E90423801A48F2A162C0F2010299417F -:1077C000801A71F1000024BF00202072FF2014E015 -:1077D000FE2012E00024002CE0D1FC200DE0FC2073 -:1077E0000BE001202072FBF7B9F8C4E9040105F1B0 -:1077F0000D012046FFF75AFE002040B207B0F0BD51 -:10780000B0B5012802D9FF2040B2B0BD40F2281522 -:10781000C2F20005044655F8200060B94820FAF786 -:10782000CFFF002845F82400EDD04821F8F795FF58 -:1078300055F824000470002040B2B0BDB0B584B04B -:1078400048B304780546204600F064F828B36988F8 -:10785000A1F201210A295BD8012202FA01F10A07EB -:107860001DD111F0F00F30D040F2FF11009108212E -:107870008DF804100A3000216A4600BF00EB410376 -:107880005B7802EB41056B7110F81130013104296E -:10789000AB71F3D131E0FE2037E0FC2035E04FF44E -:1078A0000071009108218DF80410023000216A4611 -:1078B00000EB41035B7802EB41056B7110F811306E -:1078C00001310429AB71F3D117E040F2FF2100919F -:1078D00008218DF80410123000216A4600EB4103A4 -:1078E0005B7802EB41056B7110F81130013103290F -:1078F000AB71F3D10020ADF80B0069462046FAF7D2 -:10790000F3FD002818BF4FF0FF3040B204B0B0BD07 -:10791000FF20FAE701288FBF002040F22811C2F2B1 -:10792000000151F82000704748B102280BD001280F -:1079300014BF4FF6FF704FF4804000B2704742F220 -:10794000107000B2704747F2305000B2704700002C -:10795000022905D2A0F2012189B2072909D805E040 -:1079600007D1A0F2052189B2062902D8013840B218 -:107970007047FF2040B27047F0B581B008B30746AA -:107980000078FFF7C7FFE0B1014690F84400C0B1AE -:1079900001F11802002306E0012585B191F8445059 -:1079A0000133AB420DD252F82340002CF4D065884D -:1079B0007E88B542F0D100252046002DEED101B0E1 -:1079C000F0BD002001B0F0BD022884BFB7EE000A70 -:1079D000704740B202A101EB800090ED000A7047B1 -:1079E000000010422CA099410000803F70B538B1D2 -:1079F00004460078FFF704FF28B1FF2040B270BDB5 -:107A0000FE2040B270BD2078FFF784FF0028F4D03C -:107A100090F8442005469AB105F11800002104E0D1 -:107A200095F84420013191420AD250F82120002AD1 -:107A3000F6D0528863889A42F2D1FD2040B270BDE0 -:107A40000A2ADAD85020FAF7BBFE0028D5D006461D -:107A500020686168C6E9000106F118002821F8F7DE -:107A60007CFE62792078618886F828200322FAF764 -:107A7000F5FB18B13046FAF717FEBEE795F844005B -:107A800005EB8001013085F84400002040B28E6192 -:107A900070BD000080B59FED020A00F003F880BDC4 -:107AA0000000000070B52DED048B00283ED0054687 -:107AB0000078B0EE408AFFF72DFFC8B3B7EE000A9A -:107AC000B4EE408AF1EE10FAC8BFB0EE408ABFEEC5 -:107AD000000AB4EE408A0446F1EE10FAB8BFB0EEE8 -:107AE000408A6879B1EE489A0028284608BFB0EE6F -:107AF000489AFFF741FFE8B12E7968883146FFF7D1 -:107B000027FF002818D405463046FFF70DFF00EE8A -:107B1000100AB8EEC00A29EE000ABDEEC00A10EE47 -:107B2000100A04EB45014880002006E0FE2004E036 -:107B3000FC2002E0FC2000E0FF2040B2BDEC048B02 -:107B400070BD00002DE9F04F87B0002852D00446E8 -:107B50000078FFF7DFFE00284ED0054690F844007D -:107B600000284BD005F11806E8464FF0010A40F214 -:107B7000E93B4FF0000908E00121002941D095F8C8 -:107B8000441009F1010989453AD256F82970002FAD -:107B9000F2D07A8861888A42EED12078424600236A -:107BA000FAF756FA70B1FAF7D9FED7E90823801A26 -:107BB0009941B0EB0B0071F1000016D3002038762C -:107BC000FC2013E087F818A0FAF7C8FEC7E90801FF -:107BD0003846414600F05CFB07F108030FCB07F184 -:107BE0002C0C8CE80F00002000E0FF200021002971 -:107BF000C5D106E0FE2004E0FC2002E0FC2000E00D -:107C0000FC2040B207B0BDE8F08F000010B540F294 -:107C1000D41046F20041C2F20000C4F20001032277 -:107C200000234FF0807480E80E0000F10C014FF447 -:107C3000102C4FF4001E81E8085084618383FCF708 -:107C4000E3FC002818BFFBF7A3FD10BD10B54DF2F3 -:107C5000943046F60001C2F20100C4F20001032292 -:107C600000234FF0807480E80E0000F10C014FF407 -:107C7000102C4FF4001E81E8085084618383FCF7C8 -:107C8000C3FC002818BFFBF783FD10BD80B582B090 -:107C9000002043F630010190C4F202010A6842F468 -:107CA00000120A600A6802F400120192019A009020 -:107CB0000868002240F4800008600868052100F48C -:107CC0008000009000980C20FDF744FB0C20FDF78D -:107CD0003DFB392005210022FDF73CFB3920FDF753 -:107CE00035FB3A2005210022FDF734FB3A20FDF751 -:107CF0002DFB3B2005210022FDF72CFB3B20FDF74F -:107D000025FB452005210022FDF724FB4520FDF73A -:107D10001DFB02B080BD000080B549F2A97040F2A1 -:107D20000812C0F60000C0F60102002103F0CEFBED -:107D300040F25011C2F20001086049F6894040F259 -:107D40006802C0F60000C0F60102002103F0BEFB8D -:107D500080BD00002DE9F04F87B0002543F63000CC -:107D60000695CDE90455CDE902550195C4F202000E -:107D7000016840F2004841F0020101600168C4F26C -:107D8000020801F00201019101990195016808F5CD -:107D9000A05441F0400101600168002201F040015F -:107DA0000191019901950168402741F001010160AD -:107DB000016801F00101019101990195016841F00B -:107DC00008010160016801F0080101910199019524 -:107DD000016841F004010160016801F004010191B2 -:107DE00001990195016841F020010160016801F0ED -:107DF0002001019101990195016841F08001016024 -:107E00000068402100F08000019001982046FDF7B5 -:107E1000DFF808F5C05A50464FF4E0510022FDF754 -:107E2000D7F808F58069484604210022FDF7D0F80C -:107E3000404606210022FDF7CBF8A8F5806B584696 -:107E4000102101220126FDF7C3F84046012101223D -:107E5000FDF7BEF8CDE9027602AF20463946CDE9FE -:107E60000466FCF7E1FF4FF4E050CDE9020650460E -:107E70003946CDE90465FCF7D7FF082002904FF49E -:107E8000041A20463946CDE903A6FCF7CDFF0420AD -:107E9000CDE9020648463946CDE90465FCF7C4FF42 -:107EA0000620CDE9020640463946CDE90465FCF7D7 -:107EB000BBFF58463946CDE9026A0496FCF7B4FF89 -:107EC0001020CDE9020658463946CDE90466FCF794 -:107ED000ABFF3020CDE9020A484639460496FCF74C -:107EE000A3FF40463946CDE90266CDE90466FCF7BA -:107EF0009BFF062005210022FDF72CFA0620FDF746 -:107F000025FA092005210022FDF724FA0920FDF7B2 -:107F10001DFA0A2005210022FDF71CFA0A20FDF7B0 -:107F200015FA172005210022FDF714FA1720FDF796 -:107F30000DFA07B0BDE8F08F80B540F21C3045F275 -:107F40000041C2F20000C4F2000148F2A062002326 -:107F50004FF4804CC0F2010280E80E00C0E9033CFF -:107F6000C0E90533C0E90733FDF73EF8002818BF24 -:107F7000FBF70EFC80BD000080B54DF27C4045F65D -:107F80000001C2F20100C4F2000148F2A062002325 -:107F90004FF4804CC0F2010280E80E00C0E9033CBF -:107FA000C0E90533C0E90733FDF71EF8002818BF04 -:107FB000FBF7EEFB80BD0000B0B540F2703043F23D -:107FC0000001C2F20000C4F201014FF482720023EA -:107FD00080E80E0000F10C014FF0020C4FF0010E92 -:107FE0004FF40074182581E808500A21C0E90645BD -:107FF000C0E90833C0E90A31FDF784FC002818BF46 -:10800000FBF7C6FBB0BD000080B588B040F2C830B9 -:1080100044F200420021C2F20000C4F2010241F227 -:1080200088330791CDE90511CDE90311CDE901119F -:10803000C0E90021C0E9021301618161FEF732FA53 -:10804000002818BFFBF7A4FB40F2C830C2F20000C2 -:10805000FEF738FC002818BFFBF79AFB6020019060 -:108060000020CDE90200059040F2C830C2F20000C5 -:1080700001A90022FEF7DAFB002818BFFBF788FBF6 -:1080800040F2C830C2F20000FEF780FB08B080BDAD -:1080900010B596B04DF2D04040F200420021C2F23D -:1080A0000100C4F20102A72344F61F641591CDE933 -:1080B0001311CDE91111CDE90F11CDE90D11CDE964 -:1080C0000B11CDE90911CDE90711CDE90511CDE974 -:1080D0000311CDE90111C0E90023C0E90214C0E990 -:1080E00004118161FEF7DEF9002818BFFBF750FB91 -:1080F0004FF4805012904DF2D040C2F2010012A90C -:10810000FEF738FA002818BFFBF742FB4DF2D040CB -:10811000C2F20100FEF7D6FB002818BFFBF738FBC0 -:108120004DF2D0400024C2F2010010A9CDE9104464 -:10813000FEF75CF9002818BFFBF72AFB6020CDE9A9 -:1081400009044DF2D040C2F2010009A90422CDE990 -:108150000B44CDE90D440F94FEF768FB002818BFCF -:10816000FBF716FB00200590CDE90300CDE90100E7 -:108170004FF4005108904DF2D0400691C2F2010038 -:1081800001A9FEF70DF9002818BFFBF701FB4DF21E -:10819000D040C2F20100FEF7F9FA16B010BD00009F -:1081A00080B54DF2185041F20001C2F20100C4F254 -:1081B000010100234FF00C0C4FF4E13280E80E0077 -:1081C000C0E90333C0E905C3C361FEF787FD00289A -:1081D00018BFFBF7DDFA80BD80B540F2104044F2D5 -:1081E0000041C2F20000C4F2000100234FF00C0C69 -:1081F0004FF4E13280E80E00C0E90333C0E905C363 -:10820000C361FEF76BFD002818BFFBF7C1FA80BD04 -:1082100010B54DF2605044F6000C48F2A062C2F274 -:108220000100C4F2000CC0F201024FF4805300219F -:108230004FF4806E0424C0E900C2C0E90231C0E9F5 -:1082400004E4C0E90611FEF749FD002818BFFBF75A -:108250009FFA10BD80B540F2584041F20041C2F291 -:108260000000C4F2010100234FF00C0C4FF4E13286 -:1082700080E80E00C0E90333C0E905C3C361FEF71F -:108280002DFD002818BFFBF783FA80BDFEE7000034 -:108290002DE9F0478846B1F80D10044608BA4FEAB8 -:1082A0001049B8F811002679B8F80F1005BA304611 -:1082B00091FAB1FAFFF738FB07463046FFF784FB27 -:1082C00001EE109A9FED453AB8EE412A9FED441A0F -:1082D00022EE032A22EE014A02EE10AA15FB27F035 -:1082E000B8EEC23A02EE100AA0799FED3E5AB8EEFF -:1082F000C22A22EE052A48B1B4F84000A9EB0000DA -:10830000B0F5805F0CDD4FF0FF300DE00020A4F8E9 -:108310004090C4E9110084ED024A84ED033A1CE068 -:1083200010F5805F03DA0120616C0844606494ED0D -:10833000115A83EE003AB8EEC55A25EE015A34EED2 -:10834000054A84EE004AA4F8409020EE022A84ED0B -:10835000033A84ED124A84ED024A94ED020A84ED58 -:10836000042AB5EE400AF1EE10FA08DA30EE010AFE -:10837000B5EE400AF1EE10FAF8DB84ED020A94ED56 -:10838000020AB4EE410AF1EE10FA0ADB9FED162A5A -:1083900030EE020AB4EE410AF1EE10FAF8DA84ED9A -:1083A000020A94F8280078B131EE400A84ED020AFE -:1083B00094ED030A94ED041AB1EE400A84ED030A29 -:1083C000B1EE410A84ED040A98F8130000EE100A99 -:1083D000B8EE400A84ED050ABDE8F08700000039D8 -:1083E000DB0FC94000008038DB0FC9C080B5017ABF -:1083F0000320FAF7CDF90A2002F090FD9FED030A61 -:108400000020FAF7E1F9002080BD00BF003E9C4645 -:1084100080B50020FAF712FA002080BDFEE70000C8 -:1084200000F0070080F00703042B28BF04234FF05F -:10843000FF3C03380CFA03F338BF00209943814016 -:108440000CFA00F022EA000008437047B0B52DEDA9 -:108450000A8B044610EE100AB0EE618AB0EE419A23 -:10846000B0EE60AAB0EE40BA02F0FEFA002800F0CA -:108470009C801AEE100A02F0F7FA002800F09580AE -:1084800019EE100A02F0F0FA002800F08E8018EEC3 -:10849000100A02F0E9FA002800F087806068B0EE68 -:1084A0004B0A90ED071AF0EE4A0AFAF7D1FE60681F -:1084B000B0EE40BA90ED001A04F11C0020EE01CAA3 -:1084C00021EE0A0AFEF7A4FE207888B1012811D116 -:1084D00094ED051A94ED022A30EE411AB4EE428A68 -:1084E000F1EE10FAC8BFB0EE482A81EE029A01E020 -:1084F0009FED309A19EE100A84ED04BA84ED050A56 -:1085000002F0B2FA65689FED2B0A002808BFB0EEB2 -:10851000409A95ED010A95ED032A2CEE000A29EE0A -:10852000022A95ED021A30EE42AA94ED030A9FED5D -:10853000229A2CEE082A32EE008AB4EE491AF1EEA5 -:1085400010FA28EE01BA1ADD18EE100A02F08CFAC1 -:10855000A8B13AEE0B0A95ED051AB0EEC00AB4EEDA -:10856000410AF1EE10FA0ADC95ED040AB0EEC81AE1 -:10857000B4EE401AF1EE10FAD8BF84ED038A3AEE59 -:108580000B8A18EE100A02F06FFA70B1D5ED050AE9 -:10859000F4EE490AF1EE10FA05DDB0EE480AF9F7FB -:1085A000A3FAB0EE408A84ED068A94ED060ABDEC8B -:1085B0000A8BB0BD00000000BD37863570B52DEDCB -:1085C000048B90B3044650681646B0EE408A0D46C0 -:1085D00002F04AFA58B3B06802F046FA48B3F068BD -:1085E00002F042FA38B3306902F03EFA28B37069FB -:1085F00002F03AFA18B3B7EE000A80EE089A666005 -:1086000019EE100A02F030FAD8B1D6ED060A04F1DC -:108610001C00B0EE480A84ED029AFEF737FE2046B1 -:10862000257000F013F800200CE0FF200AE0FF2086 -:1086300008E0FF2006E0FF2004E0FF2002E0FF202A -:1086400000E0FF2040B2BDEC048B70BD10B568B1F6 -:1086500000F11C0100249FED070AC0E90344C0E9B2 -:1086600005440846FEF764FE60B210BDFF2460B208 -:1086700010BD00BF0000000000280EBFFF21002138 -:10868000C16048B270470000000000000000000018 -:10869000EFF30980BFF36F8F154B1A681EF0100FB0 -:1086A00008BF20ED108A20E9F04F10602DE9090085 -:1086B0004FF0500080F31188BFF34F8FBFF36F8FDF -:1086C00004F080F84FF0000080F31188BDE8090045 -:1086D00019680868B0E8F04F1EF0100F08BFB0EC42 -:1086E000108A80F30988BFF36F8F704700BF00BF07 -:1086F000D405002080B502F0E5FE40F62C31C2F230 -:1087000000010860A8B148F23972C0F600020220E8 -:108710000321FAF779F940F23011C2F2000100208A -:10872000C1E90000C1E90200C1E90400087640B2D5 -:1087300080BDFE2040B280BD80B540F62C30C2F234 -:1087400000000068012102F01FFE80BD80B50220FC -:10875000FAF72CF940F23011C2F200011922FEF7AB -:108760005BFC002818BF4FF0FF3080BD80B502468B -:108770000120012102F048FE0138B0FA80F04009E2 -:1087800080BD000080B5806B01684A6822F003025A -:108790004A60416D41F010014165012180F851109E -:1087A000FDF79EF880BD000080B5806BFDF7DEFA16 -:1087B00080BD000080B5806BFDF7B4FD80BD00007A -:1087C00080B5806BFDF7D2FD80BD0000B0B5846B35 -:1087D0000546FCF703FC29680968C90526D402464A -:1087E0002068A168436823F02003436031B96168C1 -:1087F000B1F5827F02D16FF0030101E06FF001015A -:108800004368194041602046642100F079F800284F -:108810001CBF202060650020E087012084F8510003 -:10882000606D18B12046FDF75BF8B0BD2046FDF73E -:108830008BFAB0BDB0B582B0846B0546FCF7CEFBB9 -:1088400029680968C90528D402462068416821F0D2 -:1088500020014160416821F002014160204664210D -:1088600000F096F818B1606D40F020006065A068D7 -:1088700038B9002001902068C1680191806801909A -:1088800001980020E086012084F85100606D20B13D -:108890002046FDF725F802B0B0BD2046FDF732FDB9 -:1088A00002B0B0BDB0B5846B0546FCF797FB2968F4 -:1088B0000968C9051FD402462068416821F02001DB -:1088C00041602046642100F063F818B1606D40F00B -:1088D000200060652068416821F0030141600020AC -:1088E000E086E087012084F85100606D18B12046D1 -:1088F000FCF7F6FFB0BD2046FDF726FDB0BD000039 -:10890000B0B582B0044640680B46B0F5827F20D1F6 -:10891000A168B1F5004F02D0B1F5806F04D1216894 -:108920000D6825F040050D60B0F5827F11D1A0687B -:10893000B0F5806F1DD10092204601210022002554 -:1089400000F076F890B1606D032540F0200060657E -:108950000CE00092204601210022002500F068F87A -:1089600020B1606D032540F020006065284602B00C -:10897000B0BD0092204680210022002500F058F86A -:108980000028F3D0606D032540F020006065EDE71E -:1089900070B582B00D461646022101222B460446D0 -:1089A000009600F045F838B1606D032540F02000D6 -:1089B0006065284602B070BD4CF20000C2F20100B2 -:1089C000006849F68171C1F25E61A0FB0101480DAA -:1089D0004FF47A71484301906068B0F5827F0FD1FF -:1089E0002046802100222B460096002500F020F82A -:1089F0000028DED0606D032540F020006065D8E7D8 -:108A0000019840B101980138019020688068000603 -:108A1000F6D40025CDE70025CBE70000006843F23F -:108A20000001C4F20101401A18BF01204000704744 -:108A30002DE9F04782B00A9C984615460E468146BD -:108A4000FCF7CCFA201A00EB0804FCF7C7FA4CF24A -:108A50000001C2F201010968C1F3CB316143019108 -:108A6000D9F8001089683140891BB1FA81F14909B0 -:108A7000A94203D1002002B0BDE8F087824608F188 -:108A800001070CE0019801380190D9F800008068D6 -:108A90003040801BB0FA80F04009A842EAD0002F95 -:108AA000F3D0FCF79BFAA0EB0A00A04204D2019895 -:108AB0000028E7D10024E8E7D9E900014268B1F5D0 -:108AC000827F22F0E00242600BD1D9F80810B1F5A4 -:108AD000004F02D0B1F5806F03D1016821F0400151 -:108AE0000160D9F82810B1F5005F07D1016821F4C1 -:108AF00000510160016841F400510160012089F8D2 -:108B00005100002089F85000032002B0BDE8F08732 -:108B1000074B19680868B0E8F04F80F30988BFF385 -:108B20006F8F4FF0000080F31188704700BF00BFC7 -:108B3000D405002080B501F0E5FF80BD90ED000A6E -:108B400091ED001AB7EE002A30EE011AB4EE421A87 -:108B5000F1EE10FAD8BF704782EE011A20EE010A3A -:108B600080ED000A91ED000A21EE000A81ED000A75 -:108B700070470000002804BFBFEE000A70478269FA -:108B8000137823B1012B2AD19FED181A01E09FED34 -:108B9000151A02EB810292ED020A90ED672A00EBB2 -:108BA000011191ED093A20EE020A30EE430A20EE5F -:108BB000002A21EE013A82EE032AB0EEC03AB7EE67 -:108BC000000AB4EE413AF1EE10FA30EE422A9FED7F -:108BD000060AB8BFB0EE420A80ED460A70479FED24 -:108BE000020A704700004842000000000000C8432D -:108BF000B0B52DED048B10B30446B0F8200100B3DE -:108C000094ED001A94ED472A9FED208AD4ED490A8D -:108C100094ED680A31EE429AB0EE481A0D46FAF722 -:108C200017FBA169B7EE001A91ED062A81EE022A20 -:108C3000B4EE429AF1EE10FA05DA002021E0FF20AE -:108C40001FE0FF201DE0B4EE410AF1EE10FA4FF0F4 -:108C5000000016DCAA78A2B12068F0EE480AC4F839 -:108C60001C0191ED050A04F5D070B8EE400A88EEBB -:108C7000000AFAF7CFFAB4F820010138A4F820016D -:108C8000002040B2BDEC048BB0BD00BFDB0FC9407B -:108C900048B181690978012908D061B942F200011F -:108CA000C4F2CB5105E0FF2040B270470021C4F26E -:108CB0007A51C0F89C11002040B27047B0B52DED3C -:108CC000028B054600284FF0FF0027D00C4629B341 -:108CD000F9F744FE06F0CDFF9FED128A00EE100A70 -:108CE00080EE080A85ED000AF9F738FED5E902237F -:108CF000801A994106F0BDFF00EE100A80EE080AC6 -:108D000085ED040AF9F72AFEC5E902012846FFF7B6 -:108D1000BFFF2846214600F0ABF8002040B2BDEC72 -:108D2000028BB0BD002474492DE9F04F81B02DEDC8 -:108D3000028B834600284FF0FF0000F092808846A7 -:108D4000002900F08E80B5EE400AB0EE408AF1EEC8 -:108D500010FA40F3868098F80440CBF81880F9F7B1 -:108D6000B7F9B4B308F1700908F1900A08F12C05BD -:108D70000BF5D2760BF2EC472846FEF737FE30466D -:108D80000121B0EE480A4A46FFF718FC06F5B47018 -:108D90000121B0EE480A5246FFF710FCDBF818003C -:108DA000B0EE480AD0ED4C0A3846FEF76FFADBF811 -:108DB0001800B0EE480AD0ED4D0A07F1C000FEF7EA -:108DC00065FA013C05F10A0506F13C0607F12007AA -:108DD000D2D108F16800FEF709FEDBF8180090F820 -:108DE0006C0078B101283BD10BF2744008F1F0021D -:108DF0000121B0EE480AFFF7E1FB0BF5966008F59C -:108E000088720CE00BF2744008F1B0020121B0EE60 -:108E1000480AFFF7D3FB0BF5966008F1D002012159 -:108E2000B0EE480AFFF7CAFBDBF81800B0EE480ABC -:108E3000D0ED4E0A0BF26C60FEF728FADBF8180052 -:108E4000B0EE480AD0ED4F0A0BF28C60FEF71EFA26 -:108E50000020CBE94700CBE94900CBF82C0100E02A -:108E6000FC2040B2BDEC028B01B0BDE8F08F0000E9 -:108E7000B0B500B30446806990F82020F2B194F8B0 -:108E8000DC20032A67D8DFE802F00259233A94ED88 -:108E9000240A9FED421A80EE010A90ED091AB4EE01 -:108EA000410AF1EE10FA68DD2268012084F8DC0046 -:108EB000C4F8D82061E0FF2568B2B0BD0025204687 -:108EC00084F8DC5084F8D45000F0F4F868B2B0BDF7 -:108ED00090ED050A9FED2F1AB8EE400A81EE000AC8 -:108EE00094ED491A00202268A4F82001032084F898 -:108EF000DC00C4F8D82031EE000A84ED680A204670 -:108F000000F0D8F894ED000A94ED361A9FED222A6D -:108F100030EE410AB4EE420AF1EE10FA30DB94ED85 -:108F2000240A9FED1E1A002580EE010AB3EE041AF2 -:108F3000B4EE410AF1EE10FAC8DA0DE094ED240A1D -:108F40009FED161A80EE010A90ED091AB4EE410A5F -:108F5000F1EE10FA04DA002568B284F8DC50B0BDF6 -:108F600094ED000A94ED361A90ED0A2A30EE410A8B -:108F7000B4EE420AF1EE10FA05DA204600F09AF853 -:108F8000002568B2B0BD012084F8D400022084F826 -:108F9000DC00F5E7DB0FC9C09A99993E00007A44DE -:108FA000002843D0F0B581B02DED028B04468069D6 -:108FB0000779EFB19FED1F8A04F5D27504F2EC46F4 -:108FC0002846FFF743FB05F5B470FFF73FFB30463B -:108FD000B0EE480AFEF7ACF906F1C000B0EE480A60 -:108FE000FEF7A6F9013F05F13C0506F12006E7D1A1 -:108FF00004F27440FFF72AFB04F59660FFF726FBA6 -:109000009FED0C8A04F26C60B0EE480AFEF790F90E -:1090100004F28C60B0EE480AFEF78AF90020BDEC3D -:10902000028B01B0BDE8F04040B27047FF2040B273 -:10903000704700BF00000000F0B170B504468069C1 -:10904000067966B104F5D2752846FFF715FB05F5DC -:10905000B470FFF711FB013E05F13C05F4D104F2B9 -:109060007440FFF709FB04F59660FFF705FB00204D -:10907000BDE8704040B27047FF2040B2704700002A -:10908000A0B18169097951B100F59672002300BF42 -:1090900042F8043F0139936113639364F8D10021CE -:1090A000C0E96411C0F8981148B27047FF2148B276 -:1090B000704700002DE9F04F81B02DED088B84B092 -:1090C000824600284FF0FF0000F048820E4600293B -:1090D00000F04482DAF818009AF81C1004794DF276 -:1090E000AE570029C2F2010700F0D0809AF8D000F4 -:1090F000002800F0EA80022800F06481012840F096 -:109100001582002C019673D09FEDACBA9FEDAC8A0E -:10911000A0002A24002740F2AC564FF000084FF080 -:1091200000090290DAF818009AED671A0119897A95 -:109130000139C9B200EB810090ED020A5FFA89F1B2 -:1091400020EE010A504680EE0B9AFFF713FD0AEB62 -:1091500008050AEB070BD5ED3E0ADAED041AB0EE6E -:1091600040AA0BF5D270B0EE490AB0EE481AFFF7EC -:109170006DF9DAF8180085ED4C0A2044807AD5EDB7 -:109180003E0A0AEB800090ED430ADAED041A05F579 -:1091900098710BF54370B0EE481A0391FFF756F93A -:1091A00003982AEE000A05F5A47185ED520AFFF72F -:1091B000C5FC95ED4C0A95ED521A0AEB060030EE0F -:1091C000010A85ED580AFEF723F8DAF8180085ED54 -:1091D0005E0A20440230FEF765FC029808F104089C -:1091E00009F101090A343C37404506F1200699D1BE -:1091F00040F2F000C2F200009FEDE98A90ED000A13 -:10920000DAED041ADAED490A0AF27440B0EE481AAF -:10921000FFF71CF9DAED041ADAED4B0A0AF596604D -:10922000B0EE481A8AED640AFFF710F90AF28C6072 -:109230008AED650AFDF7ECFFDAF818008AED660A98 -:109240006830FEF72FFC019E7078002800F08D81B9 -:109250004DF2AE57C2F201073878002840F069811C -:10926000B078002800F065819AF81C0002210328DC -:109270008AF8D01000F08781022800F08981012847 -:1092800040F050810120AAF8200152E16CB104EBBA -:1092900084004400002500BFDAF8180028442C3070 -:1092A000FEF7F8FB0A35AC42F6D1DAF81800683060 -:1092B000FEF7F0FB9AED490A40F2F000C2F200001E -:1092C0008AED680A80ED000A33E10196BCB304EB35 -:1092D00084009FEDB38A4FEA400800274FF4D2790B -:1092E0006FF0030B40F2AC540AEB09063046FFF76F -:1092F000C3F90AEB0B05D5ED3F0ADAED041A304647 -:10930000B0EE480AB0EE481AFFF7A0F80AEB0400E6 -:1093100085ED4D0A85ED590AFDF77AFFDAF8180058 -:1093200085ED5F0A38442C30FEF7BCFB0A3709F1A3 -:109330003C090BF1040BB84504F12004D4D140F2F0 -:10934000F000C2F200009FED968A90ED000ADAED7F -:10935000041ADAED490A0AF27440B0EE481AFFF72F -:1093600075F8DAED041ADAED4B0A0AF59660B0EEFC -:10937000481A8AED640AFFF769F80AF28C608AEDF0 -:10938000650AFDF745FFDAF818008AED660A6830CD -:10939000FEF788FB019E4DF2AE577078C2F20107CE -:1093A000002800F0C6805046FFF7FAFD5046FFF750 -:1093B00043FE5046FFF764FE0120B8E000C0DA45E6 -:1093C00000000000504631460196FFF711FC002CCA -:1093D00070D09FED72BA9FED728AA0002A244FF0E0 -:1093E000000840F2AC59002700260290DAF8180075 -:1093F0009AED671A0119897A0139C9B200EB810027 -:1094000090ED020AF1B220EE010A504680EE0B9A6E -:10941000FFF7B0FB0AEB07050AEB080BD5ED3E0A98 -:10942000DAED041AB0EE40AA0BF5D270B0EE490A9C -:10943000B0EE481AFFF70AF8DAF8180085ED4C0A82 -:109440002044807AD5ED3E0A0AEB800090ED430A75 -:10945000DAED041A05F598710BF54370B0EE481A71 -:109460000391FEF7F3FF03982AEE000A05F5A471B5 -:1094700085ED520AFFF762FB95ED4C0A95ED521A05 -:109480000AEB090030EE010A85ED580AFDF7C0FE2F -:10949000DAF8180085ED5E0A20440230FEF702FB80 -:1094A0000298043701360A3408F13C08B84209F141 -:1094B00020099BD19FED3A8ADAED041ADAED490AC8 -:1094C0009AED680A0AF27440B0EE481AFEF7BEFF41 -:1094D000DAED041ADAED4B0A0AF59660B0EE481A96 -:1094E0008AED640AFEF7B2FF0AF28C608AED650A23 -:1094F000FDF78EFEDAF818008AED660A6830FEF78E -:10950000D1FA019E4DF2AE57B078C2F2010780B990 -:1095100001208AF8D000DAF8240140F2F001C2F20A -:10952000000108600020AAF8200102E000208AF86B -:10953000D000DAF818002C30FEF780F9DAF81800BD -:109540004168052902D35430FEF778F9DAF818009B -:109550006830FEF773F9B0783870002040B204B07C -:10956000BDEC088B01B0BDE8F08F5046FFF718FD49 -:109570005046FFF785FD00204DF2AE578AF8D00027 -:10958000C2F20107D5E741F60A20AAF82001D0E788 -:10959000DAF81800C069AAF82001CAE700C0DA4565 -:1095A0000000000000280EBFFF200177002040B21D -:1095B00070470000002800F0EB802DE9F0472DED0A -:1095C000068B8246806990F80480B8F1000F57D06E -:1095D0009FED718A4FEA88093427002540F2EC4656 -:1095E0002424B7EE009ABFEE00AA2EE00AEB040096 -:1095F00090ED000A0AEB0600FDF70AFE80EE081A5D -:109600000AEB050080ED380A043520361034B4EE3C -:10961000491AF1EE10FAC8BFB0EE491ADAF818107C -:10962000B4EE4A1AF1EE10FAB8BFB0EE4A1AC95DAC -:1096300080ED3E1A0AEB810090ED430A0A3730EEC6 -:10964000010AA94580ED430A1AD0DAF81800384417 -:109650000838FEF777FADAF8180038440838FEF7C9 -:109660008BF90028C2D000F12C0C0AEB85019CE894 -:109670000C10806B01F1200E8EE80C10C862B5E76B -:109680009AED450A01EE108AB8EEC11A80EE010A81 -:10969000DAF81800B6EE001A683020EE010A8AEDFA -:1096A000450AFEF74FFADAF818006830FEF764F959 -:1096B00001460AF180005022F7F715F8DAF8180091 -:1096C0009AED321A90ED040A20EE010AB5EE400A36 -:1096D000F1EE10FA8AED490A0BDA9FED301A00BF5D -:1096E00030EE010AB5EE400AF1EE10FAF8DB8AED31 -:1096F000490A9AED490A9FED291AB4EE410AF1EEA2 -:1097000010FA0ADB9FED262A30EE020AB4EE410A77 -:10971000F1EE10FAF8DA8AED490A9AF8A800002862 -:109720001CBF31EE400A8AED490A9AED230A0AF27B -:109730006C60FDF76DFD9AED231A9FED1A2AB7EEC6 -:10974000003A81EE021A8AED4A0A9AED090A9AED68 -:109750000D2A0AF2AC6030EE420AB4EE431AF1EE82 -:1097600010FAC8BFB0EE431ABFEE003AB4EE431A87 -:10977000F1EE10FAB8BFB0EE431A8AED4B1A80ED45 -:10978000000A0020BDEC068BBDE8F04740B27047F0 -:10979000FF2040B2704700BF00C0DA45DB0FC94070 -:1097A000DB0FC9C00080BB4580B501F08BFE01F026 -:1097B000E7FE80BDB0B501380024B4EB106F1CBFCC -:1097C0000120B0BD4EF21005CEF2000568604FF0EA -:1097D000FF300F2101F084F90720AC60286020469B -:1097E000B0BD000080B5FBF737FD03F011FF012885 -:1097F00018BF03F0E3F880BD70B592B006AC204608 -:109800003021F6F7AAFF002543F640000595CDE983 -:109810000355CDE901550095C4F202000168022606 -:1098200041F080510160006800F080500090009885 -:1098300047F200000095C4F20000016841F4804145 -:109840000160006800F480400090009801200690BC -:109850004FF4803007904FF480000D9006200E905A -:10986000A820CDE90F060420119020460C96FBF7A6 -:1098700093FE88B90F20CDE901064FF4A050049063 -:109880004FF48050059001A805210395FBF776FD64 -:10989000002804BF12B070BDF9F77AFF4EF6885069 -:1098A000CEF20000016841F47001016070470000D1 -:1098B00080B540F2C830C2F20000FCF7CDFE80BD9A -:1098C000B0B540F6FF3E0568C4F2000E40F2004C11 -:1098D0007045C4F2010C0FDCB0F1804F19D040F29A -:1098E0000043C4F20003984213D040F60003C4F2D0 -:1098F000000398420DD011E040F60043C4F200038B -:10990000984206D0604504D00023C4F20103984277 -:1099100004D14B6825F0700243EA020541F6FF735B -:10992000C4F2000398420DDC70451FDCB0F1804F9B -:1099300041D040F20043C4F2000398423BD040F6CD -:10994000000321E043F6FF73C4F20103984220DCD8 -:1099500042F20003C4F2000398422CD00023C4F268 -:109960000103984227D0604525D029E040F6004306 -:10997000C4F2000398421ED041F60003C4F2000373 -:10998000984218D041F60043C4F20003984212D026 -:1099900016E044F20003C4F2010398420BD044F6EF -:1099A0000003C4F20103984205D044F20043C4F21C -:1099B0000103984204D1CB6825F4407243EA0205C2 -:1099C0000A688C684B69C46240F4806482626445B2 -:1099D00004BF09690163026825F0800142F00402B6 -:1099E00019430260012242610160B0BD80B501F0FF -:1099F0001F014FF0010CD0F820E00CFA01F32EEA21 -:109A000003030362036A02FA01F11943016280BD94 -:109A1000D0F808C011432CF47F4C41EA032141EAFD -:109A20000C01816070470000826822F070021143CF -:109A300041F0070181607047B0B5026A036A40F2E5 -:109A4000004523F001030362D0F804E0D0F818C009 -:109A50008C6822F0020240F48063C4F20105AB423C -:109A600042EA040205D1CC6822F00C0224F004047E -:109A700022430C68AB4207D1D1E905532EF4407E56 -:109A800045EA0E0545EA030E2CF073032343C0F8A4 -:109A900004E08361496841630262B0BD70B5026A47 -:109AA000036A40F2004423F010030362D0F804E09C -:109AB000D0F818C08D6822F0200240F48063C4F210 -:109AC0000104A34242EA051207D1CD686FF04006B7 -:109AD00022F0C00206EA05152A430D68A34207D109 -:109AE000D1E905642EF4406343EA860343EA840E19 -:109AF0002CF4E64343EA0523C0F804E08361496897 -:109B00008163026270BD000070B5026A036A40F2B0 -:109B1000004423F480730362D0F804E0D0F81CC042 -:109B20008D6822F4007240F48063C4F20104A34201 -:109B300042EA052207D1CD6840F2FF462D0222F409 -:109B40004062B5432A430D68A34207D1D1E90564B9 -:109B50002EF4405343EA061343EA041E2CF0730329 -:109B60002B43C0F804E0C3614968C163026270BD61 -:109B700070B5D0F820C0026A40F2004622F480524C -:109B800002624268C3690C68D1F808E040F480655D -:109B9000C4F20106B54204D14D6922F4804242EA82 -:109BA000851223F4E64343EA04234260C3612CF4A4 -:109BB0000056496846EA0E320164026270BD000038 -:109BC000D0F820C0036A23F001030362836923F005 -:109BD000F00343EA02122CF00A0319438261016286 -:109BE00070470000D0F820C0036A23F0100303621E -:109BF000836923F4704343EA02322CF0A00343EA62 -:109C0000011182610162704701F0D0F905F059FD40 -:109C10009FED1B0B53EC102B05F090FB05F024FD82 -:109C20000446002001F07AF901F0B6F90546FEF786 -:109C300061FD40F2541640F64C272544C2F200065E -:109C4000C2F2000710E000BF3046F9F739FCB86DEA -:109C500001F0F2FAB86D31460022002301F0A4FAB7 -:109C6000284601F06BF92544FEF770FD1420FEF73D -:109C70007DFD0028E8D03046F9F7D8FBE7E700BFC4 -:109C80000000000000407F4010B501F0A7F949F640 -:109C9000E9504FF69072C0F60000C0F600020021B5 -:109CA00001F014FC40F64C24C2F2000420604AF299 -:109CB000691040F24402C0F60000C0F60102002123 -:109CC00001F004FC606049F6A1704FF6D872C0F64E -:109CD0000000C0F60002002101F0F8FBA0604AF28B -:109CE000212040F28C02C0F60000C0F601020021E3 -:109CF00001F0ECFBE06049F629604FF6B472C0F663 -:109D00000000C0F60002002101F0E0FB20614AF2F1 -:109D1000011040F22002C0F60000C0F6010200214E -:109D200001F0D4FB60614AF219004FF6FC72C0F6F4 -:109D30000000C0F60002002101F0C8FBA0614AF259 -:109D4000B92040F2B002C0F60000C0F601020021C6 -:109D500001F0BCFBE06149F609404FF66C72C0F6B9 -:109D60000000C0F60002002101F0B0FB20624AF2C0 -:109D7000293040F2D402C0F60000C0F601020021F2 -:109D800001F0A4FB606202200A21002201F0BCF96C -:109D9000A06202203421002201F0B6F960630220A3 -:109DA0001421002201F0B0F9A0630220202100223A -:109DB00001F0AAF9A06402200321002201F0A4F915 -:109DC000E06202205821002201F09EF96065022025 -:109DD0004D21002201F098F9A06501F02FF901F062 -:109DE00071FB01F0CDFB10BD01F0E0F805F069FC5E -:109DF0009FED0B0B53EC102B05F0A0FA05F034FC93 -:109E00000446002001F08AF801F0C6F8051900BFE9 -:109E1000284601F093F82544FAE700BF00BF00BFD1 -:109E20000000000000407F4084B001F0BFF805F062 -:109E300048FC9FED570B53EC102B05F07FFA05F013 -:109E400013FC0546002001F069F801F0A5F840F286 -:109E5000F80AC2F2000A4CF204010446C2F20101FF -:109E60005046F7F797FE5046F7F76EFE4DF2183062 -:109E70004DF2B051C2F20100C2F20101F7F72CF924 -:109E80005046F7F761FEB7EE001A81EE000A40F285 -:109E9000A04040F2DC12C2F20000C0F60102002134 -:109EA000FEF78CFB0120F8F7C9FC0AF1100040F224 -:109EB000A4189FED398A9FED399A4DF2603904EB71 -:109EC000050B02900AF11C00C2F20008C2F201095F -:109ED00003950190F7F7ACFFF7F722FEF7F72CFE9A -:109EE000F7F742FEF7F74EFE01F078F85046F7F725 -:109EF000F3FE5046F7F73AFF4DF21834C2F2010470 -:109F0000DDE901214DF2B0532046C2F20103F7F71B -:109F1000ABF940462146F7F771F801F08FF8DAED1A -:109F20000A0A40F2A040C2F20000B0EE480AB0EEC9 -:109F3000491AF0EE491AFEF789FA0120F8F744FCB5 -:109F40000AF1100C9CE8181098E80700DAF8246071 -:109F5000C9E90A3440F64C24C2F20004DAE9077574 -:109F6000C9E90260606BC9E90075C9E90412C9F862 -:109F700030C001F061F9606B49460022002301F016 -:109F800013F9584600F0DAFF03988344A2E700BFB4 -:109F90000000000000407F40000020420000000060 -:109FA00001F004F805F08DFB9FED170B53EC102B1F -:109FB00005F0C4F905F058FB0446002000F0AEFFA0 -:109FC00000F0EAFF0546F9F775F900F530714CF23B -:109FD000D0509FED0F0AC2F2010000F0ABFD40F639 -:109FE0004C274CF64C762544C2F20007C2F201061B -:109FF000B86C31460022002301F042F8284600F0F8 -:10A000009DFF2544F4E700BF0000000000407F40B2 -:10A010000000FA430000000082B000F0C7FF05F026 -:10A0200050FB9FED350B53EC102B05F087F905F035 -:10A030001BFB0446002000F071FF00F0ADFF064658 -:10A04000F9F738F94CF68869C2F2010900F5836125 -:10A050004846F8F7B3FF0194264440F64C254CF6E9 -:10A06000BC7440F24C184CF6C07AC2F2000509F1FB -:10A07000880BC2F2010409F1AC07C2F2000809F131 -:10A08000C109C2F2010A00BFA86D4CF66C71C2F2A0 -:10A0900001010022002300F0F3FF4CF68860C2F2B9 -:10A0A0000100F9F775F8A86BC4F800B0C8F80070A3 -:10A0B000CAF8009001F0C0F8A86BD8F80010002290 -:10A0C000002301F071F8E86A01F0B6F8E86ADAF8FE -:10A0D00000100022002301F067F8A86C01F0ACF832 -:10A0E000A86C21680022002301F05EF8304600F0E1 -:10A0F00025FF01980644C7E70000000000407F40AC -:10A1000000F054FF05F0DDFA9FED150B53EC102B1A -:10A1100005F014F905F0A8FA0446002000F0FEFE50 -:10A1200000F03AFF4CF6C875C2F201050646284613 -:10A13000F9F74CF940F64C272644C2F2000700BF5D -:10A14000786D01F079F8786D29460022002301F03E -:10A150002BF8304600F0F2FE2644F1E700BF00BFC6 -:10A160000000000000407F4000F020FF05F0A9FA49 -:10A170009FED270B53EC102B05F0E0F805F074FA77 -:10A180008146002000F0CAFE00F006FF0646F9F7FF -:10A1900091F84DF22005C2F201059FED1F0A01461C -:10A1A0002846F9F747FD40F64C244DF22C3840F292 -:10A1B000C0174E44C2F20004C2F20108C2F2000706 -:10A1C0004FF0010A16E000BFA06B394600220023C1 -:10A1D00000F056FF2846F9F7ABFE2846394687F8C7 -:10A1E00000A0F9F7D9FA2846F9F7D0FD304600F07B -:10A1F000A5FE4E44606B41460022002300F040FF64 -:10A200000028E1D128464146F9F722FFDCE700BFEC -:10A210000000000000407F400000FA430000000002 -:10A2200000F0C4FE05F04DFA9FED1F0B53EC102B10 -:10A2300005F084F805F018FA0446002000F06EFEE0 -:10A2400000F0AAFE0646F9F735F84DF2C855C2F2FD -:10A2500001059FED170A00F5C0712846FEF764FD61 -:10A2600028460321FFF79EF940F64C2840F6482780 -:10A270002644C2F20008C2F2000700BFD8F82C0042 -:10A2800039460022002300F0FBFE2846FFF792F932 -:10A2900028463946FEF712FD304600F04FFE2644B0 -:10A2A000ECE700BF00BF00BF0000000000407F409F -:10A2B0000000FA430000000000F078FE05F001FA0B -:10A2C0009FED170B53EC102B05F038F805F0CCF987 -:10A2D0000446002000F022FE00F05EFE40F200087E -:10A2E000C2F2000806464046FEF792F840F64C25BA -:10A2F00040F2CC072644C2F20005C2F2000700BFBC -:10A30000286C39460022002300F0BAFE4046FEF7D2 -:10A310006DF8304600F012FE2644F1E700BF00BFA2 -:10A320000000000000407F4000F040FE05F0C9F949 -:10A330009FED130B53EC102B05F000F805F094F98A -:10A340000446002000F0EAFD00F026FE054602204B -:10A3500000F07AFB4CF2BC562544C2F201064FF0E5 -:10A36000804700BF304602210022776000F014FBD6 -:10A37000284600F0E3FD2544F4E700BF00BF00BF1E -:10A380000000000000407F4080B5806B0021C18547 -:10A39000FCF762FB80BD000010B5846B206840694B -:10A3A00094F84110212907D110F0800004D000203A -:10A3B000E084204600F0C2F82068406994F842101A -:10A3C000222907D110F0400004D00020E08520466B -:10A3D00000F080F8606C40F0100060642046FCF7EC -:10A3E0003BFB10BD80B50168806B0968C9052FD49F -:10A3F0000021C185016851E8031F026821F48071C2 -:10A4000042E80313002BF5D1016851E8051F0268EB -:10A4100021F0010142E80513002BF5D1016851E854 -:10A42000051F026821F0400142E80513002BF5D119 -:10A43000202180F84210016B012909D1016851E8FF -:10A44000031F026821F0100142E80313002BF5D12D -:10A4500000214163016B012903D1818DFCF7FAFAD8 -:10A4600080BDFCF7EFFD80BD80B5806B01214163AD -:10A47000016B012904D1818D4908FCF7EBFA80BDFD -:10A48000FCF7F4FD80BD000080B50168806B0968B1 -:10A49000C90516D40021C184016851E8051F02686E -:10A4A00021F0800142E80513002BF5D1016851E845 -:10A4B000031F026841F0400142E80313002BF5D16D -:10A4C00080BDFCF749FE80BD80B5806BFCF758FE6F -:10A4D00080BD0000016851E8031F026821F49071FB -:10A4E00042E80313002BF5D1016851E8051F02680B -:10A4F00021F0010142E80513002BF5D1016B012980 -:10A500000AD100BF016851E8031F026821F0100161 -:10A5100042E80313002BF5D1202180F842100021DE -:10A520000163704780B50168CA6822F04002CA60C2 -:10A53000202180F84110FCF70FFE80BD016851E832 -:10A54000031F026821F0C00142E80313002BF5D17C -:10A55000202180F841107047006840F6FF71C4F276 -:10A560000101884210DC44F20041C4F2000188423B -:10A5700004BF0120704744F60001C4F20001884284 -:10A5800004BF022070470FE041F20001C4F2010154 -:10A59000884204BF0020704741F20041C4F201012B -:10A5A000884204BF032070470520704780B582B001 -:10A5B00090F8421022291ED18268B2F5805F02D144 -:10A5C000016900294AD0816AB2F5805F07D00AB9D3 -:10A5D000026922B10268526802F07F0201E002685B -:10A5E00052680A700121826A11448162C18D013969 -:10A5F0000A04C18501D002B080BD0168CA6822F09A -:10A600002002CA60CA6822F48072CA604A6922F0D5 -:10A6100001024A61202180F8421000214163026B4F -:10A62000012A23D1016300BF016851E8031F0268BA -:10A6300021F0100142E80313002BF5D101680A68EC -:10A64000D20606D5002201920A680192496801915A -:10A650000199818DFCF7FEF902B080BD0168826A24 -:10A6600049686FF35F2111800221BCE7FCF7EAFC27 -:10A6700002B080BD10B504460068D4E902C2236967 -:10A68000016921F4405111430161626943EA0C01FF -:10A69000E3691143C268194349F20C639A431143B9 -:10A6A000C1604169A26921F4407141F20043114344 -:10A6B00040F48062C4F201039A42416102D1FAF788 -:10A6C00025FF01E0FAF710FFE16963681922B1F58F -:10A6D000004FA0FB02011CD15A00DB0FF5F708FE6A -:10A6E00048F21F51C5F2EB11A0FB01235A096FF08C -:10A6F000630302FB0300322303EBC000A0FB010154 -:10A700004FF4F87000EA111000EB0210C1F342118F -:10A710001AE09A009B0FF5F7EBFD48F21F51C5F2C6 -:10A72000EB11A0FB01235A096FF0630302FB030046 -:10A73000322303EB0010A0FB0101F02000EA5110CE -:10A7400000EB0210C1F3431122680843906010BD72 -:10A75000F0B581B0134600270446816283854764C3 -:10A76000222084F84200E06B4AF2E5354AF269465D -:10A770000A462168C0F60005C0F60006C0E90F567B -:10A780004AF29936C0F600060431C0E91367FAF7B9 -:10A79000E1FA38B110206064202084F842000120E2 -:10A7A00001B0F0BD009720680168009140680090FA -:10A7B0000098206950B100BF206850E8030F21685D -:10A7C00040F4807041E80302002AF5D1206850E887 -:10A7D000050F216840F0010041E80502002AF5D18B -:10A7E000206850E8050F216840F0400041E805026C -:10A7F000002AF5D1002001B0F0BD000090F8411012 -:10A80000212923D18168B1F5805F01D1016931B17E -:10A81000016A02684B1C03620978516007E0016A13 -:10A82000036831F8022B6FF35F225A600162C18C1A -:10A8300001390A04C18418BF70470068C16821F05B -:10A840008001C160C16841F04001C16070470000F3 -:10A8500010B54DF21854C2F201042046FCF710F96D -:10A860002046F8F7B3F810BD10B54DF26054C2F2AF -:10A8700001042046FCF704F92046F8F7A7F810BDBC -:10A8800010B540F25844C2F200042046FCF7F8F834 -:10A890002046F8F79BF810BDFEE700002DE9F04FC9 -:10A8A00083B08B4601393F2942D84AF63414BBF1B4 -:10A8B000000FC2F20104029228D0061F4FF00008D8 -:10A8C0004FF0000940F2082740F26320C0F601076C -:10A8D000C0F60100B8F1000F08BF074656F8040F94 -:10A8E00004EB090AC9F5827505F06EF941EC100B0D -:10A8F0005046294610A23B468DED000BF5F786FD2C -:10A9000008F10108C3458144DCD101E04FF00009A2 -:10A9100004EB0900C9F5827109A2F5F777FD20461D -:10A92000F5F77DFE029B82B200202146F8F786F8FB -:10A9300003B0BDE8F08F00BF2573252E32660000FE -:10A940000A00000070B50D4601393F2988BF70BD6F -:10A950004AF63416C2F2010614460146AA003046F1 -:10A96000F5F7C1FE4FF0FF4046F82500042000EB4C -:10A970008502002031462346F8F760F870BD0000DC -:10A98000B0B50C460546F5F74AFE82B200202946CE -:10A990002346F8F753F8B0BDF0B5C1B0144640F205 -:10A9A0001402C2F2000212780F46022A054627D08E -:10A9B000012A2CD092BB0FB3286805F005F901AE2F -:10A9C00002460B4617A13046F5F70AFD012F0CD0C1 -:10A9D0003046F5F724FE3718686805F0F5F80246AA -:10A9E0000B4614A13846F5F7FBFC3046F5F717FE89 -:10A9F0000A21315230462146FFF7C2FF00200EE007 -:10AA0000284639462246FFF79DFF002007E02846EA -:10AA100039462246FFF742FF002000E0FF2040B207 -:10AA200041B0F0BD4368616E6E656C313A20252EF1 -:10AA3000326600002C204368616E6E656C323A20ED -:10AA4000252E32660000000040F214020146C2F2D8 -:10AA5000000200201170704700F0FF40B0F1FF408D -:10AA600018BF01207047000000F0FF40B0F1FF4028 -:10AA700018BF01207047000020F00040A0F1FF4007 -:10AA8000B0FA80F040097047002848BF704700F0D6 -:10AA90001F01012202FA01F14EF280124009CEF2AA -:10AAA000000242F82010BFF34F8FBFF36F8F704743 -:10AAB000002848BF704700F01F01012202FA01F18F -:10AAC0004EF200124009CEF2000242F82010704708 -:10AAD0004EF60C50CEF200000068C0F30220704722 -:10AAE0004EF6145300F00F02CEF2000309011A448F -:10AAF00000F16043B0F1FF3FC8BF03F5644211703D -:10AB0000704700004EF61F50CEF200000021017089 -:10AB1000704700004EF60C51CEF200010A684FF665 -:10AB2000FF031A4060F30A2242F0806040F0FD709B -:10AB30000860704770B52DED048B044600284FF077 -:10AB4000FF0018BF002900F00B81B5EE400AB0EEFF -:10AB5000408AF1EE10FA40F303810320C4F8E816AE -:10AB60002072D1F8480104F6A4021060D1F84C011B -:10AB70005060F7F7ADFA4FF4807500BFD4F8E806DF -:10AB80002844FCF733FF0835B5F5907FF6D14FF434 -:10AB9000907500BFD4F8E8062844FCF727FF083575 -:10ABA000B5F5A07FF6D1D4F8E80600F5A070FCF763 -:10ABB0001DFF40F2F800C0F6010090E80E00C068EA -:10ABC00004F5DB6C04F5437500268CE80E00C4F830 -:10ABD000E40600BFD4F8E816A81901F140020021EC -:10ABE000B0EE480AFDF7EAFC3C36F02EF2D16FF0E9 -:10ABF000EF0500BF6619D4F8E82606F54370012179 -:10AC0000B0EE480AFDF7DAFCD4F8E81606F507704E -:10AC100001F120020121B0EE480AFDF7CFFC3C35DE -:10AC2000E8D1D4F8E81604F57F7001F16002012143 -:10AC3000B0EE480AFDF7C2FCD4F8E81604F58760C8 -:10AC400001F180020021B0EE480AFDF7B7FCD4F80C -:10AC5000E81604F2744001F1A0020121B0EE480AA6 -:10AC6000FDF7ACFC6FF0EF05D4F8E816661906F5B1 -:10AC7000B46001F1C0020021B0EE480AFDF79EFC6D -:10AC8000D4F8E81606F5D26001F1E0020121B0EE39 -:10AC9000480AFDF793FC3C35E6D1B3EE049A04F282 -:10ACA0000C70B0EE480AF0EE490AFCF7EFFA04F235 -:10ACB0002C70B0EE480AF0EE490AFCF7E7FA04F20D -:10ACC0004C70B0EE480AF0EE490AFCF7DFFA04F2E5 -:10ACD0006C70B0EE480AF0EE490AFCF7D7FA04F2BD -:10ACE0008C70B0EE480AF0EE490AFCF7CFFA04F295 -:10ACF000AC70B0EE480AF0EE490AFCF7C7FA04F26D -:10AD0000CC70B0EE480AF0EE490AFCF7BFFA04F244 -:10AD1000EC70B0EE480AF0EE490AFCF7B7FA04F618 -:10AD20000C00B0EE480AF0EE490AFCF7AFFA04F660 -:10AD30002C00B0EE480AF0EE490AFCF7A7FA04F638 -:10AD40004C00B0EE480AF0EE490AFCF79FFA04F610 -:10AD50006C00F2EE040AB0EE480AFCF797FA002005 -:10AD600040B2BDEC048B70BD7047000040F6DB7153 -:10AD700010EE100AC3F6C97161F31E0000EE100A4E -:10AD800070470000F0B581B0F0B1044640F2D450F5 -:10AD9000C2F200000068A0421FD001F031FA4DF26B -:10ADA000BC50C2F201006569076840F2E050C2F28F -:10ADB0000000066801F048FABD424FF0020018BFDB -:10ADC000B5420DD101B0F0BD4FF0500080F31188B5 -:10ADD000BFF36F8FBFF34F8FFEE7002001B0F0BDD0 -:10ADE0004EF28C70C2F2010085420CD04AF68821E6 -:10ADF0000120C2F20101002D08BF04208D4208BFCE -:10AE0000042001B0F0BDA06A10B1022001B0F0BD75 -:10AE100094F85C100320012908BF022001B0F0BDA6 -:10AE20004FF0FF3101FA00F0C04302EE100A30EE9D -:10AE3000600AB8EEC22A31EE601A20EE020A80EEF5 -:10AE4000010ABDEEC00A10EE100A704700207047DC -:10AE5000FAF710FAFEF7D0FCFCF77CFFFCF716FFC0 -:10AE6000FCF7D4FEFCF7F2FEFDF766F8FDF784F878 -:10AE7000FDF7A2F8FDF794F9FDF7AEF9FDF7C8F973 -:10AE8000FDF7C2F8FDF7E6F9FDF702F900F092F8D8 -:10AE9000FCF742FF00F0B8F8FEE700000146C0688A -:10AEA000B6EE002A90ED4C1A90ED4B0A21EE021AF4 -:10AEB00030EE010A002081ED130A704730EE600A7F -:10AEC00032EE612A20EE020A31EE601A80EE010AAB -:10AED00030EE210A70470000401A811000EE101A6F -:10AEE0009FED0B1AB8EEC00A30EE011A9FED0A2A48 -:10AEF0000C28C8BFB0EE410A9FED061AB4EE420A14 -:10AF000030EE011AF1EE10FAB8BFB0EE410A704708 -:10AF1000DB0FC9C0DB0FC940DB0F49C0EFF3058170 -:10AF200000291CBF6FF005007047002804BF0020F7 -:10AF3000704780B501F068FA002080BD10B582B07E -:10AF4000EFF3058119B16FF0050002B010BD0446A2 -:10AF500002F072FB211A0129019005DB01A801F022 -:10AF60007DFA002002B010BD6FF0030002B010BDEA -:10AF700080B502F04DFB022808BF80BD08B9032050 -:10AF800080BD4CF20850C2F2010000680138B0FAEE -:10AF900080F0400980BD000080B5EFF3058010B15E -:10AFA00002F050FB80BD02F047FB80BD4FF47A7089 -:10AFB00070470000EFF3058000281CBF6FF005000C -:10AFC00070474CF20850C2F201000168002911BF1D -:10AFD0004FF0FF30012101600020704780B5EFF392 -:10AFE000058000281CBF6FF0050080BD02F010FB3B -:10AFF00028B1022805D101F0DDFB002080BD012031 -:10B0000080BD4FF0FF3080BD10B5EFF30580002804 -:10B010001CBF6FF0050010BD4CF20854C2F20104D1 -:10B02000206801281CBF4FF0FF3010BDFDF782FDE6 -:10B030000220206001F06AFB002010BD10B5EFF384 -:10B04000058018B16FF00504204610BD02F0E0FA4B -:10B0500002280ED080B902F0CDFC01284FF0010487 -:10B060000CD002F0D5FA002808BF4FF0FF3420467C -:10B0700010BD0024204610BD4FF0FF34204610BD07 -:10B0800010B582B01C46B0FA80F3B1FA81F25B09C8 -:10B090005209EFF3058CBCF1000F42EA030219D00C -:10B0A000002C18BF0124224315D10022019201AACD -:10B0B00001F088FF01281AD10198A8B14EF604507A -:10B0C000CEF200004FF080510160BFF34F8FBFF30D -:10B0D0006F8F09E01AB16FF0030002B010BD224675 -:10B0E00001F0AEFE012806D1002002B010BD6FF0C5 -:10B0F000020002B010BD6FF00100002C08BF6FF01D -:10B10000020002B010BD0000B0B582B014460029A4 -:10B110004FF00005EFF3058218BF002802D1284642 -:10B1200002B0B0BD002AFAD19CB1A568D5B1E268E1 -:10B13000502A16D32269A2B1D4F814C001FB00F240 -:10B14000002394454FF0000228BF012210D24DB1D8 -:10B150000EE0012300226AB9E3B1002201F064FC91 -:10B160000EE01DB9E2680AB92269C2B100220023CB -:10B17000002AF1D0A36822690025009501F078FC2F -:10B18000054655B1002C14BF21680021284601F066 -:10B1900005F9C4E70025002DF4D10025BFE7626959 -:10B1A000B2FA82F25309D5E7B0B582B01C46B0FAC4 -:10B1B00080F3B1FA81F5EFF305825B096D09002A8E -:10B1C00043EA050207D0002C18BF0124224306D011 -:10B1D0006FF003052CE0CAB16FF0030528E00022F0 -:10B1E000019201AA002301F0A1FD01281CD10198C0 -:10B1F000E8B14EF60450CEF200004FF080510160ED -:10B20000BFF34F8FBFF36F8F002511E0224600235D -:10B21000002501F0B9FC01280AD06FF00105002CCF -:10B2200008BF6FF0020503E06FF0020500E00025A3 -:10B23000284602B0B0BD000010B5EFF3058119B18A -:10B240006FF00504204610BD00280FBF6FF0030407 -:10B250000021002401F058FC204610BD10B50C461A -:10B26000EFF3058100291CBF6FF0050010BD0146FA -:10B2700020F0010050B111F001010AD1214601F086 -:10B28000F7FE012804BF002010BD09E06FF00300A5 -:10B2900010BD214601F0D0FF012804BF002010BDE1 -:10B2A0006FF00100002C08BF6FF0020010BD00001D -:10B2B00070B5EFF30581B9B90028044614BF606882 -:10B2C0000020010710D494B1A36843B1E2680021C3 -:10B2D0004F2A4FF0000288BF01220AD84BB9E1681B -:10B2E000B1FA81F1490903E00025284670BD01212A -:10B2F000002200F001063AB1A168002E0CBF012027 -:10B30000042001F07FFB06E0C9B1002E0CBF012034 -:10B31000042001F06BFB054635B1002C14BF2168F9 -:10B320000021284601F03AF8B5FA85F0400986F088 -:10B330000101084308BF45F00105284670BD0025FE -:10B34000002DEAD1F0E7000080B5EFF30581002978 -:10B350001CBF6FF0050080BD014620F0010040B128 -:10B3600011F0010108D100210022002301F00CFCA2 -:10B3700004E06FF0030080BD01F040FD013818BF0C -:10B380006FF0020080BD0000B0B584B048B3B1F1E9 -:10B39000FF3F26DD04464FF0FF300390EFF30580BA -:10B3A00018B300250DF1080C204601220023029558 -:10B3B000CDF800C002F090F803AB20460021002237 -:10B3C000009502F089F80298D0B14EF60450CEF202 -:10B3D00000004FF080510160BFF34F8FBFF36F8FBC -:10B3E0000EE06FF0030003900AE0204601220023E4 -:10B3F00001F0F4FF03AB20460021002201F0EEFF34 -:10B40000039804B0B0BD00002DE9F04F83B00C46A6 -:10B41000EFF3058129B16FF00507384603B0BDE8A9 -:10B42000F08F0546002849D44FF0000B9246A00744 -:10B4300058BFAB4602F000F900906FF0010804F02D -:10B44000010054460027BAF1000F08BF6FF0020850 -:10B45000019002E04746002EDFD00020594602AAA4 -:10B46000234602F0A3F906460128F3D1029807EA21 -:10B47000050140EA01090198002809EA050007D101 -:10B4800000286FF0020718BF4F4607D0C5E700BF7E -:10B49000A8426FF0020708BF4F46BED0BAF1000FB6 -:10B4A000BBD002F0C9F800994F46401A241A4FF059 -:10B4B000000038BF0446002ECFD1AEE76FF003077F -:10B4C000ABE7000080B502F09DF880BD70B584B098 -:10B4D0008E46002100280391EFF3058146D0002914 -:10B4E00044D1FAB19369002B08BF1823382B16D822 -:10B4F0001179C90713D15569946811684FEA950C01 -:10B50000002D08BF4FF0800CFCB1D668602E1BD315 -:10B51000D5B11569C5B10024012555B91BE000203E -:10B5200004B070BD0124002118234FF0800C0025C9 -:10B530008DB1946812690294CDE900326246734677 -:10B5400001F010FF039011E00CB9D4689CB1002504 -:10B550000024002DEDD14CB103AC00931FFA8CF206 -:10B560007346019401F0CAFE012802D1039804B089 -:10B5700070BD0020E6E71469B4FA84F46409D6E7E4 -:10B5800010B5EFF3058100291CBF6FF0050010BD59 -:10B59000044660B12046FFF7F5FB042804BF6FF0B6 -:10B5A000020010BD204600F0ADFF002010BD6FF07E -:10B5B000030010BDF0B581B00D464AF69C2140F263 -:10B5C000D456C2F20101C2F200060F683168044687 -:10B5D000081D00F09FFD601C0AD14DB13068011DAF -:10B5E0004EF28C70C2F2010000F0F2FD01B0F0BD2D -:10B5F0003068E41944600AD340F2E050C2F200001F -:10B6000000683168043100F0C5FD01B0F0BD4DF2B5 -:10B61000BC50C2F2010000683168043100F0BAFD8C -:10B620004EF23870C2F2010001688C4238BF0460EB -:10B6300001B0F0BD70B5044600F0E2FD4EF2984056 -:10B64000C2F20100016840F2D45501310160C2F23A -:10B65000000529684AF68426C2F2010641B1306825 -:10B6600060B92868E16AC06A884298BF2C6005E02A -:10B670002C600068012801D100F0E0F94EF2A040F2 -:10B68000C2F2010001680131016061644EF2A4411F -:10B69000C2F20101E06A0A68904288BF086040F285 -:10B6A000E45100EB8000C2F2000101EB8000211D9B -:10B6B00000F08EFD00F0C8FD306880B12868E16AB6 -:10B6C000C06A884228BF70BD4EF60450CEF200001A -:10B6D0004FF080510160BFF34F8FBFF36F8F70BD8C -:10B6E00070B582B000F08CFD4AF6A026C2F20106C9 -:10B6F000306850BB4EF20874C2F20104204600F0DC -:10B7000039FD4AF63825C2F20105284600F032FD1F -:10B7100040F2D850C2F2000004604DF2C050C2F2B4 -:10B72000010040F2DD4240F2805305600025C2F284 -:10B730000002C2F200030A201021009501F098F9DE -:10B74000306010B103A100F029FE00F07DFD02B0D1 -:10B7500070BD00BF546D725100000000F0B581B0A3 -:10B760004AF2D045C2F201052868E0B14AF68826BF -:10B770004EF29847C2F20106C2F2010700F040FD06 -:10B78000F068C468201D00F0C5FC386801383860D6 -:10B7900028680138286000F057FD204600F058F86E -:10B7A00028680028EAD101B0F0BD000080B5026C25 -:10B7B000002A08BF80BDD0E902C31344C3606345BB -:10B7C00024BF0368C360C36808461946F4F746FF00 -:10B7D00080BD000070B5866B036C0446E3B115466E -:10B7E0001AB3E0681A46F4F739FFE168206C226862 -:10B7F000091A9142E16003D2A16840420844E06026 -:10B80000A81EB0FA80F040093146002E18BF012171 -:10B810000840361A002516E02068002598B9A0686F -:10B8200002F00CF8A56005460DE060681A46F4F7D2 -:10B8300015FF216CD4E901020025084460609042A4 -:10B8400024BF20686060711C2846A16370BD0000A1 -:10B8500010B5044690F85D00022808BF10BD01280D -:10B8600003D030B9206B00F007FD204600F004FD46 -:10B8700010BD4FF0500080F31188BFF36F8FBFF3FE -:10B880004F8F00BFFEE70000416A00290FBF002074 -:10B89000006B0068C0F138007047000040F2D851DA -:10B8A000C2F2000109680A68B2FA82F35B09036018 -:10B8B000002A0EBF0020C8680068704740F630308C -:10B8C000C2F20000C21D22F0070210F0070CA0EB2C -:10B8D000020318BF10464EF28472C2F20102002128 -:10B8E000C2E9000149F69912C0F20102BCF1000F51 -:10B8F00018BF1A440244083A40F2DC5322F007020F -:10B90000C2F200031A60C2E90011111A1A68C0E9F4 -:10B9100000214AF66420C2F2010001604EF2347048 -:10B92000C2F2010001604EF21C70C2F2010001215E -:10B930000170704740F2E4544EF60455C2F2000420 -:10B94000CEF200054FF08056FFF708FF206802286E -:10B95000FAD32E60BFF34F8FBFF36F8FF4E7000071 -:10B96000002808BF704780B500210160C0E90211BE -:10B9700000210022002301F007F9BDE88040704754 -:10B98000B0B5049D002914BF2A602D60C5E90F01E0 -:10B99000284601211C4601F0B7F885F84C40B0BD9F -:10B9A0002DE9F0470A9C8246206B16460F46DDE9DA -:10B9B00008599100A5229846F4F7C7FE206B00EBCA -:10B9C0008600A0F1040020F007067FB104F13400E6 -:10B9D000002100BF7A5C42547A5C1AB10F2901F150 -:10B9E0000101F7D3002084F8430002E0002084F82E -:10B9F00034000027201D372D28BF3725E562C4E914 -:10BA0000135700F0C3FB04F1180000F0BFFBC5F1B1 -:10BA10003800A06130465146424624616462676541 -:10BA2000A76584F85C7000F04BFBB9F1000F206053 -:10BA300018BFC9F80040BDE8F0870000B0B540F27B -:10BA4000E4550024C2F20005281900F093FB1434D9 -:10BA5000B4F58C6FF8D14EF22074C2F20104204686 -:10BA600000F088FB4AF64C25C2F20105284600F09A -:10BA700081FB4AF67020C2F2010000F07BFB4AF61F -:10BA80008820C2F2010000F075FB4EF28C70C2F209 -:10BA9000010000F06FFB4DF2BC50C2F201000460E7 -:10BAA00040F2E050C2F200000560B0BD80B54EF239 -:10BAB0008472C2F2010200BF114612688242FBD3B7 -:10BAC000D1F804C001EB0C03834203D14068604409 -:10BAD00048600846D0F804C000EB0C03934201D044 -:10BAE00013460BE040F2DC53C2F200031B689A429B -:10BAF00004D0D2E9003E0EEB0C02426081420360AA -:10BB000018BF086080BD000080B58C46014641F832 -:10BB100004CF9445006108D99A4201D29C4511D2C4 -:10BB200040F2D850C2F2000007E08069D21A824287 -:10BB300008D24DF2C050C2F20100006800F02AFBAA -:10BB4000002080BD012080BD10B5044600F058FBE8 -:10BB5000A06BB0FA80F0440900F076FB204610BDDF -:10BB600010B5044600F04CFBA06BE16B401AB0FA34 -:10BB700080F0440900F068FB204610BD08480068CA -:10BB8000006880F308884FF0000080F3148862B6E4 -:10BB900061B6BFF34F8FBFF36F8F00DF00BF00BFF1 -:10BBA00008ED00E070B582B040F2D852C2F2000257 -:10BBB00012680546D2680E46D468201D00F0AAFA25 -:10BBC00094F82800410704D400F0FE0084F828000F -:10BBD00010E0A0693246411920462B46FFF794FF3A -:10BBE00040B10026204600212A460023009601F09D -:10BBF000C5FF20B1216A2046884702B070BD4FF0D2 -:10BC0000500080F31188BFF36F8FBFF34F8F00BFD9 -:10BC1000FEE700002DE9F04186B04AF6A027C2F207 -:10BC20000107386802A900224FF0000801F008F966 -:10BC300000286AD001AC02AD0BE000F0FE0086F8EF -:10BC4000280000BF38682946002201F0F9F80028D2 -:10BC50005BD00298B0F1FF3F03DCDDE903200599DA -:10BC6000904702980028EDD4049E706910B1301DF1 -:10BC700000F050FA204600F0B3F802990929E1D803 -:10BC80000246DFE801F0080808052A390808052AF5 -:10BC900096F82800D1E796F82800039BB16940F098 -:10BCA000010086F8280019443046FFF72DFF0028D0 -:10BCB000C8D0316A3046884796F828004007C1D579 -:10BCC0000398B16900230A1830460021CDF800809E -:10BCD00001F054FF0028B5D123E096F8280040F089 -:10BCE0000101039886F82810B06188B181183046A8 -:10BCF0001346FFF709FFA5E796F8280081073FF5EF -:10BD00009CAF304600F0B8FA9CE706B0BDE8F08181 -:10BD10004FF0500080F31188BFF36F8FBFF34F8F48 -:10BD2000FEE74FF0500080F31188BFF36F8FBFF331 -:10BD30004F8F00BFFEE7000070B582B00E4604468C -:10BD400000F038FD01A800F04BF8019919B101F09D -:10BD500051FE02B070BD05464EB9A54207D301F0B1 -:10BD600049FE20462946FFF71DFF02B070BD4EB1C7 -:10BD70004DF2C050C2F2010000680068B0FA80F0D5 -:10BD8000420900E000224AF6A020C2F20100006849 -:10BD9000611B00F017FB01F02DFE0028D9D14EF6F3 -:10BDA0000450CEF200004FF080510160BFF34F8F7E -:10BDB000BFF36F8F02B070BD4DF2BC50C2F20100F4 -:10BDC0000168096821B10068C068C068406801E086 -:10BDD0004FF0FF304EF23871C2F201010860704737 -:10BDE00070B5044601F028FC40F2D056C2F20006BD -:10BDF00031680546884203D200F008F8012000E0CF -:10BE0000002020602846356070BD00002DE9F0411B -:10BE100082B040F2D857C2F200073868016891B387 -:10BE20004FF0000809E000BF6060386829462461CF -:10BE300000F0B0F93868016829B3C068C4680668C2 -:10BE4000251D284600F066F9216A2046884794F8A7 -:10BE500028004007EED5A0693044B042E4D820461F -:10BE6000002132460023CDF8008001F087FE002833 -:10BE7000E0D14FF0500080F31188BFF36F8FBFF314 -:10BE80004F8F00BFFEE74DF2C051C2F201010A68B8 -:10BE900008603A6002B0BDE8F081000081B0002087 -:10BEA000009040F21800C2F2000000684FF050010C -:10BEB00081F31188BFF36F8FBFF34F8F013001D033 -:10BEC000FEE700BF00980028FCD001B070470000DA -:10BED00082B001AC2046FFF7E1FC0199FFF72CFF8F -:10BEE000FFF798FEF6E70000F0B581B0044600F0D9 -:10BEF00087F994F94560012E0FDB04F1240500BF9A -:10BF0000286850B1284601F02DFD002818BF00F028 -:10BF100069FB70B2013E0128F2DCFF2684F845601F -:10BF200000F092F900F06CF994F94470012F0EDBE7 -:10BF300004F11005286850B1284601F013FD0028CF -:10BF400018BF00F04FFB78B2013F0128F2DC84F803 -:10BF5000446000F079F901B0F0BD00002DE9F04334 -:10BF600081B0044600F026FC40F2DC56C2F2000626 -:10BF70003068002808BFFFF7A1FC4EF21C78C2F21F -:10BF8000010898F80000002818BF4FF00040204238 -:10BF90000DD0002401F02EFD60071ED04FF05000A0 -:10BFA00080F31188BFF36F8FBFF34F8FFEE7C4B1EB -:10BFB00014F0070004F108011EBF081A00F108017F -:10BFC0005FEA41700ED04FF0500080F31188BFF34C -:10BFD0006F8FBFF34F8F00BFFEE7204601B0BDE873 -:10BFE000F08300214EF23479C2F20109D9F8000041 -:10BFF0004A1E8242CDD24EF28470C2F20100056820 -:10C000002F4657F8042F8A4211D22B685BB100BF2C -:10C010001F4657F8042F28461D468A4207D22B6830 -:10C02000002BF5D103E04EF28470C2F201003368B8 -:10C030009D42AED004682B68521A112A036010D3B7 -:10C040006818430709D04FF0500080F31188BFF300 -:10C050006F8FBFF34F8F00BFFEE742603960FFF77D -:10C0600025FD4AF664203968D9F80020C2F20100A3 -:10C070000368511A9942C9F8001038BF016098F856 -:10C080000000396800284FF0000018BF41F000415F -:10C0900028604EF23C70C2F2010002680834396038 -:10C0A000511C016076E7000040F2D450C2F200005B -:10C0B000016819B101680A6D01320A6500687047AC -:10C0C00003464BF69D60C0F600004FF0807C21F0E7 -:10C0D000010103E903106FF0020043F8240CA3F1FF -:10C0E000440043F8202C704702EE100A4FF0FF3056 -:10C0F000884030EEC01AB8EEC22AC04321EE021AC0 -:10C1000002EE100AB8EEC22A81EE021A31EE000ADF -:10C1100070470000D0E9013201699A60D1F804C08B -:10C1200082688445536008BF4A6000220261086843 -:10C1300001380860086870474EF2A863C2F2010334 -:10C1400003604EF2A840C2F2010008608020106037 -:10C15000704700004AF6D403C2F2010303604AF2BA -:10C16000D440C2F2010008604FF480701060704744 -:10C17000704700004FF0FF31024642F8081F0021CF -:10C180004260C0E9032201607047000000210161A4 -:10C190007047000080B5D1F800C01CF1010207D043 -:10C1A00000F108039E465B681A686245FAD901E00F -:10C1B000D0F810E0DEF8042008614A609160C1F810 -:10C1C00008E0CEF8041001680131016080BD000074 -:10C1D000D0F800C0436808619A684B608A609A682A -:10C1E000996051600CF1010101607047DFF80C00AB -:10C1F000016841F470010160704700BF88ED00E004 -:10C200004FF0500080F31188BFF36F8FBFF34F8F53 -:10C2100040F21800C2F2000001684A1C026001B13D -:10C2200070474EF60450CEF200000068000608BFCA -:10C2300070474FF0500080F31188BFF36F8FBFF34A -:10C240004F8F00BFFEE7000040F21800C2F200006E -:10C25000016839B10139016018BF7047002080F3CF -:10C26000118870474FF0500080F31188BFF36F8F33 -:10C27000BFF34F8FFEE70000B0B5002808BFB0BD88 -:10C2800004464EF21C70C2F20100007854F8041CFF -:10C29000002818BF4FF0004008420CD0A4F1080558 -:10C2A0002A6892B14FF0500080F31188BFF36F8F6E -:10C2B000BFF34F8FFEE74FF0500080F31188BFF3BC -:10C2C0006F8FBFF34F8F00BFFEE721EA000044F8F5 -:10C2D000040C00F06FFA4EF23471C2F2010154F80E -:10C2E000040C0A68104408602846FFF7DFFB4AF692 -:10C2F0006C20C2F2010001680131016001F07AFB9B -:10C30000B0BD00004EF21000CEF20000002101602E -:10C3100081604CF20001C2F20101096844F6D35277 -:10C32000C1F26202A1FB02124FF0FF3101EB921148 -:10C330004160072101607047EFF30580102814D396 -:10C340004EF2F031CEF20001405C4AF2C941C2F235 -:10C3500001010978884208D24FF0500080F311881B -:10C36000BFF36F8FBFF34F8FFEE74EF60C50CEF248 -:10C3700000004EF290410068C2F20101096800F429 -:10C38000E060884298BF70474FF0500080F31188FA -:10C39000BFF36F8FBFF34F8FFEE700004EF2447C78 -:10C3A0000022C2F2010C00BF5CF8323023B101322E -:10C3B000082A08BF7047F7E70CEBC2034CF83210AD -:10C3C0005860704770B515460E460446FFF718FFD3 -:10C3D00094F84400FF2804BF002084F8440094F837 -:10C3E0004500FF2804BF002084F84500FFF72CFF1C -:10C3F000A06B28B904F1240031462A4600F014F954 -:10C400002046FFF771FD70BD10B5D8B104464EF25D -:10C410009C40C2F20100006848B14FF0500080F328 -:10C420001188BFF36F8FBFF34F8F00BFFEE700F09F -:10C43000C1F920460021FFF7BDF801F0DBFA002822 -:10C4400018BF10BD4EF60450CEF200004FF08051E0 -:10C450000160BFF34F8FBFF36F8F10BDB0B590B1C8 -:10C460000D46D1B104464EF29C40C2F20100006874 -:10C47000E8B14FF0500080F31188BFF36F8FBFF326 -:10C480004F8F00BFFEE74FF0500080F31188BFF3DD -:10C490006F8FBFF34F8F00BFFEE74FF0500080F368 -:10C4A0001188BFF36F8FBFF34F8F00BFFEE700F01F -:10C4B00081F94AF69C20C2F201000068226890428D -:10C4C00002EB050102D2914202D309E0914201D36D -:10C4D000814205D92160081A0021FFF76BF800E0BE -:10C4E000216001F087FA002818BFB0BD4EF6045055 -:10C4F000CEF200004FF080510160BFF34F8FBFF3C9 -:10C500006F8FB0BD70B50446FFF77AFE40F2D45687 -:10C51000002CC2F2000608BF3468251D2846FFF72C -:10C52000F9FDA06A18B104F11800FFF7F3FD4EF20F -:10C53000A040C2F20100016801310160306884420C -:10C540000CD04EF29840C2F201000168013901603E -:10C550002046FFF77DF9FFF72FFC0DE04AF6882013 -:10C56000C2F201002946FFF733FE4AF2D040C2F280 -:10C570000100016801310160FFF766FE4AF6842080 -:10C58000C2F201000068E8B13068844218BF70BD93 -:10C590004EF29C40C2F20100006840B14FF05000E2 -:10C5A00080F31188BFF36F8FBFF34F8FFEE74EF616 -:10C5B0000450CEF200004FF080510160BFF34F8F66 -:10C5C000BFF36F8F70BD00004AF66821C2F201010F -:10C5D000096801604AF69C21C2F2010109684160C4 -:10C5E000704700004AF6A420C2F201000121016058 -:10C5F0007047000010B568B10C4640F2D451C2F249 -:10C60000000109681831FFF7C5FD20460121FEF73A -:10C61000D1FF10BD4FF0500080F31188BFF36F8F32 -:10C62000BFF34F8FFEE70000B0B590B10D4640F26A -:10C63000D451C2F20001096814461831FFF7C8FD51 -:10C64000002C18BF4FF0FF3528462146FEF7B2FFF9 -:10C65000B0BD4FF0500080F31188BFF36F8FBFF370 -:10C660004F8F00BFFEE7000070B528B3026D04468F -:10C670001AB3E06C884238BF0846012A1CD1E16A2F -:10C68000814208BF70BD40F2D452C2F2000212686B -:10C69000A2421CD0A269E062002A5CBFC0F138004F -:10C6A000A06140F2E456606901EB8101C2F200062C -:10C6B00006EB8101884214D070BD4FF0500080F32A -:10C6C0001188BFF36F8FBFF34F8F00BFFEE74FF0AE -:10C6D000500080F31188BFF36F8FBFF34F8F00BFFF -:10C6E000FEE7251D2846FFF715FD4EF2A441C2F2D4 -:10C6F0000101E06A0A68904288BF086000EB800090 -:10C7000006EB80002946FFF763FD70BD10B586B0CB -:10C71000002405A804A903AACDE90444FFF70CFDF1 -:10C72000DDE9032005990023CDE901014BF6351021 -:10C73000C0F600001DA1009400F014FE4AF660212E -:10C74000C2F20101086010B101F0DEF90446601C7C -:10C7500022D0012C1ED14FF0500080F31188BFF37E -:10C760006F8FBFF34F8F4EF23870C2F201004FF05F -:10C77000FF3101604AF68420C2F20100012101600C -:10C780004AF69C20C2F2010000210160FEF7ECFA9B -:10C7900000F08AF806B010BD4FF0500080F3118809 -:10C7A000BFF36F8FBFF34F8FFEE700BF49444C4587 -:10C7B000000000004EF29C40C2F20100016801310D -:10C7C00001607047B0B54EF29C40C2F201000068B3 -:10C7D00030B14AF6A420C2F2010001210160B0BDCF -:10C7E0004AF6A420C2F2010000210160FEF72EFBF0 -:10C7F0004EF29441C2F201010A6840F2D4559042CF -:10C80000C2F2000504D92B68821A5C6D22445A6575 -:10C8100008602868006B0168B1F1A53F0BD1416841 -:10C82000B1F1A53F07D18168B1F1A53F03D1C0683F -:10C83000B0F1A53F04D0286829683431FFF798FC8F -:10C840004EF2A440C2F20100016840F2E45201EB52 -:10C850008103C2F2000252F823404CB902EB830379 -:10C86000143B00BFB1B153F814490139002CF9D081 -:10C8700001EB810302EB830252F8043F5B68141D55 -:10C88000A342136001D15B6813601268D2682A600A -:10C890000160B0BD4FF0500080F31188BFF36F8F7F -:10C8A000BFF34F8FFEE7000080B582B04EF200402C -:10C8B000CEF200004CF27021C4F20F11D0F8002922 -:10C8C0004B1C9A4209D14FF0500080F31188BFF3FE -:10C8D0006F8FBFF34F8F00BFFEE7D0F800298A4269 -:10C8E00009D14FF0500080F31188BFF36F8FBFF371 -:10C8F0004F8F00BFFEE701784AF2C9420191FF2144 -:10C9000001700178C2F201028DF803109DF8031046 -:10C9100001F0500111704EF29041C2F20101072264 -:10C920000A609DF90320B2F1FF3F0CDC0A6800BFEA -:10C930009DF80330013A5B008DF803309DF9033018 -:10C94000002BF5D40A600A68032A2DD14FF4E06366 -:10C9500003EA02220A6001990170D0F8201941F41B -:10C960007001C0F82019D0F8201941F07041C0F8CA -:10C970002019FFF7C7FC40F21800C2F200000021A6 -:10C980000160FFF733FC4EF63470CEF20000016810 -:10C9900041F040410160FFF7F1F8FFF713FFFFF7A7 -:10C9A0007DFA002002B080BD4FF0500080F3118866 -:10C9B000BFF36F8FBFF34F8FFEE7000080B54FF0DE -:10C9C000500080F31188BFF36F8FBFF34F8F00F0DB -:10C9D00043FE30B14EF60450CEF200004FF08051CD -:10C9E0000160002080F3118880BD000010B5024670 -:10C9F0000120002100F018F80446FEF7B1FF2046A0 -:10CA000010BD000010B582B00B4684460120002105 -:10CA10000022CDF800C000F02BF80446FEF7A0FF7E -:10CA2000204602B010BD0000F0B581B0B0B105469F -:10CA30004843503014460E46FFF790FA074650B16F -:10CA4000002007F1500287F8460028463146234669 -:10CA50000097FEF795FF384601B0F0BD4FF050004B -:10CA600080F31188BFF36F8FBFF34F8FFEE7000095 -:10CA7000B0B582B068B11D46ABB1F1B9EAB14FF0C3 -:10CA8000500080F31188BFF36F8FBFF34F8F00BF4B -:10CA9000FEE74FF0500080F31188BFF36F8FBFF3B4 -:10CAA0004F8F00BFFEE74FF0500080F31188BFF3B7 -:10CAB0006F8FBFF34F8F00BFFEE751B14AB94FF000 -:10CAC000500080F31188BFF36F8FBFF34F8F00BF0B -:10CAD000FEE750230193019B502B0AD1069B019C3A -:10CAE000012485F846400095FEF74AFF284602B02B -:10CAF000B0BD4FF0500080F31188BFF36F8FBFF3CC -:10CB00004F8F00BFFEE7000070B5F8B104460E4637 -:10CB1000FFF776FB2068D4E90F12002502FB010322 -:10CB2000013901FB0201A563C4E90103FF20E160B3 -:10CB300084F8440084F8450004F110007EB1FFF74A -:10CB400019FB04F12400FFF715FB18E04FF050002B -:10CB500080F31188BFF36F8FBFF34F8FFEE701683B -:10CB600069B100F0FFFE50B14EF60450CEF2000065 -:10CB70004FF080510160BFF34F8FBFF36F8FFFF70E -:10CB800063FB012070BD00002DE9F04F83B00292DD -:10CB9000B8B11D460E460446E9B1022D03D1E06B43 -:10CBA000012840F09A8000F033FD00BB0298F0B1FC -:10CBB0004FF0500080F31188BFF36F8FBFF34F8F9A -:10CBC000FEE74FF0500080F31188BFF36F8FBFF383 -:10CBD0004F8F00BFFEE7206C0028DED04FF05000E2 -:10CBE00080F31188BFF36F8FBFF34F8FFEE7FFF71E -:10CBF00007FBA06B022D58D0E16B884255D304F19E -:10CC0000100801206F464FF0000B0DF108094FF09E -:10CC1000805A00BF0299002900F07B80C00702D033 -:10CC20003846FFF7D1FCFFF70FFBFFF7C3FDFFF717 -:10CC3000E7FA94F84400FF2808BF84F844B094F859 -:10CC40004500FF2808BF84F845B0FFF7FDFA3846D5 -:10CC5000494600F00FFB00285ED12046FEF780FF1A -:10CC6000A0B102994046FFF7C5FC2046FFF73CF90A -:10CC700000F0C0FE78B94EF60450CEF20000C0F8C5 -:10CC800000A0BFF34F8FBFF36F8F04E02046FFF784 -:10CC90002BF900F0AFFEFFF7B3FAA06B022D04D022 -:10CCA000E16B88424FF00000B4D2204631462A465C -:10CCB000FEF790FD54F8241FC9B1204600F052FE43 -:10CCC00008B34EF60450CEF200004FF080510160E0 -:10CCD000BFF34F8FBFF36F8F15E04FF0500080F31D -:10CCE0001188BFF36F8FBFF34F8F00BFFEE750B1C6 -:10CCF0004EF60450CEF200004FF080510160BFF3B9 -:10CD00004F8FBFF36F8FFFF79FFA012003B0BDE88D -:10CD1000F08FFFF799FA04E02046FFF7E5F800F0FE -:10CD200069FE002003B0BDE8F08F00002DE9F0435C -:10CD300081B0E8B11E46914605460F4609B3022E62 -:10CD400002D1E86B012837D1FFF7F6FAEFF311882B -:10CD50004FF0500080F31188BFF36F8FBFF34F8FF8 -:10CD6000A86B022E19D0E96B884216D300203FE051 -:10CD70004FF0500080F31188BFF36F8FBFF34F8FD8 -:10CD8000FEE7286C0028DAD04FF0500080F31188BD -:10CD9000BFF36F8FBFF34F8FFEE795F84540A86B49 -:10CDA000284639463246FEF715FDFF2C0DD0601C93 -:10CDB00085F8450001201BE04FF0500080F31188FA -:10CDC000BFF36F8FBFF34F8FFEE755F8240F70B19D -:10CDD000284600F0C7FD0146B9F1000F4FF00100F1 -:10CDE00006D000291CBF0120C9F8000000E0012086 -:10CDF00088F3118801B0BDE8F0830000B0B5A8B198 -:10CE00008568044600F0FEFB85421CBF0020B0BDD3 -:10CE1000E0680138E0601CBF0120B0BD2046002161 -:10CE200000220023FFF7B0FE0120B0BD4FF05000FC -:10CE300080F31188BFF36F8FBFF34F8FFEE70000C1 -:10CE40002DE9F04F85B0049298B10C4605460029B3 -:10CE500000F0A58000F0DCFBA8B9049898B14FF071 -:10CE6000500080F31188BFF36F8FBFF34F8F00BF67 -:10CE7000FEE74FF0500080F31188BFF36F8FBFF3D0 -:10CE80004F8F00BFFEE705F1240005F11009019066 -:10CE900002AF0DF1100A4FF000080AE02846FFF734 -:10CEA00023F800F0A7FD2846FEF74EFE002840F0CC -:10CEB0008480FFF7A5F9D5F838B0BBF1000F1DD07D -:10CEC00028462146FEF772FCABF10100A8632869F1 -:10CED00070B1484600F046FD50B14EF60450CEF217 -:10CEE00000004FF080510160BFF34F8FBFF36F8F91 -:10CEF000FFF7AAF900200126A0B95FE0049850B11D -:10CF0000B8F1000F02D13846FFF75EFB4FF0010881 -:10CF1000012038B952E0FFF797F9002600200028D9 -:10CF20004CD000BFFFF790F9FFF744FCFFF768F91A -:10CF300095F84400FF2804BF002085F8440095F8C8 -:10CF40004500FF2804BF002085F84500FFF77CF965 -:10CF50003846514600F08EF900289FD12846FEF74A -:10CF6000F3FDB0B104990198FFF744FB2846FEF7A2 -:10CF7000BBFF00F03FFD00289BD14EF60450CEF2DF -:10CF800000004FF080510160BFF34F8FBFF36F8FF0 -:10CF90008FE72846FEF7A8FF00F02CFD89E7286CF4 -:10CFA00000283FF457AF4FF0500080F31188BFF3D3 -:10CFB0006F8FBFF34F8F00BFFEE70026304605B0EE -:10CFC000BDE8F08F2DE9F04381B000B391460546EE -:10CFD0000E4631B3FFF7B0F9EFF311884FF0500070 -:10CFE00080F31188BFF36F8FBFF34F8FAC6B24B307 -:10CFF00095F8447028463146FEF7D8FB601EFF2F97 -:10D00000A8631CD0781C85F8440001202AE04FF06A -:10D01000500080F31188BFF36F8FBFF34F8F00BFB5 -:10D02000FEE7286C0028D5D04FF0500080F311881F -:10D03000BFF36F8FBFF34F8FFEE7002012E055F86C -:10D04000100F70B1284600F08DFC0146B9F1000FB9 -:10D050004FF0010006D000291CBF0120C9F80000D4 -:10D0600000E0012088F3118801B0BDE8F0830000E2 -:10D070002DE9F04F85B0049158B10446006C90B191 -:10D080004FF0500080F31188BFF36F8FBFF34F8FC5 -:10D09000FEE74FF0500080F31188BFF36F8FBFF3AE -:10D0A0004F8F00BFFEE700F0B3FA50B9049840B1CB -:10D0B0004FF0500080F31188BFF36F8FBFF34F8F95 -:10D0C000FEE704F1240004F1100501904FF0000880 -:10D0D00002AF0DF1100A4FF000094FF0000B0AE00B -:10D0E0002046FEF701FF00F085FC2046FEF72CFDF0 -:10D0F000002840F07F80FFF783F8A06BF0B1013883 -:10D10000A063206810B9FEF7CFFFA060286870B157 -:10D11000284600F027FC50B14EF60450CEF2000035 -:10D120004FF080510160BFF34F8FBFF36F8FFFF758 -:10D130008BF801260020B8B96FE000BF049850B109 -:10D14000BBF1000F02D13846FFF73EFA4FF0010B5A -:10D15000012048B961E0B9F1000F62D1FFF774F81E -:10D1600000200026002858D0FFF76EF8FFF722FBBA -:10D17000FFF746F894F84400FF2808BF84F844807D -:10D1800094F84500FF2808BF84F84580FFF75CF855 -:10D190003846514600F06EF80028A1D12046FEF72F -:10D1A000D3FC28B92046FEF79FFE00F023FCA2E73F -:10D1B000206838B9FFF724F8A06800F089FB8146A1 -:10D1C000FFF742F804990198FFF714FA2046FEF79A -:10D1D0008BFE00F00FFC00287FF48DAF4EF604505C -:10D1E000CEF200004FF080510160BFF34F8FBFF3CC -:10D1F0006F8F80E7B9F1000F0ED0FFF701F82046DE -:10D20000FEF742FBA168024608461146FFF72CFADA -:10D21000FFF71AF8002600E00026304605B0BDE80A -:10D22000F08F4FF0500080F31188BFF36F8FBFF382 -:10D230004F8F00BFFEE7000070B568B186680446F6 -:10D240000D4600F0DFF986420FD020462946FFF751 -:10D250000FFF58B9002070BD4FF0500080F31188C7 -:10D26000BFF36F8FBFF34F8FFEE70120E1680131FD -:10D27000E16070BDB0B5D0B10D4611B30446FEF704 -:10D28000BFFF4AF69C20C2F2010001682868421CD8 -:10D2900021D04AF668236268C2F20103D3F800C0C5 -:10D2A00091421AD323689C4517D0012422E04FF005 -:10D2B000500080F31188BFF36F8FBFF34F8F00BF13 -:10D2C000FEE74FF0500080F31188BFF36F8FBFF37C -:10D2D0004F8F00BFFEE700240CE0891A884206D970 -:10D2E000401A28602046FFF76FF9002402E0002072 -:10D2F00001242860FEF7A8FF2046B0BD2DE9F043C9 -:10D3000083B007469000984615468946FEF726FEEC -:10D3100078B106466020FEF721FE38B10446066368 -:10D3200054B94FF0FF3003B0BDE8F0833046FEF74C -:10D33000A3FF0024002CF4D0DDE90A10002284F8B9 -:10D340005D20CDE90010384649462A4643460294FE -:10D35000FEF726FB2046FEF76DF9012003B0BDE87D -:10D36000F083000070B586B00B9CCCB10C9E06B368 -:10D3700060250495049D602D25D1049DDDF828C00D -:10D38000022586F85D5005AD3463CDE900C50296EF -:10D39000FEF706FB3046FEF74DF9059806B070BD66 -:10D3A0004FF0500080F31188BFF36F8FBFF34F8FA2 -:10D3B000FEE74FF0500080F31188BFF36F8FBFF38B -:10D3C0004F8F00BFFEE74FF0500080F31188BFF38E -:10D3D0006F8FBFF34F8F00BFFEE70000F0B581B045 -:10D3E000D0B11D46174604460E46FEF709FF002D34 -:10D3F0001CBFA06D286094F85C000221042F84F803 -:10D400005C1012D80125DFE807F023031C2620005A -:10D41000A16D3143A1651FE04FF0500080F31188EA -:10D42000BFF36F8FBFF34F8FFEE7A16D013113D0B4 -:10D430004FF0500080F31188BFF36F8FBFF34F8F11 -:10D44000FEE7A16D0131A16506E0022803D10025A8 -:10D4500001283CD103E0A6650125012837D1261D0E -:10D460003046FEF757FE4EF2A441C2F20101E06AD7 -:10D470000A68904288BF086040F2E45100EB8000E7 -:10D48000C2F2000101EB80003146FEF7A1FEA06A66 -:10D4900048B14FF0500080F31188BFF36F8FBFF396 -:10D4A0004F8F00BFFEE740F2D451C2F20001E06AA4 -:10D4B0000968C96A88420AD94EF60450CEF20000C3 -:10D4C0004FF080510160BFF34F8FBFF36F8FFEF7B6 -:10D4D000BBFE284601B0F0BD2DE9F04120B31D464A -:10D4E000174604460E46FEF727FFEFF311884FF06C -:10D4F000500080F31188BFF36F8FBFF34F8F002D63 -:10D500001CBFA06D286094F85C000221042F84F8F1 -:10D510005C1012D80125DFE807F023031C26200049 -:10D52000A16D3143A1651FE04FF0500080F31188D9 -:10D53000BFF36F8FBFF34F8FFEE7A16D013113D0A3 -:10D540004FF0500080F31188BFF36F8FBFF34F8F00 -:10D55000FEE7A16D0131A16506E0022803D1002597 -:10D56000012849D103E0A6650125012844D1A06A1C -:10D5700048B14FF0500080F31188BFF36F8FBFF3B5 -:10D580004F8F00BFFEE74EF29C40C2F201000068E0 -:10D5900030B14AF6702004F11801C2F2010015E022 -:10D5A000261D3046FEF7B6FD4EF2A441C2F201013F -:10D5B000E06A0A68904288BF086040F2E45100EBDC -:10D5C0008000C2F2000101EB80003146FEF700FE50 -:10D5D00040F2D451C2F20001E06A0968C96A884287 -:10D5E0000AD9069800281CBF012101604AF6A42030 -:10D5F000C2F201000121016088F311882846BDE8CC -:10D60000F081000040F2D450C2F200000068704780 -:10D610004AF68420C2F201000068002804BF0120FD -:10D6200070474EF29C40C2F201000068B0FA80F0F0 -:10D6300040094000704700004AF69C20C2F20100F9 -:10D640000068704780B5FEF777FE4AF69C20C2F26C -:10D650000100006880BD00002DE9F04F81B04EF25E -:10D660009C40C2F20100006840B14EF24070C2F22C -:10D670000100016800240131016092E04AF69C201B -:10D68000C2F2010001684E1C066021D34DF2BC506D -:10D69000C2F201000168096849B14FF0500080F3FF -:10D6A0001188BFF36F8FBFF34F8F00BFFEE740F2CB -:10D6B000E052C2F200020168136803604AF6682073 -:10D6C0001160C2F20100016801310160FEF774FBD4 -:10D6D0004EF23871C2F20101086840F2D45A40F2A9 -:10D6E000E4588642C2F2000AC2F2000801D20024C5 -:10D6F00045E04DF2BC57C2F20107386800240068CB -:10D7000098B34EF2A44BC2F2010B19E0D9F82C00E9 -:10D71000DBF80010884288BFCBF8000000EB8000E7 -:10D7200008EB80002946FEF753FDD9F82C00DAF803 -:10D730000010C96A3A68884228BF01241068B8B14D -:10D740003868C068D0F80C904D4655F8040F8642F2 -:10D7500010D32846FEF7DEFCD9F828000028D5D0E3 -:10D7600009F11800FEF7D6FCD0E74FF0FF3005E0D6 -:10D770004FF0FF304EF23871C2F201010860DAF862 -:10D780000000C06A00EB800058F8200001284AF62B -:10D79000A420C2F2010088BF01240068002818BF3D -:10D7A0000124204601B0BDE8F08F00002DE9F041D2 -:10D7B0001E46154688460746FEF722FD40F2D45421 -:10D7C000C2F20004206890F85C00022819D020689A -:10D7D000816D21EA0701816520684FF0010180F821 -:10D7E0005C1076B130460121FDF7E4FE4EF60450A0 -:10D7F000CEF200004FF080510160BFF34F8FBFF3B6 -:10D800006F8FFEF721FDFEF7FBFC15B12068806DE0 -:10D8100028602068002590F85C100020022905D1BE -:10D82000216801258A6D22EA08028A65216881F84B -:10D830005C00FEF709FD2846BDE8F081B0B580B177 -:10D84000044640F2D450C2F200000068A0420AD060 -:10D850004FF0500080F31188BFF36F8FBFF34F8FED -:10D86000FEE70020B0BD206D38B3013820654FF0D1 -:10D87000000018BFB0BDE16AE26C91421CD0251DCA -:10D880002846FEF747FCE06CC0F13801A1614EF27A -:10D89000A441E062C2F201010A68904288BF0860B8 -:10D8A00040F2E45100EB8000C2F2000101EB800085 -:10D8B0002946FEF78DFC0120B0BD4FF0500080F3EB -:10D8C0001188BFF36F8FBFF34F8F00BFFEE70000DB -:10D8D000F0B581B000B340F2D456C2F2000604465F -:10D8E000C06A3168C96A884219D2A169002904D482 -:10D8F0003168C96AC1F13801A16140F2E457616938 -:10D9000000EB8000C2F2000707EB800081420FD0DD -:10D910003068C06AE06221E0002001B0F0BDE16C37 -:10D920003068C26A0020914238BF012001B0F0BDCA -:10D93000251D2846FEF7EEFB30684EF2A441C06A72 -:10D94000C2F20101E0620A68904288BF086000EB01 -:10D95000800007EB80002946FEF73AFC012001B069 -:10D96000F0BD0000B0B5C068C5687DB105F1180410 -:10D970002046FEF7CFFB4EF29C40C2F20100006849 -:10D9800068B14AF67020C2F201001DE04FF050006D -:10D9900080F31188BFF36F8FBFF34F8FFEE72C1D0D -:10D9A0002046FEF7B7FB4EF2A441C2F20101E86A3D -:10D9B0000A68904288BF086040F2E45100EB8000A2 -:10D9C000C2F2000101EB80002146FEF701FC40F2AB -:10D9D000D451C2F20001E86A0968C96A884291BF5D -:10D9E00000204AF6A421C2F20101012088BF08608C -:10D9F000B0BD00002DE9F04F81B04EF29C44C2F260 -:10DA00000104206868B1FEF7FBFB20680138206044 -:10DA1000206880B10024FEF717FC204601B0BDE865 -:10DA2000F08F4FF0500080F31188BFF36F8FBFF37A -:10DA30004F8F00BFFEE74EF29840C2F2010000682F -:10DA400000285DD04AF67026C2F2010630684AF618 -:10DA5000A428C2F2010890B34EF2A44740F2E45960 -:10DA600040F2D45BC2F20107C2F20009C2F2000B1D -:10DA70004FF0010AF068C56805F11800FEF74AFB8F -:10DA80002C1D2046FEF746FBE86A3968884288BFAD -:10DA9000386000EB800009EB80002146FEF798FB20 -:10DAA000E86ADBF80010C96A884228BFC8F800A0FD -:10DAB00030680028DED1002D18BFFEF77DF94EF248 -:10DAC0004074C2F20104256855B10126FFF7C4FD78 -:10DAD000002818BFC8F80060013DF7D10020206081 -:10DAE000D8F8000070B14EF60450CEF200004FF0AE -:10DAF00080510160BFF34F8F0124BFF36F8F8AE71E -:10DB0000002488E7002486E780B586B0FDF7E8FDAD -:10DB10004AF6A020C2F20100006808B30020CDE957 -:10DB2000040005A804A903AAFEF714FBDDE90320FD -:10DB30000221DDF814C0CDE900104BF6D160C0F62B -:10DB400000000CA10023CDF808C0FFF70BFC4EF23B -:10DB5000A071C2F20101086010B1012006B080BDC1 -:10DB60004FF0500080F31188BFF36F8FBFF34F8FDA -:10DB7000FEE700BF546D72205376630010B584B089 -:10DB8000A8B14AF6A024C2F2010484462068C0B1BC -:10DB90000529CDE90012CDF808C015DCFFF738FDE6 -:10DBA00001462068022916D1069A694615E04FF011 -:10DBB000500080F31188BFF36F8FBFF34F8F00BF0A -:10DBC000FEE7002004B010BD69461A460023FFF7A7 -:10DBD000ADF804B010BD694600220023FEF7D4FF63 -:10DBE00004B010BD5FEA400C08BF91F0000F4FEA8F -:10DBF0008C234FEAC12243EA51514FEA1C5018BF0F -:10DC000000F5F0404FEA300018BF41F000415FEAF4 -:10DC10006C5C00F02980BCF1FF3F08BF40F0804001 -:10DC20007047130C06BF12044FF0100C4FF0000C9D -:10DC3000130E04BF12020CF1080C130F04BF1201E3 -:10DC40000CF1040C930F04BF92000CF1020CD30FE3 -:10DC500004BF52000CF1010C11464FF00002A0F17C -:10DC60001F00A0EB0C00704711F0004F08BF704779 -:10DC700031F000413FF4D5AF0B0C06BF09044FF063 -:10DC8000100C4FF0000C0B0E04BF09020CF1080C35 -:10DC90000B0F04BF09010CF1040C8B0F04BF8900AA -:10DCA0000CF1020CCB0F04BF49000CF1010CCCF1BC -:10DCB000200322FA03F341EA030102FA0CF2A0EB7B -:10DCC0000C0000F10100704723F07F4720F07F4CEB -:10DCD00080EA030000F00040ACEB070303F57C533F -:10DCE00003F1FF032DE9804909B44FEA144324EA04 -:10DCF00003484FEA154B25EA0B4E0FF2042606EBBC -:10DD000013273E7803FB0667C7F5000707FB06F6F7 -:10DD10004FEAD64606F102064FEA543707FB066C77 -:10DD2000CCF1005C4FEA1C472CEA074C0CFB06F5D3 -:10DD300007FB06F404EB15464FEA961649085FEA1E -:10DD4000320234BF00204FF000404FEAD13706FBCB -:10DD500007FC4FEA1C4C0CFB0BF7D21B03FB0CF728 -:10DD600061EB07010CFB0EF7B0EB074072EB1742BB -:10DD70000CFB08F734BFA2EB0742B2EB074261EBA2 -:10DD800017414FEA0C444FEA910706FB07FC4FEAA4 -:10DD90001C4C0CFB0BF7B0EBC74072EB573203FB8C -:10DDA0000CF734BFA2EBC742B2EBC74261EB57316D -:10DDB0000CFB0EF7B0EBC70072EB57720CFB08F7C9 -:10DDC00034BFA2EBC702B2EBC70261EB57714FEA57 -:10DDD000816141EA92114FEA826242EA90124FEA6F -:10DDE000806004EBCC04039F4FEAD13706FB07FCAD -:10DDF0004FEA1C4C0CFB0BF7D21B03FB0CF761EB3F -:10DE000007010CFB0EF7B0EB074072EB17420CFB5F -:10DE100008F734BFA2EB0742B2EB074261EB1741B0 -:10DE20004FEA8C5504EB9C244FEA910706FB07FC54 -:10DE30004FEA1C4C0CFB0BF7B0EBC74072EB5732B0 -:10DE400003FB0CF734BFA2EBC742B2EBC74261EB56 -:10DE500057310CFB0EF7B0EBC70072EB57720CFB9F -:10DE600008F734BFA2EBC702B2EBC70261EB5771F0 -:10DE70004FEA816141EA92114FEA826242EA9012CE -:10DE80004FEA806015EB4C2544F100044FEAD1378E -:10DE900006FB07FC4FEA1C4C0CFB0BF7D21B03FBE9 -:10DEA0000CF761EB07010CFB0EF7B0EB074072EBD0 -:10DEB00017420CFB08F734BFA2EB0742B2EB074254 -:10DEC00061EB17414FEA813141EA92414FEA8232D8 -:10DED00042EA90424FEA80304FEA0C7615EB1C156F -:10DEE00044F1000448EA03434EEA0B484FF0000EA9 -:10DEF000B2EB080C71EB030724BF624639464EEBC8 -:10DF00000E0E4FF0000B0018524149414BEB0B0B2A -:10DF1000B2EB080C71EB03077BF1000B24BF6246E8 -:10DF200039464EEB0E0E4FF0000B0018524149419E -:10DF30004BEB0B0BB2EB080C71EB03077BF1000B07 -:10DF400024BF624639464EEB0E0E51EA020718BF57 -:10DF500046F0010616EB0E7655F1000254F1000171 -:10DF600003D5BDE88901BDE80088BDE88901BDE8A9 -:10DF70000048B619524141EB0101A3F1010370477A -:10DF800080807F7E7D7C7B7A7978777676757473F6 -:10DF9000727171706F6E6E6D6C6C6B6A6A696868B5 -:10DFA000676666656464636362616160605F5F5E4B -:10DFB0005E5D5D5C5C5B5B5A5A59595858575756C1 -:10DFC0005655555554545353525252515150505026 -:10DFD0004F4F4F4E4E4D4D4D4C4C4C4B4B4B4A4A78 -:10DFE0004A494949484848474747474646464545BC -:10DFF00045444444444343434342424242414141F5 -:10E000009C46002B30D477002BD04FEA37071CB545 -:10E0100003B44FF010004FF01001BAF1000F06D01A -:10E02000BCF1000FDCBF40F0080040F008014FF0E9 -:10E0300000000FBCBDE810400BF1010BBBF1010F5C -:10E0400008BF5FEA170722BF12F1010211F10101B7 -:10E050004FF0004143F1000300F0004043EA0000AC -:10E060007047F9D35708D0E746EA06464FEA164606 -:10E0700013F1400F1FDD13F1200FDFBF16430A46D7 -:10E08000002120335B42BED0C3F1200746EA06469A -:10E090004FEA164602FA07F746EA070622FA03F2A3 -:10E0A000C3F1200701FA07F742EA070221FA03F158 -:10E0B0004FF00003A7E746EA020646EA06464FEAA3 -:10E0C000164646EA0106BCBF46EA0646360C4FF045 -:10E0D00000034FF000024FF0000194E72DE9804C5F -:10E0E00070B49A46934691E8380007C831EA400C6C -:10E0F00048BF34EA430C03D5FFF7E6FDFFF780FF86 -:10E10000F0BCBDE8008C2DE9804C70B49A46934673 -:10E1100091E8380007C810F0804F08BF13F0804F17 -:10E1200003D100F005F8FFF76BFFF0BCBDE8008CF1 -:10E1300020F07F4723F07F4C80EA030000F000408E -:10E1400007EB0C03A3F57C53A3F1FE0392F0000F41 -:10E1500000F0B38095F0000F00F077802DE90149C1 -:10E160004FEA114021EA00484FEA144624EA0647E4 -:10E1700000FB06FC08FB06F607FB08F818EB064850 -:10E180004CEB164C00FB07F718EB07484CEB17401D -:10E190004FEA124B22EA0B4E4FEA154625EA064794 -:10E1A0000BFB06FC0EFB06F607FB0EFE1EEB064EF7 -:10E1B0004CEB164C0BFB07F71EEB074E4CEB174BCB -:10E1C00018EB0B0840F1000018EB0E0B58EB0008A1 -:10E1D00040F100008F1A4FF000014FF000063CBFE5 -:10E1E000C943661B14BFB5EB040C00213CBFC943F7 -:10E1F000F61B4FEA174427EA04454FEA1C472CEA6E -:10E20000074C04FB076205FB07F70CFB05F616EB52 -:10E21000074642EB174204FB0CFC16EB0C4642EBA4 -:10E220001C421BEB060658EB020241414EEA8E0EE1 -:10E2300046EA9E0601D5BDE80189B619524141EB77 -:10E240000101A3F10103BDE801894FEA144524EA65 -:10E2500005464FEA114721EA074C05FB07F406FB88 -:10E2600007F70CFB06F111EB074144EB174405FBE4 -:10E270000CFC11EB0C4144EB1C444FEA124722EA20 -:10E28000074C05FB07F206FB07F70CFB06F616EB3F -:10E29000074642EB174205FB0CFC16EB0C4642EB23 -:10E2A0001C456A1854F1000148BF7047B619524125 -:10E2B00041EB0101A3F10103704795F0000F37D046 -:10E2C0004FEA114221EA02464FEA144724EA074C7A -:10E2D00002FB07F106FB07F70CFB06F414EB0744FF -:10E2E00041EB174102FB0CFC14EB0C4441EB1C41CD -:10E2F0004FEA154725EA074C02FB07F506FB07F72F -:10E300000CFB06F616EB074645EB174502FB0CFC2B -:10E3100016EB0C4645EB1C42121951F1000148BFA7 -:10E320007047B619524141EB0101A3F10103704757 -:10E330004FEA144524EA05464FEA114721EA074C03 -:10E3400005FB07F106FB07F70CFB06F212EB074291 -:10E3500041EB174105FB0CFC12EB0C4251EB1C414D -:10E360004FF0000648BF7047921841EB0101A3F13E -:10E370000103704703B401984100009850EAC1209E -:10E3800018BF04204A0D18BF40F0010040F2FF7290 -:10E39000B2EB515F08BF40F00200012808BF052022 -:10E3A00002B070474100080218BF04200A0E18BFCF -:10E3B00040F001004FF07F4232EA010108BF40F017 -:10E3C0000200012808BF05207047000010B54FF07B -:10E3D0000E402DED028BB0EE408A18EE104A00EB95 -:10E3E0004400B0F1506F4AD84FF0FC40B0EB440FFE -:10E3F00022D2B0EEC80AF7EE000A30EEC00AF6EEFE -:10E40000000A60EE208A18EE900A00F070FE01EE1D -:10E41000100A14F0004F1DBFDFED2D0A9FED2D0AED -:10E42000B1EE411ADFED2C0A08BF9FED2C0AF8EE81 -:10E43000001A21EE218A05E0DFED290A68EE088A3C -:10E44000B0EE600A9FED271ADFED271A30EE080ABA -:10E4500048EE811A9FED251A08EEA11ADFED241A65 -:10E4600048EE811A9FED231A08EEA11A68EE281AC9 -:10E47000BDEC028B01EE810A30EE200A10BD4FF098 -:10E48000E440B0EB440F0CD918EE100AFFF78AFFF6 -:10E49000042808BF00F05EFDB0EE480ABDEC028B18 -:10E4A00010BD4FF07F40B0EB440F07D2B0EE480AEA -:10E4B000BDEC028BBDE8104000F03EBD0120F2F73C -:10E4C0007BF9BDEC028BBDE8104000F03BBD0000C5 -:10E4D0000000C9BF22AAFDB90000C93F22AAFD3928 -:10E4E0000000000024FE1C3DC78AD83C1E67383D52 -:10E4F0001B93993DAFAA2A3E70B59B482DED020BA8 -:10E500002DED068B079D25F00044A04218DC9748AE -:10E51000844202DC0AD1069840B19DED060BBDECA9 -:10E52000068B02B0BDE8704000F0E2BC002DCCBF0D -:10E530009FED8F0B9FED900BBDEC068B02B070BD75 -:10E540008F48A04215DD8F48A042D8BF4FF0FF345E -:10E5500058DD9DED060B51EC100BFFF70BFF042867 -:10E5600008BF00F0D9FC9DED060BBDEC068B02B098 -:10E5700070BD9DED060B51EC100B00F0ACFDCDE92C -:10E58000060181489FED828BA0423CDD8248A0427B -:10E590001FDD00249FED82AB9DED060B53EC1A2B83 -:10E5A00051EC100B00F016FE9DED060B41EC190B23 -:10E5B00053EC1A2B51EC100B01F00EF953EC182B05 -:10E5C00001F014FA53EC192B00F0B8FECDE9060166 -:10E5D00049E09DED060B012453EC182B51EC100B78 -:10E5E00000F0F8FD9DED060B41EC190B53EC182BD8 -:10E5F00051EC100B01F0FAF953EC192B00F09EFED0 -:10E60000CDE906012FE06848A0421FDD02249FEDFE -:10E61000689B9DED060B53EC192B51EC100B01F090 -:10E62000DBF853EC182B00F0D5FD9DED060B41EC0B -:10E63000180B53EC192B51EC100B01F0D7F953ECDC -:10E64000182B00F07BFECDE906010CE09DED060BDA -:10E65000032453EC102B9FED580B51EC100B00F0E2 -:10E660006DFECDE906019DED060B53EC102B51EC30 -:10E67000100B01F0B1F841EC180B53EC182B01F022 -:10E68000ABF841EC190B4E480621B0EE490AF0EE0A -:10E69000690A784400F0B0FB53EC182B51EC100BD6 -:10E6A00001F09AF841EC180B4648B0EE490AF0EE3A -:10E6B000690A0521784400F09FFB53EC192B51ECBB -:10E6C000100B01F089F841EC100B51EC180B53ECD6 -:10E6D000102B002C0EDA00F07DFD9DED061B53EC97 -:10E6E000112B01F079F89DED061B53EC112B01F075 -:10E6F00071F935E000F06EFD9DED061B53EC112B1A -:10E7000001F06AF841EC100B2F48784400EBC4008C -:10E7100090ED001B51EC100B53EC112B01F066F93E -:10E720009DED061B53EC112B01F060F941EC100B31 -:10E730002648784400EBC40090ED001B51EC100B10 -:10E7400053EC112B01F046F941EC100B002DA2BF48 -:10E75000BDEC068B02B070BD51EC100B00F0FCFC60 -:10E7600041EC100B01E70000000010440000F07FB6 -:10E77000182D4454FB21F93F182D4454FB21F9BFB7 -:10E780000000DC3F0000203E0000F33F00000000DE -:10E79000000000000000F03F0000E63F0000000025 -:10E7A0000000000000000040008003400000000066 -:10E7B000000000000000F83F000000000000F0BF73 -:10E7C0005A170000101700009A1600005216000099 -:10E7D00070B56F4E2DED040B2DED048B82B0DDF87E -:10E7E00024C0DDE907235C422CF000411C4341EAD0 -:10E7F000D474069D22F00040B44205D86C422C43EC -:10E8000040EAD474B4420BD99DED081B9DED060B74 -:10E8100002B0BDEC048B04B0BDE8704000F072BBE8 -:10E82000ACF14054A4F17F641C430BD0022404EAF1 -:10E83000AC7444EAD27405439FED578B9FED582B7F -:10E8400007D015E09DED060B51EC100B00F03BFCE2 -:10E8500042E0002C11BF012C9DED060B02B0BDEC77 -:10E86000048B04BF04B070BD022C38D0032C3BD005 -:10E870000B439FED4D1B9FED4E0B0AD0B14218D1BB -:10E88000B04209D121F0804120F0804009910790E9 -:10E890000FE0002A15DA10E0474B7B44002C08BF3C -:10E8A00093ED000B0DD0012C10D0022C17D0032CAF -:10E8B0001AD0B0421DD1002A03DAB0EE410AF0EEC0 -:10E8C000610A02B0BDEC048B04B070BD93ED000B87 -:10E8D00051EC100B00F040FC41EC100BF1E7B0EEF6 -:10E8E000480AF0EE680AECE7B0EE420AF0EE620A7F -:10E8F000E7E7401A00159FED329B3C28C8BF8DED1D -:10E90000000B17DCBCF1000FBCBF10F13C0F8DED0C -:10E91000009B0FDB9DED080B53EC102B9DED060BC0 -:10E9200051EC100B00F00AFD00F0D5FB00F0CBFB22 -:10E93000CDE90001B4B1012C10D0022C9FED220BC7 -:10E9400053EC102B9DED000B51EC100B19D001F086 -:10E950004DF853EC182B01F049F8BDE7019880F011 -:10E96000004001909DED000B53EC192B51EC100B66 -:10E9700000F03EFE04BF0220F1F71EFF9DED000BEC -:10E980009FE701F033F853EC182B01F023F8A3E7CD -:10E990000000F07F00000000182D4454FB210940C6 -:10E9A000182D4454FB2109C0182D4454FB21F9BFF4 -:10E9B000182D4454FB21F93F82150000000000008F -:10E9C0000000000000000000075C143326A6A13CF4 -:10E9D00070B54FF068422DED048BF0EE408A18EED2 -:10E9E000900AB0EE608A18EE101A02EB4003B3F101 -:10E9F000654F3CBF02EB4102B2F1654F7DD200BFD3 -:10EA0000C0F3C753C1F3C7529A1A1B2A09DD10F08D -:10EA1000004F14BF9FED830A9FED830ABDEC048B6A -:10EA200070BD12F11A0F36DA11F0004F09D010F054 -:10EA3000004F0CBF9FED7D0A9FED7D0ABDEC048B5E -:10EA400070BD88EE889A19EE100AFFF7ABFC042817 -:10EA500008BF00F07FFA18EE900AFFF7A3FC054606 -:10EA600018EE100AFFF79EFC044619EE100AFFF795 -:10EA700099FC042D18BF052D08D1042C18BF052CB6 -:10EA800004D1002804BF0220F1F796FEB0EE490A37 -:10EA9000BDEC048B70BD4200B2EB410F3AD910F0CF -:10EAA000004F19BFDFED630A9FED630ADFED630AD4 -:10EAB0009FED630AB0EE481A0A46B1EE688A80F00C -:10EAC0000041F0EE418A10460A1A5200B2F1807FEE -:10EAD00034D2484010F0004FDFED5A1A9FED5A2A09 -:10EAE0001DBFBEEE001A70EEE10A30EE420AB6EE2D -:10EAF000001A08BF70EEA10A00E040E008BF30EE47 -:10EB0000020AB0EE682A01EE482A08EE818AC2EEB7 -:10EB1000081A15E011F0004F04BF9FED4C0AF0EE0B -:10EB2000400AD1D010F0004F19BFDFED490A9FED28 -:10EB3000490ADFED490A9FED490AC5E7C8EE881A80 -:10EB400021EEA11A9FED462ADFED462A41EE022A68 -:10EB50009FED452A01EE222ADFED442A41EE022AEA -:10EB60009FED432ABDEC048B01EE222A21EE811A8F -:10EB700001EE020A30EE210A30EE200A70BD4FF09D -:10EB80007F42B2EB400F28BFB2EB410F09D2F0EE4B -:10EB9000480AB0EE680ABDEC048BBDE8704000F096 -:10EBA000CEB940EA01035B0008BF41F0FF410BD042 -:10EBB000B2EB400F08BFB2EB410F08D120F080400C -:10EBC00008EE900A21F0804108EE101A18E7B2EB27 -:10EBD000400F12BF5FEA410340F0FF4001F00041E7 -:10EBE0003FF40EAFB2EB410F12BF5FEA400200F0FC -:10EBF000004041F0FF413FF403AF4A0092EA400376 -:10EC00003FF5FEAE002AACBF9FED1A0A9FED1A0A2F -:10EC100068EE808A28EE008A18EE900A18EE101A24 -:10EC2000EEE60000DB0FC9BFDB0FC93FDB0F494039 -:10EC3000DB0F49C00000C9BF22AAFDB90000C93FCF -:10EC400022AAFD390060ED3EC30ACE370000000065 -:10EC5000000049C022AA7DBA0000494022AA7D3A9C -:10EC60002DAD65BD8FB8D53D0FB511BE61C84C3E09 -:10EC7000A8AAAABE0000804F0000802F00B510EEA9 -:10EC8000101A2DED028B81B04D4A6846B2EB410F50 -:10EC90003CD94FF0E640B0EB410F94BF00204FF05D -:10ECA000FF3000900098B0EE408A00285FDB28EE2D -:10ECB000080ADFED440A9FED441A00EE201ADFED4A -:10ECC000430A40EE010A9FED421A00EE201ADFEDE2 -:10ECD000410A10F0010F40EE010A9FED3F1A00EECD -:10ECE000201A61EE000AB0EE480A08EE200A02BFC0 -:10ECF00001B0BDEC028B00BDBFEE001A01B0C1EE49 -:10ED0000000ABDEC028BB0EE600A00BD334B21F06F -:10ED10000042934228D911F0004FDFED310A20EE76 -:10ED2000201ADFED300A19BF31EE601A71EE200AA9 -:10ED300031EE201A71EE600ABDEEE01A11EE100AF3 -:10ED40009FED291A00F0030000EEC10A9FED271A7B -:10ED5000009000EEC10A9FED261A00EEC10A9FED59 -:10ED6000251A00EEC10A9DE700F0FCF89AE718EEBC -:10ED7000100A4000B0F17F4F0DD218EE100AFFF7D5 -:10ED800011FB042808BF00F0E5F8B0EE480A01B016 -:10ED9000BDEC028B00BD09D10120F1F70DFD01B0E2 -:10EDA000BDEC028B5DF804EB00F0CCB801B0B0EE26 -:10EDB000480ABDEC028B5DF804EB00F0BDB8000022 -:10EDC000B61F927EBCE9223C0B6D063B8A76CE3C98 -:10EDD000ACB5593D35A1083E29AAAA3E490E49467F -:10EDE00083F9223F0000004B0000C93F00A0FD391D -:10EDF0000020A2331A61342C70B504462DED028B2D -:10EE00004D1E00EBC500B0EE408AF0EE608A90ED3A -:10EE1000000B35F0060017D053EC182B51EC100BFB -:10EE200000F0DAFC41EC100B6D1E04EBC50090ED18 -:10EE3000001B51EC100B53EC112B00F0CBF941EC03 -:10EE4000100B35F00600E7D1022D36D0042D1CD072 -:10EE5000062D1CBFBDEC028B70BD53EC182B51EC82 -:10EE6000100B00F0B9FC94ED0A1B53EC112B00F0D1 -:10EE7000B1F953EC182B00F0AFFC94ED081B53ECE8 -:10EE8000112B00F0A7F941EC100B53EC182B51ECAF -:10EE9000100B00F0A1FC94ED061B53EC112B00F0BD -:10EEA00099F953EC182B00F097FC94ED040B53ECFC -:10EEB000102B00F08FF941EC100B53EC182B51EC98 -:10EEC000100B00F089FC94ED021B53EC112B00F0A9 -:10EED00081F953EC182B00F07FFC94ED001B53ECF0 -:10EEE000112B00F077F9BDEC028B41EC100B70BDDB -:10EEF00010B553EC102B51EC100B00F06BF941ECFA -:10EF0000100B10BD10B553EC112B51EC100B00F091 -:10EF100061F941EC100B10BD9FED050B10B553ECE2 -:10EF2000102B51EC100B00F057FC41EC100B10BDF6 -:10EF3000000000000000001030EE000A704730EEC4 -:10EF4000200A7047DFED020A80EEA00A7047000039 -:10EF5000000000009FED020A20EE000A704700004A -:10EF6000000000102DE9F0014FF07F42B2EB410F9D -:10EF70009FBF4FF0FF310160BDE8F00170474FF0D7 -:10EF8000004242EA0123C1F3C752783A551112F008 -:10EF90001F0C434CCCF120067C44C1F3C752A2F1B4 -:10EFA00078024FEA621204EB820254F8254008BF4F -:10EFB000D2E9015612D0556804FA0CF425FA06F786 -:10EFC0003C43976805FA0CF527FA06F8D26807FA69 -:10EFD0000CFCF24045EA08054CEA0206A4FB034C8F -:10EFE000A5FB0352A6FB03631D449D4234BF0126CB -:10EFF00000261319334416B1934202D903E0934219 -:10F0000001D2012200E00022624402F1200C9206AB -:10F01000DC0C42EA443200EE102A5B03DFED210AE9 -:10F02000F8EEC01A00EE103A4FEA9C1C11F0004FA7 -:10F03000B8EE400AC0F800C020EE201A00EE105AC8 -:10F04000DFED190AB8EE400A20EE200A71EE810ABF -:10F0500070EE800A10EE902A02F500626FF30B0248 -:10F0600000EE902A70EEE11A31EEC11ADFED101AAF -:10F0700030EE411A9FED0D0A20EE800A01EE210AC2 -:10F080009FED0C1A00EE810A04BFBDE8F001704745 -:10F09000CCF180510160BDE8F001B1EE400A70474B -:10F0A0008C0E0000000000360000802C22AAFD29F2 -:10F0B000DB0FC92F0000C92F30380A2801D20120E8 -:10F0C00070470020704710B541EC100BFFF714FAA1 -:10F0D00051EC100B10BD82B0CDE9000121F00040D1 -:10F0E00001909DED000B02B051EC100B704710B574 -:10F0F00000EE100A2DED028BB1EEC08A18EE100A58 -:10F1000020F00040C0F1FF40C00F0AD010EE100AFE -:10F1100020F00040C0F1FF40C00F04BF0120F1F714 -:10F120004BFB18EE100ABDEC028B10BD10B5002988 -:10F130000AD00878002807D005487844F1F718FF6E -:10F14000002801D0002010BD0248784410BD000006 -:10F150006A1100006211000081F00041704780F0E8 -:10F160000040704721F00041704720F00040704798 -:10F1700021F0004201F00043A2F16052B2F5801F7D -:10F1800028BFD2F17F6C0BD95FEA001C43EAC202B0 -:10F1900042EB507018BF704728BF20F00100704745 -:10F1A000B2F5801FBCBF184670474FEA410C1CF5F2 -:10F1B000001F02D2084600F0DFBD70B500F0B6FBBC -:10F1C00000000089FFF7F6BF4FF00040A0F5800077 -:10F1D0007047000010B591EA030F48BF83F0004369 -:10F1E00000F10C84841A71EB030C05D2121943EB65 -:10F1F0000C03001B61EB0C014FEA1154A4EB135CF0 -:10F20000DFF81CE11EEA430F18BF9EEA445F00F0DE -:10F21000748021EA045123EA0E0343F48013DCF1E5 -:10F22000200E32D322FA0CFE10EB0E0023FA0CFE55 -:10F2300041EB0E01CCF1200E03FA0EFE10EB0E0096 -:10F24000CCF1200E51F10001B1F5801F32D201EB5B -:10F25000045112FA0EF2BDE8104058BF7047401C2E -:10F2600038BF5FEA420218BF7047002814BF20F081 -:10F27000010041F100014FEA410313F5001F38BFBF -:10F280007047A1F1C04100F09FBB012A43EB03028C -:10F29000ACF1200CDCF11F0E32BF4FF0000E23FA50 -:10F2A0000CF310EB030041EB0451B4EB115FD0D031 -:10F2B000A1EB045101F58011490801EB04515FEA0B -:10F2C00030000ED350F1000038BF12FA0EFE08D104 -:10F2D000BDE81040C9E7401C38BF5FEA4202CAD10E -:10F2E000C3E7BDE810404FEA410313F5001F38BFE4 -:10F2F0007047A1F1C04100F067BB9EEA445F08D0AF -:10F3000011EA5E0FBDE8104004BF01F0004100208B -:10F310007047BDE8104070B500F008FB64FBBE3ECE -:10F320000000E0FF491058BFC1F140415B1058BFD9 -:10F33000C3F140438B42EFF3008070472DE9C04199 -:10F3400030B4DFF8A4C23CEA111418BF3CEA13142D -:10F3500000F0ED801CEA111481EA030544EAD5743B -:10F3600018BF1CEA131500F0C880A4EB050404F1D3 -:10F370007F7404F500344FF0004545EAC12145EAA9 -:10F38000C32341EA505143EA52534FEAC0204FEAA7 -:10F39000C222994208BF904200F09D804FEA136557 -:10F3A0000FF24416765D4FEA134506FB05F7C7F1E9 -:10F3B000807706FB07F74FEAD737A7FB036876424B -:10F3C000A7FB06CEC8F5803838BFA8F1010807FBB7 -:10F3D00008E6A6FB028C4FF0000EE6FB03CEDCF144 -:10F3E000000CCEF1004E38BFAEF1010EA6FB0C585A -:10F3F0004FF00007E6FB0E87A1FB08C6A0FB07CE77 -:10F4000016EB0E064FF0000545F10005E1FB076520 -:10F4100015F1E04E7EBFA4F580345FEA46066D41EB -:10F4200016F1800745F100054FEA172747EA0567FF -:10F430004FEA15254FEA0666A6F1DE46B6F1805F73 -:10F4400020D9384605EBC47124F0010C01EB0C11F6 -:10F45000BCF1FE6F02D8F0BCBDE8008124425CBF65 -:10F4600001F5801E9EEAC47F02D4F0BCBDE8008195 -:10F47000244200F13980A1F1C041F0BCBDE8004157 -:10F4800000F0A2BA4FEAD02040EA41504FEAD12121 -:10F490004FEAD22242EA43524FEAD323A7FB028625 -:10F4A00007FB036605FB02661EEA0E0F58BFA6EBBC -:10F4B0000056B6EB00564FEA520E4EEAC37E18EBEA -:10F4C0000E0E56EB530EBCD518EB02085E417F1CA6 -:10F4D00055F10005B5E74FF480154FF000074FF0E8 -:10F4E00000064FF00008ACE701F1C04101F0004117 -:10F4F0004FF00000F0BCBDE800810CEA131511EAE2 -:10F500000C1F00D00CE013EA0C1F00F026804FF017 -:10F51000000081EA030101F00041F0BCBDE8008178 -:10F52000F0BCBDE8004181EA030100F04DBAF0BC37 -:10F53000BDE8004170B500F0F9F900BF097EFC3E5E -:10F5400000F007B84FF0000081EA030101F000412C -:10F55000704781EA030100F037BAF0BCBDE8004112 -:10F5600022494FF000007047FFFDFBF9F7F5F4F278 -:10F57000F0EEEDEBE9E8E6E4E3E1E0DEDDDBDAD84E -:10F58000D7D5D4D3D1D0CFCDCCCBCAC8C7C6C5C4AC -:10F59000C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3C3 -:10F5A000B2B1B0AFAEADACABAAA9A8A8A7A6A5A4AE -:10F5B000A3A3A2A1A09F9F9E9D9C9C9B9A99999872 -:10F5C0009797969595949393929191908F8F8E8E15 -:10F5D0008D8C8C8B8B8A89898888878786858584A2 -:10F5E00084838382828181800000FF070000F87F8E -:10F5F00051EA030C17D41CF5801F58BFBCF5801FBF -:10F6000000F10680994218BF704708BF90427047CA -:10F6100007D711F5801F58BF13F5801F19D49942E1 -:10F620007047894270471CF5801F08D5BCF5801FC4 -:10F63000F7D58B4218BF704708BF824270474FF41E -:10F64000001C1CEB410F38BF1CEB430F01D28B4257 -:10F65000704770B500F06AF9922449004FF00051EC -:10F660004FF08053FFF75EBE4FEA1153A3F580635E -:10F67000D3F11E03A8BFD3F1200C08DB4FF00042EA -:10F6800042EAC12252EA505232FA03F0704709426C -:10F690000BD4102BC4BF0020704703F5787CBCF15D -:10F6A000FF3F05D04FF0FF3070474FF0000070472C -:10F6B00070B500F03BF900BF4992248000207047EC -:10F6C000F0E7B0FA80F310FA03F10AD0C3F11D039A -:10F6D00003F580634FEA03524FEA415002EBD12118 -:10F6E00070474FF00000704751EA030C17D41CF527 -:10F6F000801F58BFBCF5801F00F10680994218BFDB -:10F70000704708BF9042704707D711F5801F58BF58 -:10F7100013F5801F19D499427047894270471CF530 -:10F72000801F08D5BCF5801FF7D58B4218BF7047E6 -:10F7300008BF824270474FF4001C1CEB410F38BFDA -:10F740001CEB430F01D28B42704770B500F0EEF80E -:10F75000922449004FF080514FF00053FFF7E2BD73 -:10F7600051EA030C17D41CF5801F58BFBCF5801F4D -:10F7700000F10680994218BF704708BF9042704759 -:10F7800007D711F5801F58BF13F5801F19D4994270 -:10F790007047894270471CF5801F08D5BCF5801F53 -:10F7A000F7D58B4218BF704708BF824270474FF4AD -:10F7B000001C1CEB410F38BF1CEB430F01D28B42E6 -:10F7C000704770B500F0B2F8922449004FF0005134 -:10F7D0004FF08053FFF7A6BD70B5DFF848C11CEAB3 -:10F7E000111E1EBF1CEA13159EEA0C0F95EA0C0FA2 -:10F7F00000F06F8081EA03044EEAD47EAE4421EA31 -:10F800004C1123EA4C1341F4801143F48013AEF100 -:10F810007F7EA1FB024CA0FB0365361955EB0C055E -:10F82000A1FB034C4CF10003A0FB021C16EB0C06E1 -:10F83000654153F10003094218BF46F0010613F475 -:10F84000007F0BD14FEA03314FEA053041EA1551F1 -:10F8500040EA165034036FF003020AE04FEAC32176 -:10F860004FEAC52041EA555140EA5650F4026FF084 -:10F87000020202EB2E4201EB025585EACE710AD05C -:10F880005FEA440C18BF24F0004450F1000041F13D -:10F89000000120EAD47040F2FE7C624500D270BDC7 -:10F8A000A84214BF4FF080444FF04044002E08BFE0 -:10F8B0000024BEF1806FA8BFA1F1C041BDE8704037 -:10F8C00080F2828001F1C04101F000414FF0000060 -:10F8D00070470CEA13159EEA0C0F18BF95EA0C0F3F -:10F8E00006D081EA030E4FF000000EF0004170BD1B -:10F8F00000F01CF88900013E00F007B800F009B8DC -:10F900004FEA430C5FEA5C5C08D081EA030100F037 -:10F910005BB84FEA410C5FEA5C5CF6D102494FF0FC -:10F92000000070470000FF070000F87F0EF1020E94 -:10F930002EF0030E5EF8046B364205D4012A43EB29 -:10F94000030515F5001F12D8012841EB010C1CF529 -:10F95000001F0CD80ED14FEAD17C0CEB4C0C0CF1F3 -:10F96000020C15F5001F08BF4CEBD37C04E04FF0F0 -:10F97000080C01E04FEAD37C0CEB4C0526FA05F6A7 -:10F9800006F00706B6F1040C06D20EEB860CBDE8B5 -:10F9900070404CF0010C6047DFE80CF0090B0202EC -:10F9A0004FF00041A1F500214FF0000070BD194655 -:10F9B0001046012851EB010418BFD4F5001484BF90 -:10F9C000002001F0004170BD0808A0F500114FEAC9 -:10F9D0003101704710B591EA030F81F000413FF506 -:10F9E00001AC83F0004300F009B8000010B591EAC3 -:10F9F000030F48BF83F000433FF5F4AB841A71EB6B -:10FA0000030C07D28CF0004C121943EB0C03001BC3 -:10FA100061EB0C014FEA1154A4EB135CDFF8A4E195 -:10FA20001EEA430F18BF9EEA445F00F0B48021EA4B -:10FA3000045123EA6E035242C3EB6E0338BF5B1ED0 -:10FA4000DCF1200E25D322FA0CFE10EB0E0043FA57 -:10FA50000CFE41EB0E01CCF1200E03FA0EFE10EB72 -:10FA60000E00CCF1200E51F1000129D401EB04511C -:10FA700012FA0EF2BDE8104058BF7047401C1CBF80 -:10FA8000B2F1004F704700280CBF491C20F0010064 -:10FA9000704712EB020E43EB030218BF4FF0010E4A -:10FAA0004EEA4202ACF1200CDCF11E0E56D943FAAC -:10FAB0000CFE10EB0E00CCF11E0E51F1FF31D5D52E -:10FAC0000EF1010E12FA0EFE404141EB010101EB75 -:10FAD000445C5FEA5C5C10D901EB045110EBDE7012 -:10FAE00038BFBEF1004FBDE8104018BF7047002876 -:10FAF0000CBF491C20F00100704734D24FEAD42CCF -:10FB000024F4006411F500111BD0B1FA81F20B3A14 -:10FB1000A41AA41ED2F12003914030FA03F3194332 -:10FB2000904001EBCC7101EB0451002CBDE810407A -:10FB3000A8BF704701F1C04101F000414FF0000043 -:10FB40007047B0FA80F310FA03F102D1BDE810401B -:10FB50007047E41A173C4805C90AE2E701EB045173 -:10FB6000BDE81040704749104FEA300001EB0451E6 -:10FB7000BDE8104002E04FF0000170474A0008BFA6 -:10FB80000042F8D0B2F5001F28BF704701F00041D5 -:10FB90004FF0000070479EEA445F07D011EA5E0F05 -:10FBA000BDE8104004BF002100207047BDE81040B0 -:10FBB00070B5FFF7BBFE00BF40DFF63E104683F096 -:10FBC000004170470000E0FF43004FEAD30C4FEACA -:10FBD0003C0C43401FBF40070CF1605113F0FE4F37 -:10FBE00070471CF0006F03D10CF0004100207047FB -:10FBF0000CF0004343EA507040EACC0010B500F02E -:10FC000068F800BF000000924FEA0001FFF7DCBE79 -:10FC10004FF00041A1F500214FF00000704710B5F2 -:10FC2000FFF7E6FC0CBF0120002010BD10B5FFF768 -:10FC3000DFFC14BF0120002010BD10B5FFF754FDFC -:10FC40008CBF0120002010BD10B5FFF74DFD2CBF6B -:10FC50000120002010BD10B5FFF782FD94BF0120E8 -:10FC6000002010BD10B5FFF77BFD34BF0120002040 -:10FC700010BD4FF07E5209E011F0004204D5404221 -:10FC8000C1F1000138BF491E42F07E5202F170629C -:10FC90000B0012BF20235FEA00017047B1FA81FC1C -:10FCA00001FA0CF1A3EB0C0320FA03FC41EA0C016E -:10FCB00002EBC352C3F1200310FA03FC5CEA416C6F -:10FCC00042EB112018BF5FF0806C28BF20F00100CC -:10FCD00070470EF1020E2EF0030E5EF8044B244224 -:10FCE00004D44FEA4102B2F17F4F11D84FEA4003EA -:10FCF000B3F17F4F0CD80ED14FEAD07C0CEB4C0CFB -:10FD00000CF1020CB2F17F4F08BF4CEBD17C04E048 -:10FD10004FF0080C01E04FEAD17C0CEB4C0324FAC5 -:10FD200003F404F00704B4F1040C06D20EEB840CC7 -:10FD3000BDE810404CF0010C6047DFE80CF007080C -:10FD400002024FF00040A0F5800010BD08464200BE -:10FD500018BFD2F1807288BF00F0004010BDF1EEF4 -:10FD6000100A4FF6FF71C0F2C03120EA010040F0E6 -:10FD70004070E1EE100A7047FF2141EAD050C00503 -:10FD80007047F0F750BE00004FBB610567ACDD3F28 -:10FD9000182D4454FB21E93F9BF681D20B73EF3FB2 -:10FDA000182D4454FB21F93FE2652F227F2B7A3C2A -:10FDB000075C143326A6813CBDCBF07A8807703CE3 -:10FDC000075C143326A6913CC4EB98999999C9BF56 -:10FDD000711623FEC671BCBF6D9A74AFF2B0B3BF8B -:10FDE0009AFDDE522DDEADBF2F6C6A2C44B4A2BF4B -:10FDF0000D5555555555D53FFF8300922449C23FB7 -:10FE00006E204CC5CD45B73F513DD0A0660DB13FEA -:10FE1000EB0D76244B7BA93F11DA22E33AAD903FFC -:10FE20000000000000000000000000006E83F9A246 -:10FE30002915444ED15727FCC0DD34F5999562DB76 -:10FE40004190433CAB6351FE02400000000000A023 -:10FE50000000000005400000000000C80000000095 -:10FE60000C4000000000409C000000001940000011 -:10FE70000020BCBE0000000034400000BFC91B8E43 -:10FE800000000004B5400000504BCFD06607E2CF21 -:10FE9000010000006C4100003E8251AADFEEA73451 -:10FEA00001000000D9420000DCB5A0E23A301F9703 -:10FEB000FFFFFFFFB4450000FD25A0C8E9A3C14F27 -:10FEC000FFFFFFFFFF3F0000000000800000000078 -:10FED000FF3F000000000080000000000000000064 -:10FEE00000000000010203040607080900000000EA -:10FEF00001020304010000000000024010000000A5 -:10FF00000000024001000000000402400200000066 -:10FF1000000402400400000000040240040000004D -:10FF2000000802401000000000080240200000000D -:10FF300000080240080000000018024040000000D5 -:10FF40000018024000040000001C024000080000ED -:10FF5000001C024000100000001C0240D0D4012010 -:10FF600004000000C8030020000000005402010843 -:10FF70000000000000000000000000000000000081 -:10FF80000004000018000000000000000000000055 -:10FF9000180201080000000000000000000000003E -:10FFA0000000000000040000180000000000000035 -:10FFB000000000001B02010800000000000000001B -:10FFC0000000000000000000000400001800000015 -:10FFD00000000000000000003102010800000000E5 -:10FFE000000000000000000000000000000400000D -:10FFF00018000000000000000000000014020108CA +:1002500030C148BF0B607047662910F06E82752967 +:1002600000F01C81632900F06485732900F0698522 +:10027000002070471FB510F04EFA00F0E8F900F0CA +:1002800065FD0400002000210FF0B8FAE0601FBDFA +:1002900010B510BD00F05EFE1146FFF7EBFF0AF04F +:1002A000C9FE00F07CFE03B4FFF7F2FF03BC00F0D0 +:1002B000BDFE00000948804709480047FEE7FEE709 +:1002C000FEE7FEE7FEE7FEE7FEE7FEE7FEE7FEE706 +:1002D00004480549054A064B70470000FD9A00088E +:1002E0008901000810AA012000EF012010AF0120B1 +:1002F00000E7012053EA020C00F069802DE9F04B81 +:100300004FF00006002B1FBFB3FA83F503FA05F484 +:1003100024FA05F65E4012BF1643B2FA82F502FADD +:1003200005F4C5F120051EBF22FA05FC44EA0C04C1 +:10033000203556EA044C4FEA144418BF641C4FF0B1 +:1003400000084FF00009904271EB030C39D30029EB +:1003500019BFB1FA81F701FA07F6B0FA80F700FA8F +:1003600007F6C7F120071EBF20FA07FC46EA0C0675 +:100370002037B6FBF4FCA7EB0507103F07F01F0B77 +:10038000CBF120062CFA06F60CFA0BFB44BFB34661 +:100390000026202FA4BF5E464FF0000B5BEA060C40 +:1003A00008BF4FF0010B19EB0B0948EB0608ABFB3C +:1003B000027C06FB02CC0BFB03CCC01B71EB0C01D7 +:1003C000C1E70B46024641464846BDE8F08B13B5EF +:1003D000084318BF4FF0FF300146AFF30080BDE87F +:1003E0001C4070470FB41CB5084B06AA7B446946F5 +:1003F0000090059800F073FC04460020694600F068 +:1004000081FC20461CBC5DF814FB000015090000AF +:100410000FB47CB50C0009AA009001D02044401E06 +:10042000084B7B4469460190089800F058FC05464B +:100430001CB10020694600F065FC28467CBC5DF8D4 +:1004400014FB0000E908000070B50C460546012ABF +:1004500005D02878800600D5EA69002302E0012350 +:1004600005E05B1C934202D2E05C0028F9D1A86948 +:10047000E618C01AA861286A184428622846AFF313 +:10048000008004E0D5E9012114F8010B9047B44243 +:10049000F8D32846AFF3008070BD00002DE9F0418D +:1004A0000646002410687529314616A510D0AFF312 +:1004B0000080002802DA404213A507E031688A076D +:1004C00001D512A502E0490704D511A5012401E0D8 +:1004D000AFF3008000210A2206F1240709E0B0FBF7 +:1004E000F2FCB0FBF2F302FB1C00303078541846EB +:1004F000491C0028F3D123462A463046BDE8F04186 +:1005000000F081B9000000002D0000002B00000069 +:10051000200000002DE9F0474FF0000A894604460C +:10052000C0F820A02046E1688847002876D025281A +:1005300006D0D4E901219047206A401C2062F1E7EF +:10054000E168204600258847C4F81CA0064600271D +:10055000C4F818A02A2E09D030460FF015F938B388 +:1005600004EB8708303EC8F8186019E059F8041BFE +:10057000204604EB87029161E1688847012F064617 +:1005800018D1E069002820DA25F020051DE0D8F810 +:10059000180000EB800006EB40003038C8F8180067 +:1005A0002046E168884706460FF0EEF80028EED1B5 +:1005B000012F0AD02E2E08D12046E16888477F1CE3 +:1005C0000646022F45F02005C4DBA069002803DAA7 +:1005D000404245F00105A061E80701D025F0100573 +:1005E000B6B1A6F14100192802D8203645F40065BD +:1005F0004A463146204625604D46FFF72DFE58B14C +:10060000012806D0ED1D25F0070000F1080989E753 +:1006100004E005F1040985E730468AE7206ABDE871 +:10062000F08700000B4910B5A1F17C020A4CC2E929 +:100630003712372106E000EB104342F82130074B18 +:1006400000FB03400B1EA1F10101F4DC10BD0120F1 +:10065000E8E70000A4C40120E119D666CD0D010031 +:1006600010B5431C02E010F8011B71B18107FAD1EB +:100670004FF0013202C88C1A8C4314EAC211F9D02F +:10068000C01A0A0603D0C01E10BDC01A10BD0A044D +:1006900001D0801E10BD0902FCD0401E10BD032AEF +:1006A00040F2308010F0030C00F0158011F8013B8F +:1006B000BCF1020F624498BF11F801CB00F8013B76 +:1006C00038BF11F8013BA2F1040298BF00F801CB3A +:1006D00038BF00F8013B11F0030300F02580083A11 +:1006E000C0F0088051F8043B083A51F804CBA0E868 +:1006F0000810F5E7121D5CBF51F8043B40F8043BBD +:10070000AFF30080D20724BF11F8013B11F801CBF1 +:1007100048BF11F8012B24BF00F8013B00F801CBC2 +:1007200048BF00F8012B704710B5203AC0F00B808D +:10073000B1E81850A0E81850B1E81850A0E81850D7 +:10074000203ABFF4F5AF5FEA027C24BFB1E818504D +:10075000A0E8185044BF18C918C0BDE810405FEAAF +:10076000827C24BF51F8043B40F8043B08BF70472B +:10077000D20728BF31F8023B48BF11F8012B28BF30 +:1007800020F8023B48BF00F8012B704702F0FF033E +:1007900043EA032242EA024200F002B84FF00002AC +:1007A00000B5134694469646203922BFA0E80C5067 +:1007B000A0E80C50B1F12001BFF4F7AF090728BF42 +:1007C000A0E80C5048BF0CC05DF804EB890028BFBE +:1007D00040F8042B08BF704748BF20F8022B11F0E7 +:1007E000804F18BF00F8012B704770477047704763 +:1007F00010B500F0AFFA006810BD10B5044600F067 +:10080000A9FA046010BD2DE9F0470D4699469246BD +:10081000044600F124080168880604D5E06921F047 +:100820001001216000E00120A84201DD471B00E02B +:100830000027A1697A1902EB0900081AA061207843 +:10084000C00602D42046AFF30080002608E0D4E9B9 +:1008500001211AF806009047206A401C761C20628D +:100860004E45F4DB2078C0060AD52046AFF3008061 +:1008700006E0D4E9012130209047206A401C206224 +:10088000381EA7F10107F4DC07E0D4E9012118F8CC +:1008900005009047206A401C2062281EA5F1010532 +:1008A000F3DC2046AFF300802078000602D502205A +:1008B000BDE8F0870120FBE72DE9FF4F0C461E46FF +:1008C0004FF0FF378BB0D2E90001DDF860800A906D +:1008D0008A46C1F30A5505B93D46002108464FF046 +:1008E0000000BAF1000F00F4400005DA00EB8000D0 +:1008F0004FF4400101EA50004FEA9059B9F1010F5D +:1009000000DDB9460A9850EA4A000ED044F610506D +:10091000A5F2FF3545432F14B8F1000F1ED07542E4 +:10092000291E1EDDC9F100021CE0B8F1010F4FF0D5 +:10093000000001D0302103E0F24305E02154401CC7 +:10094000B042FBDB30460022002121540B99C1F854 +:100950000880C1E900200FB0BDE8F08FBD1B6D1C01 +:10096000DEE74A4600DA694206A800F07DFA06ABE7 +:1009700093E8070003AB83E8070050460A990DF09F +:1009800057FA8DE80700A0F500501F380090039833 +:10099000002D0ADD42F21F014A460844002303A944 +:1009A000039068460DF0C0FC09E0A0F500504A46EF +:1009B0001F38002303A9039068460DF0CAFC8DE898 +:1009C00007000004000C03D04FF0FF30410800E0A6 +:1009D0001046B8F1000F03D00022009215461EE029 +:1009E000751E05D400F0BAF9303262556D1EF9D586 +:1009F000B3460122084302D000227F1C04E0207885 +:100A0000302801D100227F1E002A099784D01DE0E2 +:100A1000112D07DA00F0A2F9303262556D1C50EA50 +:100A20000102F5D1084302D00098C8B10EE00021C0 +:100A3000681E05E0235C625C63542254401E491C1E +:100A40008142F7DBAB46A81B401E0990002004F84A +:100A50000B000B98099AC0F80880C0E9002B7AE7D0 +:100A600011264FF0000857E72DE9F04F884604465D +:100A7000D21D22F0070191B0D1E90001CDE90A01B0 +:100A80000DF09EFD02460B98C00F01D02D2007E00F +:100A90002068810701D52B2002E0202101EAC00057 +:100AA000032A099001D0072A05DB03464146204668 +:100AB00000F09AF90BE12078800601D5E06900E0AA +:100AC0000620B8F1650F814606D0B8F1660F18D040 +:100AD000B8F1670F70D131E00020B9F1110F00902B +:100AE00001DB112301E009F101030AAA01A90CA805 +:100AF000FFF7E2FEDDE90C70002609F101058346EF +:100B000047E001204B4600904FF000470AAA01A998 +:100B10000CA8FFF7D1FEDDE90DB00C995D4600266B +:100B200010B909F101000D18B9EB050003D4C0F1AB +:100B3000FF3609F10105A5EB09002BE0B9F1010F22 +:100B400001DA4FF001090020B9F1110F0090484679 +:100B500001DD112300E003460AAA01A90CA8FFF752 +:100B6000ABFEDDE90C704D46002683462078000779 +:100B70000AD4AB4500DA5D4601A8012D04DD411918 +:100B800011F8011C302907D04F4502DA17F1040F84 +:100B900004DA012082460FE06D1EEEE7002F02DC32 +:100BA000ED1B3E4403E0781CA84200DD7D1CB81B11 +:100BB00000F1010A4FF000472078000703D4AA454E +:100BC00001DB4FF0FF3A0021B7F1004F0DF1430870 +:100BD0008DF8431024D002202B23002F01DA7F420E +:100BE0002D230A21021EA0F1010000DC5FB197FB5A +:100BF000F1FC97FBF1F201FB1C7C17460CF1300C69 +:100C000008F801CDEEE7A8F101000370218809057D +:100C100001D5452100E06521A0F1010800F8011C83 +:100C200009980FA9A1EB0807FF1D00B10120411988 +:100C300001EBEA70A1693844081A401EA0612078CF +:100C4000C00602D42046AFF30080099828B1D4E949 +:100C500001219047206A401C20622078C00622D5DE +:100C60002046AFF300801EE0002E04DBB34502DD1A +:100C700001A8805D00E03020D4E901219047206A7E +:100C8000401C2062761CAAF101005FEA000A0AD12A +:100C900000F05CF8C0680168405CD4E9012190472D +:100CA000206A401C2062281EA5F10105DCDC07E05B +:100CB000D4E9012118F8010B9047206A401C2062FA +:100CC000381EA7F10107F3DC2046AFF300800320B4 +:100CD00011B041E601694A1C02610878704700B50D +:100CE0008FB0CDE901310021059105497944CDE965 +:100CF000031011466846FFF70DFC0FB000BD000061 +:100D0000E5FFFFFF0A6802F8010B0A607047D1E9AE +:100D100000239A4202D2531C0B601070704710B52A +:100D2000436913B1AFF3008001E0FFF78DFB0120B1 +:100D300010BD127800F124010A7000224A700122CD +:100D4000EDE711684FF0FF32E9E700000048704717 +:100D500080000020004870476000002030B5B0F1EE +:100D60000A0271F100034FEA900E4EEA817EB0EB69 +:100D70000E0061EB91014FEA101E4EEA017E10EB6E +:100D80000E0041EB11114FEA102E4EEA016E10EBEE +:100D90000E0041EB11214FEA104E4EEA014E10EBCE +:100DA0000E0041EB1141401841F100014FEAD00023 +:100DB00040EA41704FEAD1014FEA810444EA90745D +:100DC00010EB800544EB01046D1944EB0404521B45 +:100DD000A3414FF0000348BF0A3200D530BD401C8C +:100DE00041F1000130BD00002DE9F0411F460446ED +:100DF00003260168072A01F4006004DB08B116A588 +:100E000005E016A503E008B115A500E015A521F041 +:100E100010002060A069C01EA0610FB1401EA0613B +:100E20002046AFF300804FB1D4E901213846904706 +:100E3000206A401C2062C01C206206E0206AFAE79B +:100E4000D4E9012115F8010B9047761EF8D220460F +:100E5000AFF30080BDE8F0814E414E006E616E0040 +:100E6000494E4600696E66002DE9F04781461646F8 +:100E70008AB0354878440DC88DE80D003248784472 +:100E8000801C03AC0DC884E80D0041F69B3008447B +:100E9000372190FBF1F290FBF1F5A5F1800501FB04 +:100EA00012041B3C02D56442012000E00020DFF860 +:100EB00098A080460027FA44AAF1BE0A0EE0E00797 +:100EC0000AD03246684607EB470101230AEB81014D +:100ED0000DF03FFA8DE8070064107F1C002CEED166 +:100EE000194F7F44AE3F19E0E80715D007EB041017 +:100EF0000DF1180A90E80E008AE80E00C068F04272 +:100F000001D1981908903246012306A903A80DF0D3 +:100F100020FA03AB83E807006D10641C002DE3D1B9 +:100F20004FF0010332466946B8F1000F03A802D022 +:100F30000DF0FAF901E00DF00CFAC9E90001C9F869 +:100F400008200AB0BDE8F08704FA000000487047A6 +:100F5000600000207546FFF7F9FFAE4605006946C0 +:100F6000534620F00700854618B020B5FFF7B0F9CA +:100F7000BDE820404FF000064FF000074FF000089A +:100F80004FF0000BAC46ACE8C009ACE8C009ACE8D7 +:100F9000C009ACE8C00921F007018D46704710B5C3 +:100FA0000446AFF300802046BDE81040FFF77BB950 +:100FB00030B44FF0013C50F8042B51F8043BCCFA0C +:100FC00052F4D51A20D1FCB950F8042B51F8043B47 +:100FD000CCFA52F4D51A17D1B4B950F8042B51F801 +:100FE000043BCCFA52F4D51A0ED16CB950F8042B4C +:100FF00051F8043BCCFA52F4D51A05D1002CDAD0C2 +:1010000030BC4FF00000704729BAB1FA81F111F0FD +:101010001801D1F120008440F2D1CA40CB4012F037 +:10102000FF0213F0FF0330BCD01A704701491820AB +:10103000ABBEFEE72600020070470000B0B52DED04 +:10104000028B044600284FF0FF0061D00D460029B6 +:101050005ED095ED000A95ED011A95ED022A95ED09 +:10106000033A20EE010A22EE033A21EE011A22EEA3 +:10107000022A31EE021A30EE030A31EE011AB7EEFF +:10108000008A30EE000A78EE410A0DF0C9FDB0EE9C +:10109000401A95ED000A95ED012A95ED023A95ED7D +:1010A000034A20EE030A24EE022A30EE420A30EE12 +:1010B000000AB0EEC02AB4EE482AF1EE10FA84ED30 +:1010C000011A02DA0DF0A8FA01E009F041FF84EDFF +:1010D000020A95ED000A95ED011A95ED032A95EDAA +:1010E000023A20EE020A21EE031A30EE010A23EE44 +:1010F000031A22EE022A32EE011A31EE011A30EE04 +:10110000000A78EE410A0DF08BFD002084ED000A04 +:1011100040B2BDEC028BB0BD70B52DED028B002846 +:101120004FD0B7EE001A81EE000A0D4604464FF08C +:101130007E51002D80ED040A4FF00000C4E900103C +:10114000A060E06000F09F80D5E900600FF018FA21 +:1011500041EC180B30460FF013FA41EC110BB0EED6 +:10116000480AF0EE680A0DF05BFC51EC100B0EF033 +:1011700067FB95ED000AB5EE400AF1EE10FA22D1B8 +:1011800095ED010AB5EE400AF1EE10FA1BD195ED8E +:10119000020AB5EE400AF1EE10FA14D140F2C56031 +:1011A000C3F64D7044F62D214AF2564244F2AD7317 +:1011B000C3F60D41CBF63932C3F619730FC40020C4 +:1011C00061E0FF205FE09FED321A00EE100AB4EEFE +:1011D000410AF1EE10FA1EDCB5EE400AF1EE10FA0B +:1011E00019DB9FED2C2AB4EE420AF1EE10FA25DC51 +:1011F000B4EE410AF1EE10FA20DB9FED271AB4EEAF +:10120000410AF1EE10FA2CDCB4EE420AF1EE10FACB +:1012100027DB002037E045F66E10C3F67F7045F2FD +:101220000C3148F6AB0249F28553C3F6B011CBF648 +:10123000BB32C3F697530FC4002024E040F2C560D0 +:10124000C3F64D7044F62D214AF2564244F2AD7376 +:10125000C3F60D41CBF63932C3F619730FC4002023 +:1012600011E040F2C560C3F64D7044F62D214AF2FC +:10127000564244F2AD73C3F60D41CBF63932C3F694 +:1012800019730FC4002040B2BDEC028B70BD00BFCB +:10129000DB0FC9BFDB0F49C00000B4C20021C0E9A9 +:1012A0000011816070470000B0B52DED108B8EB03D +:1012B000044600284FF0FF0018BF002904D140B2B7 +:1012C0000EB0BDEC108BB0BD002AF8D04CF2080572 +:1012D0004EF69E70C2F20105C3F627502860C3B1D6 +:1012E00093ED00EA93ED01FAD3ED028AB5EE40EA00 +:1012F000F1EE10FA11D1B5EE40FAF1EE10FA0CD180 +:10130000F5EE408AF1EE10FA07D1204600F094FA8B +:10131000D5E7204600F090FAD1E792ED000A92ED71 +:10132000011A94ED014A94ED025A92ED022A94EDCD +:10133000036A94ED003A24EE407A61EE050A37EE36 +:10134000607A62EE060A37EE607A60EE030A62EEB9 +:10135000051A71EEA00A61EE061A70EEE10A61EE5E +:10136000031A62EE042A22EE032A21EE041A91EDFA +:1013700000DA71EEE21A20EE066A31EE021A20EE71 +:10138000050A36EE216AD1ED019AD1ED02AA31EEBD +:10139000400AB6EE001AB5EE40DA27EE015A60EECA +:1013A000810A26EE017AF1EE10FA20EE016A0AD1E6 +:1013B000F5EE409AF1EE10FA05D1F5EE40AAF1EE05 +:1013C00010FA00F0EC812DEE0D0A29EEA91A30EE8C +:1013D000010A2AEEAA1A30EE010A8DED0D6A8DED92 +:1013E0000C7ACDED0B0A8DED0A5A06F0ABFC2DEE12 +:1013F000001A8DED071A29EE801A2AEE800A8DED6B +:10140000081A8DED090A2EEE0E0A2FEE0F1A30EE95 +:10141000010A28EEA81A30EE010A06F093FC94EDBA +:10142000001A6EEE00DA6FEE00AA94ED034A31EE78 +:1014300001EA68EE808A94ED012A94ED023A2AEEE0 +:101440008E6A61EE01EA8DED026A28EE8E0A2DEEBB +:10145000AE5A26EE046A62EE02BA35EE465A20EE25 +:10146000036A36EE055A2DEEAB6A32EE02FA36EE1C +:10147000055A2AEE8F6A23EE066A36EE055A28EEE2 +:101480008F6A26EE046A63EE03FA36EE055A2DEEF5 +:10149000AF6A24EE048A35EE465A2DEE886A2DEEA8 +:1014A0008E9A35EE465A29EE046A2AEEAE7A37EE67 +:1014B000066A22EE000A2DEE8FAA36EE400A23EECF +:1014C0000A6A36EE000A2AEEAB6A30EE460A2AEEC7 +:1014D000AF6A73EE039A36EE000A28EEA96A24EE8C +:1014E000066A36EE000A2AEE886A30EE460A25EED3 +:1014F000055A20EE000A35EE000A21EE02BA21EE6E +:10150000035A21EE041A8DED051A22EE031A8DED11 +:10151000031A23EE041A8DED041A34EE041A8DED2D +:10152000015A22EE04CA6EEE03CA8DED061A29EEA8 +:1015300084DA06F007FC94ED013A94ED022A9DED61 +:10154000021A29EE024A21EE031A31EE444A94EDC2 +:10155000031A28EEAE5A35EE044A2AEE015A35EE49 +:10156000044A28EEAB5AF7EE001A34EE454A2AEE4A +:10157000A95A81EE800A25EE015A35EE044A28EE7A +:10158000AF5A34EE454A28EE885A75EE042A3CEEEE +:101590000C4A9DED075A34EE6C4A34EE454A3BEE58 +:1015A0000B5A9DED086A35EE0D5A35EE465A2FEE70 +:1015B000056A29EE847AF6EE007A76EE470A37EE6F +:1015C000EF6A36EE486A9DED018A20EE066A3CEE2F +:1015D000487A27EE227A36EE076A36EE6D7A22EEE8 +:1015E000226A66EE073A70EEE33ADDED050ADDEDBC +:1015F000034A60EE015A74EEE00ADDED044A60EE43 +:10160000200A7BEE244A64EEA24A70EEA40A63EE3E +:10161000224A70EEEA0A74EEE56A66EEA06A77EE98 +:10162000EB7A76EEA33A78EE0C6A77EEEF7A60EE1C +:10163000266A67EEA27A76EEA76A76EEE86A60EE30 +:10164000027ADDED068A27EEA68A38EE23CA68EE16 +:10165000843A2EEE058A78EE233A3BEEAB8A71EEA1 +:10166000C81A3FEEAF8A71EEC81A9DED098A21EEC5 +:1016700022AA71EEC81AB1EE008A23EE089A21EE72 +:10168000899A73EEC93A94ED009A2AEE07BA73EE7E +:101690008B3A29EE22BA77EE8B7A67EEA07A72EE59 +:1016A000A22A77EEA33A63EE227A75EEE75A65EE48 +:1016B000A65A35EEA3DA68EE853A6EEE045A73EE5A +:1016C000E53A62EE085A65EEA11A73EEE11AF8EEF9 +:1016D000003A60EE233A62EE235A75EECB5A65EE7D +:1016E000875A20EE033A71EEA51A73EE0A5A20EEDD +:1016F000090A22EE222A65EEA05A30EE422A75EE41 +:10170000A11A22EE262A23EE811A32EE218A2FEE2A +:10171000042A29EE854A31EE241A34EE022A21EEFB +:10172000071A36EE400A32EE011A20EE200A30EE99 +:10173000010A23EE261A31EE009A2CEE0C0A2DEE49 +:101740000D1A30EE010A28EE081A31EE000A29EED1 +:10175000091A31EE000A06F0F5FA95ED004A9DED02 +:101760000A5A20EE0C1ADDED0B0A20EE0D2A24EEAB +:10177000011A9DED0C7A9DED0D6A20EE083A20EEDF +:10178000090A35EE415A24EE021A70EEC10A24EE1F +:10179000031A24EE000A37EE417A36EE406A94EDE1 +:1017A000043A94ED000A94ED011A25EE035A94EDE3 +:1017B000022A30EE050A20EE835A94ED034A35EEF4 +:1017C000011A27EE035A35EE022A26EE033A84ED7B +:1017D000000A84ED011A20EE000A21EE011A33EE10 +:1017E000043A30EE010A22EE021A30EE010A23EE2C +:1017F000031A30EE010A84ED022A84ED033A06F062 +:10180000A1FA94ED001A94ED012A94ED023A94EDB8 +:10181000034A20EE011A20EE022A20EE033A20EEBF +:10182000040A002084ED001A84ED012A84ED023AB6 +:1018300084ED030A43E50000B0B52DED108B04469E +:1018400000284FF0FF0018BF002900F06981002A2E +:1018500000F066814CF2080542F60230C2F2010542 +:10186000C3F60750286092ED000A92ED011A94ED3C +:10187000014A94ED025A92ED022A94ED036A94ED26 +:10188000003A24EE407A61EE050A37EE607A62EEA5 +:10189000060A37EE607A60EE030A62EE051A71EE10 +:1018A000A00A61EE061A70EEE10A61EE031A62EE1A +:1018B000042A22EE032A21EE041A91ED00CA71EEE9 +:1018C000E21A20EE066A31EE021A20EE050A36EE22 +:1018D000216A91ED01DA91ED02EA31EE400AB6EEAD +:1018E000001AB5EE40CA27EE01BA20EE81AA26EE14 +:1018F000019AF1EE10FA20EE018A0AD1B5EE40DA33 +:10190000F1EE10FA05D1B5EE40EAF1EE10FA00F072 +:10191000BC802CEE0C0A2DEE0D1A30EE010A2EEED4 +:101920000E1A30EE010A06F00DFA94ED003A94ED2D +:10193000025AF1EE001A2CEE001A94ED014A75EEEF +:10194000050A63EE212A65EE053A62EEA34A61EECE +:10195000205A74EEA54A64EE045A2DEE002A94ED46 +:10196000036A34EE047A62EEA52A72EEA42A62EECD +:10197000074A32EEE4CA76EE062A64EE214A66EEA3 +:10198000066A64EEA67A21EE22DA77EECD7A23EEAD +:1019900003DA2DEE21DA2EEE000A24EE0DEA33EE04 +:1019A000033A7EEE277A22EE03EA77EECE7AB2EEA3 +:1019B00000EA24EE0E4A77EEE47A24EE25FA7FEE72 +:1019C000277A24EE234A34EE274A60EE244A34EE86 +:1019D00084FA2DEE054A21EE033A33EE043A25EE61 +:1019E0000E4A25EE215A65EE264A33EE243A62EE7F +:1019F000222A33EE623A33EE453A65EE842A32EE1D +:101A0000833A24EE234A34EE033A20EE050A30EE00 +:101A100003DA21EE070A25EEA11A21EE061A31EEAD +:101A2000400A23EEA11A26EE011A30EE010A22EE38 +:101A3000201A30EE41EA2CEE0C0A2FEE0F1A30EE8F +:101A4000010A2DEE0D1A31EE000A2EEE0E1A31EEBD +:101A5000000A06F077F995ED004A20EE0C1A20EE08 +:101A60000F2A24EE011A20EE0D3A20EE0E0A3BEE6C +:101A700041BA24EE021A3AEE41AA24EE031A24EEE9 +:101A8000000A39EE419A38EE408A94ED043A94ED1A +:101A9000000A94ED011A2BEE035A94ED022A30EE5F +:101AA000050A2AEE035A94ED034A35EE011A29EE8F +:101AB000035A35EE022A28EE033A84ED000A84ED3B +:101AC000011A20EE000A21EE011A33EE043A30EE3C +:101AD000010A22EE021A30EE010A23EE031A30EE5A +:101AE000010A84ED022A84ED033A06F02BF994ED05 +:101AF000001A94ED012A94ED023A94ED034A20EE87 +:101B0000011A20EE022A20EE033A20EE040A0020F9 +:101B100084ED001A84ED012A84ED023A84ED030A73 +:101B200040B2BDEC108BB0BDB1EE601AB4EE600AED +:101B3000F1EE10FAB4EE401AC8BFB0EE600AF1EE52 +:101B400010FAC8BFB0EE410A7047000080B540F6F9 +:101B50004410C2F200000068082109F03BFD80BD7E +:101B600080B540F28012C2F200020020122113233D +:101B700000F086F9002080BD80B5022001214FF0E1 +:101B8000FF3209F067FD80BD9FED010A704700BF7D +:101B90000000C84380B540F64410C2F2000000685F +:101BA000102109F017FD80BD80B540F28010C2F20F +:101BB0000000C21D01200221062300F061F900206F +:101BC00080BD000080B5042001214FF0FF3209F0F4 +:101BD00041FD80BDF0B581B000284FF0FE0700F058 +:101BE00097800C46002900F0938040F2A076C2F264 +:101BF00000060546307808B1FD2789E009F088FD28 +:101C000040F64411C2F20001002808607BD0002099 +:101C10007E21B622EC6200F08FF901201421B62259 +:101C200000F08AF91E2000F083FE00201E2100F043 +:101C30004DF90020002100F049F91E2865D101204E +:101C40000021012400F042F90F2860D1032000F0A8 +:101C50004FFD042000F04CFD41F63162C0F6000259 +:101C600000200121002700F039FE41F64D31C0F679 +:101C70000001032000F086FD41F69531C0F6000119 +:101C8000042000F07FFD00204021AA2200F054F93A +:101C900000204121012200F04FF9002053210822A9 +:101CA00000F04AF900205821042200F045F90020F4 +:101CB0007D21042200F040F9322000F039FE01209D +:101CC0000F21012200F038F901201021032200F039 +:101CD00033F901201621002200F02EF901201821ED +:101CE000012200F029F901201521802200F024F9B9 +:101CF0000A2000F01DFE0320347000F013FD0420C4 +:101D000000F010FD04E0FE2702E0FC2700E0FC27C5 +:101D100078B201B0F0BD0000002841D040F280113F +:101D2000C2F20001B1F901209FED1F3A00EE102A26 +:101D3000B8EEC00A80EE030AB1F90330B1F905C06C +:101D400001EE103A02EE10CAB8EEC11AB8EEC22A7D +:101D500081EE031A82EE032A4FF60003CFF6FF73DB +:101D600080ED040A4A7C897CD20042EA51120021AB +:101D7000B1EB922F80ED051A80ED062A18BF1A43A9 +:101D800000EE102AB8EEC00AB4EE001A20EE010AE6 +:101D9000B3EE071A30EE010A80ED0A0A48B2704726 +:101DA000FE2148B2704700BF00A0AA45C0B340F270 +:101DB0008011C2F20001B1F90720B1F90930B1F97F +:101DC0000B1000EE102A01EE103A9FED172A03EED9 +:101DD000101AB8EEC00AB8EEC11AB8EEC33A80EED7 +:101DE000020A81EE021A83EE022A9FED103AC16ABE +:101DF00091ED014A91ED025A20EE030A21EE031AF9 +:101E000022EE032A91ED003A31EE441A30EE430AF5 +:101E100032EE452A80ED070A80ED081A80ED092A86 +:101E20006FF00100704700BF6F12034235FA8E3C1D +:101E300010B5012000F090FC40F64414C2F20004FA +:101E400038B90120012100F0C3FC2068022109F00B +:101E5000C1FB022000F080FC002818BF10BD02204A +:101E6000012100F0B5FC2068042109F0B3FB10BD8E +:101E700080B5182001214FF0FF3209F0EBFB80BD47 +:101E8000002A08BF704770B51C4615460E4618B1AB +:101E9000012805D1022000E00120002100F098FC7B +:101EA0004CF2E05146F08000C2F2010108700020BF +:101EB0000122002300F022FD0020294622460123B2 +:101EC00000F0F2FCBDE8704070470000F0B581B052 +:101ED000044601200D46012600F02AFD14B1012C14 +:101EE00004D102263046002100F072FC4CF2E0568C +:101EF000C2F2010645F08000374607F8010B0020CA +:101F0000314601220023012500F0F8FC0020314673 +:101F10000222002300F0C8FC34B1012C09D14CF29C +:101F2000E057C2F2010702252846012100F050FCCB +:101F30003878C0B201B0F0BDB0B5044601F07F0002 +:101F40004CF2E051C2F20101087001204A700125F3 +:101F500000F0EEFC14B1012C04D10225284600212A +:101F600000F036FC4CF2E051C2F2010100200222E6 +:101F7000002300F0C3FC24B1012C18BFB0BD022027 +:101F800000E00120012100F023FCB0BD2DE9F04369 +:101F900081B04DF26868C2F201080646D8F8000028 +:101FA00014460D466421002A08BF0A2409F07CFA71 +:101FB00008B1FB242FE040F65C09C2F20009D9F811 +:101FC000000000E0006930B10178B142FAD1416807 +:101FD000A942F7D11AE0142000F012FC88B107469C +:101FE00020461C21002209F0B5F9B86058B1D9F893 +:101FF00000003C7300243E707D603861C9F80070B9 +:1020000005E0FE2403E0384600F06EFBFF24D8F81C +:10201000000009F0BFFA60B201B0BDE8F083000033 +:102020007047000040F65C02C2F20002126800E055 +:102030001269002A04BF0020704713788342F7D149 +:1020400053688B42F4D1906870470000D0E90212C7 +:10205000081FB0FA80F14FF0020008BF0320022AE7 +:1020600018BF4809704700004CF694624CF66C614A +:10207000C2F201020128C2F2010118BF00220028A9 +:1020800018BF1146012888BF00210846704700008C +:102090002DE9F04115464DF29C12C2F20102127870 +:1020A000012A11D1A5B14DF26868C2F201080746B4 +:1020B000D8F800000E4664211C4609F0F5F958B125 +:1020C000FB2040B2BDE8F081FD2040B2BDE8F081C8 +:1020D000FE2040B2BDE8F08138463146FFF7A2FF4E +:1020E000D8F800100646084609F054FA66B13046A2 +:1020F00029460022234609F0E9F8002818BF4FF0CE +:10210000FF3040B2BDE8F081FC2040B2BDE8F08174 +:102110002DE9F0478AB04DF29C17C2F201073878DA +:1021200008B1FD248AE040F2C000C2F2000068213C +:10213000FEF734FB002400BFE0B200F03BFA0134AC +:10214000012CF9D040F29C7042F22101C2F2000051 +:10215000C0F6000101600020002409F0CFF94DF223 +:102160006861C2F201010028086066D0E8464FF0BD +:1021700001094046282187F80090FEF70FFB4CF636 +:102180006C66C2F201064FF00E0A30464146CDE9B8 +:102190000244CDE90799CDF824A0049402F08AFD09 +:1021A000304603F055F942F2BD22C0F6000200208D +:1021B000062100F051F842F25155C0F6000500200A +:1021C00000212A4600F048F8002001212A4600F0AC +:1021D00043F8002002212A4600F03EF83046032151 +:1021E00002F00AFD4CF69466C2F201063046414602 +:1021F000CDE9049A02F05EFD304603F029F942F27F +:102200008132C0F600020120082100F025F80120EB +:1022100000212A4600F020F8012001212A4600F082 +:102220001BF8012002212A4600F016F83046112141 +:1022300002F0E2FC87F8009000E0FF2460B20AB0F0 +:10224000BDE8F08780B540F29C72C2F200021268CD +:10225000002A18BF904780BD4DF29C13C2F20103C3 +:102260001B78012B1EBFFD2358B270473AB10128DD +:102270004FF0FF0398BF0C2904D958B27047FE23D2 +:1022800058B2704740F2C00CC2F2000C342310FB6D +:1022900003C0002340F8212058B2704780B54DF2AA +:1022A0009C13C2F201031B78012B03D1FFF76EFED2 +:1022B00040B280BDFD2040B280BD00002DE9F04F4E +:1022C00093B003A80D3001904FF0000A0CAE00202F +:1022D00005E000BF0298002800F101004CD15FFA30 +:1022E00080FB02905846FFF7BFFE0028F2D004465C +:1022F00009E000BF03F01CFC0990384603A9002246 +:10230000002309F077F82046002102F055FD00284F +:10231000E0D02046002132460AAB02F05DFD0028E5 +:10232000F1D10E980028304618BF043005683046B9 +:10233000FFF78CFE804628464146FFF783FF814623 +:1023400058464946FFF76EFE0028DCD00746DDE917 +:102350000F02CDF80CA00028CDE908AACDE906AA05 +:102360008DF80C80CDE904598DF81820C2D1019860 +:102370000AA9FEF794F9BDE713B0BDE8F08F00009D +:102380002DE9F04F93B003A80D3001904FF0000AF3 +:102390000CAE002005E000BF0298002800F101000B +:1023A0004CD15FFA80FB02905846FFF75DFE002893 +:1023B000F2D0044609E000BF03F0BAFB09903846AA +:1023C00003A90022002309F015F82046012102F09C +:1023D000F3FC0028E0D02046012132460AAB02F08F +:1023E000FBFC0028F1D10E980028304618BF0430BD +:1023F00005683046FFF72AFE804628464146FFF72B +:1024000021FF814658464946FFF70CFE0028DCD0E4 +:102410000746DDE90F02CDF80CA00028CDE908AA97 +:10242000CDE906AA8DF80C80CDE904598DF8182065 +:10243000C2D101980AA9FEF732F9BDE713B0BDE891 +:10244000F08F00002DE9F04389B017464DF29C1241 +:10245000C2F201021278012A04D10446012806D9E9 +:10246000FF2000E0FD2040B209B0BDE8F08301F09C +:10247000FE001D460E46022802D00DB9FE20F2E7EE +:10248000DDF84080B8F1080F01D9FF20EBE72046C6 +:10249000FFF7EAFD98B181460020032E0890CDE9B0 +:1024A0000600CDE90400CDE90200019009D8DFE87B +:1024B00006F0020A0D110197002100200DE0FE2018 +:1024C000D1E7FF20CFE70297002005E00197022027 +:1024D000002102E0022002970421CDE90310002030 +:1024E000002DCDF814808DF8180018BFB8F1000F3A +:1024F00005D001A8183029464246FEF7D0F84846D4 +:1025000002F0FCFC38B101A901F118026B46484603 +:1025100002F086FB28B101A9204600F0A5F8013899 +:10252000A1E700209FE7000079B180B582B00A687A +:1025300091F804C04B1D0021CDF800C0FFF782FFC9 +:1025400002B0BDE8804040B27047FE2040B2704704 +:102550002DE9F04389B001AC04F118090025E846E3 +:1025600004E000BF002D05F1010520D1EFB238468F +:10257000FFF77AFD0028F5D0064600BF384600F088 +:1025800027F80028EED1304602F0B8FC0028E9D048 +:102590003846214600F02EF80028E3D03046214688 +:1025A0004A46434602F03CFB0028E7D0DAE709B090 +:1025B000BDE8F0834DF6245100EBC010C2F20101DA +:1025C00001EBC0000021C0F80014C0F804147047EB +:1025D0004DF6245100EBC010C2F2010101EBC00026 +:1025E000D0F80014D0F80404081AB0FA80F04009BA +:1025F00070470000002904BF002070472DE9F0411A +:102600004DF6245C00EBC012C2F2010C0CEBC202CE +:10261000D2F800E4D2F804349E451FD002F20445FB +:102620002C6800EBC0100CEBC00000EB44126401FE +:1026300050F804C0D2E901805769D2E90364C1E9C6 +:1026400000C8C1E90447C1E90206D2E90620C1E990 +:1026500006202868013000F01F002860BEEB030050 +:1026600018BF0120BDE8F08101284FF0000238D8E2 +:10267000B9B32DE9F0474DF6245C00EBC012C2F26D +:10268000010C0CEBC202D2F80034D2F804E401339E +:1026900003F01F0373451ED002F58069D9F800408E +:1026A00000EBC0100CEBC00000EB44124FEA441AE0 +:1026B000D1E904C6D1E90078D1E9025440F80A70A2 +:1026C0005661C2E9034CC2E90185D1E90610C2E9AD +:1026D0000610C9F80030B3EB0E0218BF0122BDE8A6 +:1026E000F04710467047000080B509F0EBFE80BD52 +:1026F00006284FF0FF0212D801460620DFE801F05D +:10270000090F0F04060F08000A2002E0172000E05E +:10271000092080B503F0C0FB0022BDE8804050B224 +:102720007047000006284FF0FF0212D8014606202D +:10273000DFE801F0090F0F04060F08000A2002E08D +:10274000172000E0092080B503F0AAFB0022BDE8B5 +:10275000804050B2704700000A2884BF00207047B4 +:1027600080B540F6AC01C0F6010101EBC002526831 +:1027700031F83010104603F0CFF90138B0FA80F08C +:10278000400980BDB9B10A2882BFFF2040B270471E +:1027900040F6AC02C0F6010232F830C0002000233F +:1027A0002CFA00F2D20709D10E2B03F1010300F13C +:1027B0000100F5D908E0FE2040B270474CF20C52FF +:1027C000C2F2010242F82010002040B2704700001F +:1027D0000A2882BFFF2040B2704780B50A4640F603 +:1027E000AC01C0F6010101EBC0035B6831F83010A9 +:1027F000184603F097F90020BDE8804040B27047CA +:1028000080B509F0D1FC80BD012882BFFF2040B215 +:10281000704740F60411C0F60101B7EE001A51F8F6 +:102820003000B4EE410AF1EE10FAC8BFB0EE410A32 +:1028300000689FED0C1AC16AB5EE400A0131F1EE55 +:1028400010FAB8BFB0EE410A01EE101AB8EE411A04 +:1028500020EE010ABCEEC00A80ED0D0A002040B255 +:10286000704700BF00000000012882BFFF2040B277 +:10287000704780B540F60411C0F6010101EBC002BB +:1028800051F83000918804F01DFE0020BDE8804022 +:1028900040B270474DF23001C2F20101002818BF6A +:1028A000002108467047000070B510B1FF2040B20B +:1028B00070BD1E4614460D46FFF7ECFF0028F5D00C +:1028C0002946224616B103F073FF02E0142303F0F9 +:1028D000B5FE002818BF012040B270BD002A0FBF0E +:1028E000FE2040F22C13C2F2000303EB40101CBF89 +:1028F00040F82120002040B27047000070B510B1B0 +:10290000FF2040B270BD1E4614460D46FFF7C2FFC1 +:102910000028F5D02946224616B104F037FA02E025 +:10292000142303F0DFFF002818BF012040B270BD60 +:1029300070B5044608F060FC0546FF2608F03EFC32 +:10294000411C05290BD80120884010F0310F0BD114 +:1029500010F0060F0AD0204602F0D8FF11E06FF009 +:102960000041884218BF002670B270BD4FF47A70E3 +:10297000B0FBF5F1B4FBF1F0A14288BF012008F0F3 +:10298000F3FB002670B270BD2DE9F04108F034FC75 +:1029900004460AF077FF4FF47A784EF21806B8FB37 +:1029A000F4F4CEF20006376804FB00F50AF06AFF83 +:1029B00060433168854208BF394656F8042C01FB54 +:1029C00008F10132B1FBF2F100FB08F0401A00F50A +:1029D0007A700021BDE8F08103288FBF002040B24B +:1029E00001A151F8200070470C070020D0D0012031 +:1029F0005407002018D1012080B582B001680A6810 +:102A0000D20614D5002201920A6801924968019108 +:102A1000019907F0CDFE4CF2505100EBC000C2F21C +:102A2000010101EB8000006A002818BF804702B056 +:102A300080BD00003AB103284FF0FF0398BF08297A +:102A400004D958B27047FE2358B270474CF2505325 +:102A500000EBC000C2F2010303EB8000002340F84A +:102A6000212058B27047000070B5032802D9FF201A +:102A700040B270BD144602460D4600294FF0FE00DC +:102A800018BF002C01D140B270BD10461E46FFF7A2 +:102A9000A3FF294622461EB105F0CAF840B270BD18 +:102AA00005F00CF940B270BDFEE7000080B54CF6B1 +:102AB0006C60C2F2010002F035FA80BD80B54CF6C0 +:102AC0006C60C2F2010002F02DFA80BD80B54CF6B8 +:102AD0006C60C2F2010002F025FA80BD80B54CF6B0 +:102AE0009460C2F2010002F01DFA80BD80B54CF680 +:102AF0009460C2F2010002F015FA80BD80B54CF678 +:102B00009460C2F2010002F00DFA80BD4FF00301A3 +:102B100060B146F200420068C4F2000202F5806330 +:102B2000984208BF0121801A08BF0146C8B2704709 +:102B300080B5024603284FF0FF000BD851B14CF688 +:102B40001460C2F2010050F8220028B102691AB1E3 +:102B50008068904740B280BD007900220A54FC2072 +:102B600040B280BDB0B54CF20C00C2F2010000F0E2 +:102B700017F84CF614650024C2F2010503E000BF0B +:102B80000134042C09D055F824000028F8D0C1687D +:102B90000029F5D080688847F2E70020B0BD00002A +:102BA00010B10179032902D9FF2040B270474CF6D9 +:102BB0001462C2F2010242F82100002040B27047C4 +:102BC00050B380B590F88010022902D80144097CE6 +:102BD000B1B900210FF2480C1CF8012083181B7CAE +:102BE000002B08BF042203D1022901F10101F3D116 +:102BF00080F8802080F8842080F8A82080F8C02009 +:102C000000F1100100F14802012300F0F5F8002066 +:102C1000BDE8804040B27047FF2040B2704700BF1F +:102C2000000102000146006891ED241A90ED030AAC +:102C300091ED252A20EE011A20EE020A002081EDF6 +:102C4000241A81ED250A704700207047014600686C +:102C500091ED251A90ED020A002031EE400A81ED37 +:102C6000250A704790F88010012902D051B901213E +:102C700000E0002180F8801080F8841080F8A8100F +:102C800080F8C010002070470146006891ED241ABA +:102C900090ED040A91ED252A20EE011A20EE020A99 +:102CA000002081ED241A81ED250A7047014601229A +:102CB000002081F8C3207047014690F8C100013020 +:102CC00000F00302002081F8C1207047014600682F +:102CD00091ED251A90ED020A002030EE010A81EDF7 +:102CE000250A70470146006891ED241A90ED020A0A +:102CF000002031EE400A81ED240A70470146006849 +:102D000091ED241A90ED020A002030EE010A81EDC7 +:102D1000240A70470146052081F88C000222002019 +:102D200081F8AC20704700000020704710B586463F +:102D300000284FF0000018BF002A00D110BDD2F8C3 +:102D400004C08CF000404FEACC0343EA5073062BDA +:102D500010D80020DFE803F0050E0E0E04222B0031 +:102D6000ECE79EF82600002818BF0120E1B391F897 +:102D7000261024E0DEF82C0000EA0C00A0EB0C008A +:102D8000B0FA80F04FEA501081B3C96A01EA0C0131 +:102D9000A1EB0C01B1FA81F1490913E09EF828007A +:102DA000002818BF012019B391F8281007E09EF8F9 +:102DB0002700002818BF0120E1B191F82710002951 +:102DC00018BF0121127A002A08BF10BD022A05D0BF +:102DD000012A07D181F00101084010BD80F00100F7 +:102DE000084010BD002010BD0021EBE70021E9E7FD +:102DF0000021E7E70021E5E72DE9F04780460028BC +:102E00004FF0FF001ED00E46E1B140F6D42A1C461A +:102E100091460025C0F6010A03E000BF1035B02D31 +:102E20000FD00AEB0507787A2042F7D030464946A2 +:102E30003A46FFF77BFF0028F0D0F9684046884704 +:102E4000ECE7002040B2BDE8F08700002DE9F0413A +:102E50000022C1E90022C1E90222C1E904228A61FB +:102E600050F8015F037C90F83C60013BDFB2FC004E +:102E700040F20133032F4FF00007D0F80480D0F860 +:102E800008E0D0F80CC0C0F2020338BF23FA04F700 +:102E90000F75447C013CE4B2E700032C4FF00004C2 +:102EA00038BF23FA07F44C75847C013CE4B2E70098 +:102EB000032C4FF0000438BF23FA07F48C75C47C50 +:102EC0000E70013CE4B2E600032C4FF0000438BF62 +:102ED00023FA06F4CC75047D4D60013CE4B2E500B4 +:102EE000032C4FF0000438BF23FA05F40C76447D20 +:102EF000C1F80880013CE4B2E500032C4FF0000467 +:102F000038BF23FA05F44C76847DC1F80CE0671EC7 +:102F1000FFB2FE00032F4FF0000738BF23FA06F779 +:102F20008F76C07DC1F810C00138C0B2C700032839 +:102F30004FF0000038BF23FA07F2CA76BDE8F081EF +:102F400080B506F097F980BD90F83D00704700000D +:102F500070B52DED028B20B30446FFF715FD054635 +:102F60000E460DF062FB9FED1F8A00EE100A80EE08 +:102F7000080AE068281A66F1000184ED010A0DF0E4 +:102F800054FB00EE100A80EE080A94F88000E56019 +:102F9000042884ED020A06D3204600F00BF9FC2039 +:102FA0001BE0FF2019E094F8A80040F21405C2F2DB +:102FB000000505EB001081682046884794F88400DE +:102FC00005EB001041682046884794F8C00005EBE7 +:102FD0000010C16820468847002040B2BDEC028B3B +:102FE00070BD00BF00247449B0B5054600284FF0FD +:102FF000FF000BD00C4649B12846C421FDF7CEFB9B +:103000002C60FFF7AFFDFFF78FFE002040B2B0BD90 +:1030100080B5417C69B1042280F88C20002200F147 +:103020001001C0E9242200F148020223FFF7E4FE68 +:1030300080BD032180F88C1080BD000080B5417CEC +:1030400061B3012280F8AC20B0F93020036852420D +:1030500000EE102AB0F9322090ED021A03EE102A89 +:10306000B8EEC00A93ED012AB8EEC33A21EE000A89 +:1030700021EE031A22EE000A22EE011AB7EE082A08 +:1030800000F1100121EE021A00F14802042380ED44 +:103090002C0A80ED2D1AFFF7AFFE80BD002180F8CD +:1030A000AC1080BD80B5417C71B190F83630012202 +:1030B00000F1100180F8C22080F8C33000F148020E +:1030C0000823FFF799FE80BD002180F8C11080BD64 +:1030D00090F824200168032A08D0022A0AD0012A85 +:1030E00014BF0321097D80F88C1009E0897D80F8E8 +:1030F0008C1005E04A7D80F88C200969C0F89C108E +:10310000D0E90512C0E924127047000090F825208C +:103110000168032A05D0022A05D0012A06D11731F9 +:1031200002E0193100E01831097800E0002190ED4B +:10313000070A90ED081AB8EE002A20EE020ABFEE48 +:10314000082A21EE021A80F8AC1080ED2C0A80EDDE +:103150002D1A704790F82610027C012980F8C120B2 +:1031600005D002290AD0032904D1032107E0002158 +:1031700080F8C2100021A0F8C21002E0012180F8FE +:10318000C11090F82710012906D003290AD002297E +:1031900005D10022012107E00021A0F8C210002182 +:1031A000002201E00121012280F8C21080F8C32032 +:1031B00070470000032180F88C10002180F8AC10CB +:1031C00080F8C1107047000010B5044600F00AF8FE +:1031D000002818BF10BD2046FFF7F2FC2046FFF77D +:1031E000B7FE10BD78B32DE9F04F83B0044654F814 +:1031F000100F0190606B04F11C0B029001989BE88A +:10320000C00F04F1040EA06304F154009EE82E5098 +:1032100080E8C00F0298A5640025E163226463641E +:10322000C4F84CC0C4F850E0E06600BFE8B22146E4 +:10323000FFF77EFC0135042DF8D1002003B0BDE876 +:10324000F04F40B27047FF2040B2704700000000CE +:1032500080B500EE100AB8EE400A10EE100A0DF02C +:103260008FF99FED110B53EC102B0CF01DFE0CF0A1 +:10327000E7FA00EE100A0BF053FF9FED0D1A9FEDD9 +:103280000E2A20EE010A9FED0B1AB0EEC00A30EEB6 +:10329000010AB4EE420AF1EE10FAC8BFB0EE420ADB +:1032A00080BD00BF00BF00BFFCA9F1D24D62503FFE +:1032B000CDCC4C3E9A99193FCDCC4C3F2DE9F047EF +:1032C0002DED048B804600284FF0FE0000F00281B7 +:1032D0000E46002900F0FE80D8F800009FED801A0D +:1032E000101A00EE100AB8EE400A80EE010A317999 +:1032F00040461546C8F8002088ED010A00F0FAF8AB +:1033000008B1FD20E6E098F8180005280AD8DFE8A3 +:1033100000F0030B030358220020C8E90700C8F897 +:10332000240068E0FD20D5E096ED020A96ED031A30 +:1033300096ED052A96ED043A20EE020A22EE011AD5 +:1033400022EE033A88ED070A88ED081A88ED093A5B +:1033500088ED0A2A4FE098ED620A9FED641A08F59D +:10336000D96480EE010A9FED621A94ED012A20EEE5 +:10337000010A30EE428AB0EE480A0BF0A7FDB0EE2B +:10338000409AB0EE480A0BF0CBFE96ED061A96ED89 +:10339000072A29EE013A20EE024A20EE010A29EE20 +:1033A000021A33EE443A30EE010A94ED008A2846C0 +:1033B00088ED073A88ED080AFFF74AFF28EE000A71 +:1033C00017E096ED070A96ED061AB1EE400AB1EE47 +:1033D000411A88ED070A88ED081AD8ED011AD8EDD0 +:1033E000620A9FED400A9FED401A08F59C6005F0C7 +:1033F000F3FD88ED090A98ED070A08F2345004F04D +:10340000D5FC88ED070A98ED080A08F2545004F03C +:10341000CDFC88ED080A98ED090A08F2745004F012 +:10342000C5FC404688ED090A00F0D6F89FED2E8ACB +:10343000002540F2945940F2146A6FF0EF0400BF87 +:1034400008EB050696ED170AD6ED2E0A08EB0407E1 +:10345000D8ED011A07F54070B0EE481A86ED1B0A48 +:1034600005F0BAFDD6ED320AD8ED011A07F57C70E9 +:10347000B0EE481A86ED020A05F0AEFD08EB0A0030 +:1034800086ED240A04F092FC06F5D76080ED000A70 +:1034900096ED0F0AD6ED3A0AD8ED011A07F59C60B1 +:1034A000B0EE481A86ED1F0A05F096FD08EB0900FC +:1034B00086ED280A04F07AFC043506F5D56009F19A +:1034C00020090AF1200A102D04F13C0480ED000AC5 +:1034D000B6D1002040B2BDEC048BBDE8F08700BF40 +:1034E00000007A440AD70340000000000000344383 +:1034F000DB0F49402DE9F041A0B30446007E884629 +:1035000088422BD0B8F1050F08D1052806D0104607 +:10351000FDF788F84FF07E50C4F8C8066FF0EF074B +:10352000E51905F57C76304605F056FE05F5407048 +:1035300005F052FE05F59C6005F04EFE304605F0A4 +:103540004BFE3C37ECD104F5EA7004F5CC7605F07F +:1035500043FE304605F040FE84F81880002040B25B +:10356000BDE8F081FE2040B2BDE8F081F0B581B049 +:10357000044600F2A466C425D4F8300596ED010A8D +:103580002844371D05F054F8D4F8300596ED050AA7 +:103590002844203005F04CF80835E42D3E46EBD1A8 +:1035A000D4F83005C43004F017FFD4F83005CC301F +:1035B00004F012FFD4F83005D43004F00DFFD4F835 +:1035C0003005DC3004F008FFD4F83005FC3004F09E +:1035D00003FF01B0F0BD00002DE9F04F81B02DEDEB +:1035E000028B8AB0077E0446012F3AD1E06920F0B1 +:1035F00000400CF0C5FF9FED2A0B55EC106B3246D6 +:103600002B460CF0FDFF60BB206A20F000400CF060 +:10361000B7FF32462B460CF0F3FF10BB606A20F078 +:1036200000400CF0ADFF32462B460CF0E9FFC0B96C +:1036300094F81C0504F14C0C002804BF012084F808 +:103640001C050020C4E90B00C4E90D00D4F8940661 +:10365000D4F89816D4F89C26D4F8A0368CE80F003D +:103660001FE2002084F81C056FF00F002118CA6DBE +:103670000430C1F8A426F9D1052F00F212820120EE +:10368000B84010F00D0F17D00020C4E90B00C4E9BA +:103690000D00C4E91300606502E200BF00BF00BF77 +:1036A0009A9999999999B93FCC3B7F669EA0E63F3C +:1036B000CD3B7F669EA0E63FD4E9070A656A0CF021 +:1036C0005FFF8046284689460CF05AFF1FED0A0B23 +:1036D00006465BEC102B5B460F460292CDF814B009 +:1036E0000CF0E2FB42464B460CF0DCF802460B467F +:1036F0000CF0DAFB8146504688460CF041FF1FED86 +:10370000140B05468A4653EC102B30463946CDE95A +:1037100003230CF0C9FB2A4653460CF0C3F80246BB +:103720000B460CF0C1FB02460B46484641460CF0E6 +:10373000B9F841EC100B0BF0BBFD51EC100B0CF089 +:103740007FF8E062D4E90708656A0CF019FF0746C4 +:1037500028468A460CF014FF029A5B4606468946C4 +:103760000CF0A2FB3A4653460CF09CF802460B467E +:103770000CF09AFB824640468B460CF001FFDDE9D7 +:10378000032305460F46304649460CF08DFB0246A2 +:103790000B46284639460CF005FE02460B460CF057 +:1037A00083FB02460B46504659460CF07BF841EC31 +:1037B000100B0BF07DFD51EC100B0CF041F8206369 +:1037C000D4E90701656A01910CF0DAFE0746284644 +:1037D00089460CF0D5FEDDF80880059B424606467A +:1037E0008B460CF061FB02460B46384649460CF00E +:1037F000D9FD02460B460CF057FB814601988A46DC +:103800000CF0BEFEDDE9032307460D46304659465F +:103810000CF04AFB02460B46384629460CF0C2FD26 +:1038200002460B460CF040FB02460B46484651460A +:103830000CF038F841EC100B0BF03AFD51EC100B8A +:103840000BF0FEFF6063D4E9070A656A0CF098FE8E +:103850000746284689460CF093FE059B42460646DD +:103860008B460CF021FB02460B46384649460CF0CD +:1038700099FD02460B460CF017FB814650468846E0 +:103880000CF07EFE0D465946DDF80CA0DDF810B0B8 +:103890000746304652465B460CF006FB3A462B463E +:1038A0000CF000F802460B460CF0FEFA02460B46FE +:1038B000484641460BF0F6FF41EC100B0BF0F8FCCC +:1038C00051EC100B0BF0BCFFA063D4E90780666AD3 +:1038D0000CF056FE0546304689460CF051FE524625 +:1038E0005B4606460F460CF0DFFA2A464B460BF0C5 +:1038F000D9FF41EC180B40460CF042FE029A059BA2 +:1039000005468846304639460CF0CEFA2A464346EC +:103910000BF0C8FF41EC110BB0EE480AF0EE680A5C +:103920000BF07EF851EC100B9FED9F0B53EC102B1E +:10393000CDE900230CF0B8FA0BF082FFE064D4E983 +:1039400007A0666A0CF01CFE054630468B460CF05C +:1039500017FEDDF80C90049B4A4606460F460CF015 +:10396000A3FA02460B46284659460CF01BFD41ECD3 +:10397000180B50460CF004FEDDF80880059B054648 +:103980008A463046394642460CF08EFA2A4653465D +:103990000BF088FF41EC110BB0EE480AF0EE680A1C +:1039A0000BF03EF8DDE9002351EC100B0CF07CFA33 +:1039B0000BF046FF2065D4E907A0666A0CF0E0FD35 +:1039C000054630468B460CF0DBFD4A46DDF810908C +:1039D00006464B460F460CF067FA02460B46284651 +:1039E00059460CF0DFFC41EC180B50460CF0C8FDBA +:1039F0004246DDF8148005468A463046394643463D +:103A00000CF052FA02460B46284651460CF0CAFC0E +:103A100041EC110BB0EE480AF0EE680A0BF000F82A +:103A2000DDE9002351EC100B0CF03EFA0BF008FF1F +:103A30006065D4E907A0666A0CF0A2FD0546304631 +:103A40008B460CF09DFD039A4B4606460F460CF044 +:103A50002BFA2A465B460BF025FF41EC180B50462B +:103A60000CF08EFD029A05468A463046394643469A +:103A70000CF01AFA02460B46284651460CF092FC0E +:103A800041EC110BB0EE480AF0EE680A0AF0C8FFEC +:103A9000DDE9002351EC100B0CF006FA0BF0D0FE20 +:103AA000A0659FED430A04F14C000021421892EDFD +:103AB000001A0431B5EE401AF1EE10FABCBF31EE37 +:103AC000001A82ED001A1029F0D19FED3A1A9FEDED +:103AD0003A2A9FED3A3A9FED3A4A9FED3A5A002032 +:103AE00006A90AE0F1EE600A36EE076AC2ED0F0A97 +:103AF0000130042882ED176A4DD004EB800292ED6C +:103B0000137A92ED2E6A01EB800337EE467AB4EE1B +:103B1000417AF1EE10FA83ED007A08DD37EE027A91 +:103B2000B4EE417AF1EE10FAF8DC83ED007A93ED11 +:103B3000007AB4EE437AF1EE10FA08DA37EE007A42 +:103B4000B4EE437AF1EE10FAF8DB83ED007AB4EECE +:103B5000447AF1EE10FA0BDDB4EE417AF1EE10FA90 +:103B600006DCD36A36EE076AD36336EE036ABFE734 +:103B7000D2ED0B0AB4EE457AF1EE10FAB2DAB4EEF9 +:103B8000437AF1EE10FAADDB36EE076AC2ED0F0AAA +:103B900036EE016AACE70AB0BDEC028B01B0BDE8BD +:103BA000F08F00BF00BF00BF00000000DCA54C404C +:103BB0000000B443000034430000B4C3000034C329 +:103BC0000000B4420000B4C2002800F0B7802DE924 +:103BD000F0412DED0C8B9FED5E9A9FED5EAA9FED5F +:103BE0005EBA9FED5ECA9FED588B9FED5DDA804611 +:103BF00000256FF003066FF00F0700BFD8F83005FF +:103C00002844C43004F064FDD8F830052844C4309A +:103C100004F080FC00F1080308EB45040ECB40697A +:103C200004F5847C8CE80E00C4F81401D8F8300543 +:103C30002844E43004F04CFDD8F830052844E43042 +:103C400004F068FC00F108030ECB406904F5A47C85 +:103C50008CE80E00C4F8540194ED520A08EB0604F7 +:103C600080EE090A08EB070020EE0A0A84ED2F0A0D +:103C700090ED571A81EE0B1A84ED331A90ED471A26 +:103C800004F2245081EE0C1A90ED002A30EE420A24 +:103C900010EE100A84ED371A0CF072FC41EC100B98 +:103CA000B0EE481AF0EE681A0BF0B8F951EC100BB0 +:103CB0000BF0C6FD00EE100AB5EE400AF1EE10FA68 +:103CC00005F1080530EE0D1AB8BFB0EE410A043612 +:103CD000202D07F1100784ED2F0A8FD1D8F8300579 +:103CE00000F5867004F0F4FCD8F8300500F5867015 +:103CF00004F010FC48B100F108030ECB406908F154 +:103D0000F80C8CE80E00C8F8040198ED3F0A9FED0E +:103D1000151A9FED152A20EE010A80EE021A98ED81 +:103D20003E0A88ED2D1A07F0C9F988ED2C0A00200B +:103D3000BDEC0C8BBDE8F04140B27047FE2040B2B4 +:103D4000704700BF00BF00BF000000000080764049 +:103D5000DB0F4940000034430000A04300401C46F4 +:103D60000000B443DB0FC9400000704290ED001A20 +:103D7000F5EE400AF1EE10FA31EE000A10DDB4EE75 +:103D8000600AF1EE10FAA2BF30EE600A80ED000A80 +:103D90007047B5EE400AF1EE10FAB8BF30EE200AD7 +:103DA00080ED000A70470000B5EE401AF1EE10FAFF +:103DB00030EE600AD8BF7047B6EE002A21EE022A24 +:103DC000B4EE420AF1EE10FAC4BF30EE410A704779 +:103DD000B1EE422AB4EE420AF1EE10FAB8BF30EE6C +:103DE000010A704790ED001AB4EE601AF1EE10FA75 +:103DF000C8BFC0ED000A90ED001AB4EE401AF1EE13 +:103E000010FAB8BF80ED000A704700004CF22400A1 +:103E1000C2F201007047000080B54CF61C70C2F27F +:103E2000010001F013FC80BD80B540F21060C2F2C9 +:103E3000000001F00BFC80BD80B54CF6BC60C2F206 +:103E4000010001F003FC80BD80B540F2B050C2F229 +:103E5000000001F0FBFB80BD80B54CF67C70C2F227 +:103E6000010001F0F3FB80BDD0F800C06FF00F023D +:103E70004AF6AB2352FA8CF2CAF6AA230146A2FBF9 +:103E80000330000905A31B5C40F2FF302CEA000060 +:103E90005F2A88BF0430C1E9160370470006101678 +:103EA000000610168269816AB2F5005F06D06AB911 +:103EB000022912D0012914D0D1B90EE0032917D854 +:103EC000DFE801F0020B020F0120704703293CBF1D +:103ED000012070471CBF00207047C06AC0F300601B +:103EE0007047C06AA0F1C070B0FA80F04009704716 +:103EF0000020704780B5D0F800C0D0F808E0DCF8AA +:103F00000000BEF1400F20F48020CCF800000846ED +:103F1000CCF8043004BF10460A46CCF80800CCF8B0 +:103F20000C2080BD10B5E8B14DF29D14C2F2010421 +:103F3000207810B1FD2040B210BD07F0E9FB40F63B +:103F40004811C2F20001086060B143F66D72C0F61C +:103F5000000202200321FEF76DFD012020700020E9 +:103F600040B210BDFE2040B210BD000080B540F64A +:103F70004810C2F200000068012107F02BFB80BD51 +:103F800070470000002843D0B0B50446451C02200D +:103F90002070204600F05CF8E869296A6A6AAB6A1A +:103FA0002860B4F92D00AA60EB60696003F0ECFEB4 +:103FB000B4F92F106074084603F0E6FEB4F931102E +:103FC000A074084603F0E0FEB4F93310E07408462C +:103FD00003F0DAFEB4F935102075084603F0D4FE7C +:103FE000B4F937106075084603F0CEFEB4F9391005 +:103FF000A075084603F0C8FEB4F93B10E07508460A +:1040000003F0C2FE20760020BDE8B04040B2704709 +:10401000FE2040B270470000B0B1032101700021C2 +:1040200080F83D10C0F80110C0F80510C0F8091064 +:10403000C0F80D10C0F81110C0F81510C0F8191014 +:10404000C0F81D1048B27047FE2148B2704700000A +:104050002DE9F0472DED088B002800F01A814CF275 +:10406000EC51C2F201014B788F78012267F30A23E9 +:1040700000EE103AB8EEC00A00F11D0480F83D20B1 +:1040800010EE102A2260CA78FB0862F34A1300EE91 +:10409000103AB8EEC00A10EE103AE3600B794F798F +:1040A0009B0043EA921207F0010342EA832200EEEA +:1040B000102AB8EEC00A10EE102A62608A797B08D6 +:1040C00062F3CA1301EE103AB8EEC11A11EE103ABB +:1040D000A3600F7ACB794E7A12097F0063F30A123C +:1040E00047EAD31306F003078D7A43EA4723A0F883 +:1040F0002D30B308CF7A65F38A13A0F83730FB0070 +:104100000F7B4E7B43EA5513A0F8353066F30A2740 +:104110008B7BA0F83370F708CE7B63F34A17A0F8C7 +:104120003170B7000E7C47EA931306F0010743EAAB +:104130008723497C9FED5E8A9FED5E9AA0F82F3021 +:104140007308BFEE00AAB7EE00BA61F3CA13F0EE2F +:10415000480AB0EE491AF0EE4A1AB0EE4B2AA0F81F +:104160003920A0F83B30A0F8392006F099FF2168EB +:1041700010EE100A00EE101AF0EE480AB0EE491ADE +:10418000F0EE4A1AB0EE4B2A606006F089FFA16893 +:1041900010EE100A00EE101AF0EE480AB0EE491ABE +:1041A000F0EE4A1AB0EE4B2A206006F079FFE16883 +:1041B00010EE100A00EE101AF0EE480AB0EE491A9E +:1041C000F0EE4A1AB0EE4B2AA06006F069FF2068B4 +:1041D00010EE108AC4F80C800CF0D2F99FED300B71 +:1041E000074659EC10AB52464B460E460CF00FFA00 +:1041F00058B99FED2D0B384653EC102B31460CF07F +:10420000F8F9002804BF0020206060680CF0B8F9BD +:1042100052464B4606460F460CF0F9F958B99FED49 +:10422000220B304653EC102B39460CF0E2F90028F3 +:1042300004BF00206060A0680CF0A2F952464B4613 +:1042400006460F460CF0E3F958B99FED170B3046C0 +:1042500053EC102B39460CF0CCF9002804BF002099 +:10426000A06040460CF08CF952464B4606460F467D +:1042700000250CF0CCF968B99FED0B0B304653ECE0 +:10428000102B39460CF0B5F9002804BF0025E56075 +:1042900000E0FE2568B2BDEC088BBDE8F08700BFEA +:1042A0007B14AE47E17A84BF7B14AE47E17A843F4A +:1042B0000080B04300E0D34480B5012001F050FB02 +:1042C00080BD000080B5082001F04AFB80BD0000E1 +:1042D00080B5102001F044FB80BD000080B5202097 +:1042E00001F03EFB80BD000072B600BFFEE700009B +:1042F00070B52DED0E8B044600284FF0FF0000F046 +:10430000B6810D46002900F0B281FEF73DFBD4E9ED +:104310000023801A99410CF088F99FEDD70A01EE2D +:10432000100A81EE000A84ED020AFEF72DFB2A78BE +:10433000C4E900012046114600F062FB204606F069 +:104340009FFE94ED02DA95ED010A95ED02EA04F57F +:10435000367004F5287120EE0DAA06F0E3FE94ED08 +:10436000141AB0EE408A9FEDC59A94ED740A38EEA7 +:10437000011A7AEE010AB0EE491AFFF715FD94ED25 +:10438000141AB0EE40BA94ED750A38EE011A7AEEBE +:10439000010AB0EE491AFFF707FD607C02280BD036 +:1043A000012800F0AC80002840F048810020C4E9DA +:1043B0009300C4F8540241E19FEDB09A04F5F27500 +:1043C0002846B0EE4A0AF0EE490AFFF7CFFC94ED1A +:1043D000790A9FEDAB1AB4EE410AF1EE10FA05DD51 +:1043E0009FEDA82A30EE020A85ED000A95ED003A0D +:1043F0009FEDA52AB1EE484AB4EE423AF1EE10FA2A +:10440000BCBF33EE093A85ED003A9FED9E3AB4EE1B +:10441000428A33EE485AF1EE10FAB8BFB0EE454A80 +:10442000B4EE424A94ED796A34EE095AF1EE10FA8C +:10443000B8BFB0EE454A34EE064AB4EE414A34EE17 +:10444000033AF1EE10FAC8BFB0EE434AB4EE424A66 +:1044500034EE091AF1EE10FAB8BFB0EE414AE06846 +:1044600094ED151A41782DEE0E0A30EE010A84ED16 +:10447000144A84ED150A39B1D0ED460A90ED470A89 +:1044800004F15400FFF7AEFCD4ED021A94ED130AC8 +:10449000D4EDB20A94EDB31A04F1680004F09CFD67 +:1044A0009FED7AAA84ED930AD4ED021AD4ED0D0A99 +:1044B00094ED140A04F1E000B0EE4A1A04F08CFD09 +:1044C000D4ED021AD4ED0A0A04F58E70B0EE4A1A41 +:1044D000B0EE408A04F080FD84ED940AD4ED021A17 +:1044E000D4ED0C0A94ED150A04F5AC70B0EE4A1A3E +:1044F00004F072FDD4ED021AD4ED090A73E02046EF +:104500002946B0EE40CA04F1500600F0C1F8E06858 +:10451000007838B13046B0EE4C0AF0EE4B0AFFF7A7 +:1045200061FC1BE096ED000A9FED551AB4EE410ABE +:10453000F1EE10FA05DD9FED531A30EE010A86ED1B +:10454000000A96ED000A9FED501AB4EE410AF1EE12 +:1045500010FABCBF30EE090A86ED000AE068417827 +:1045600039B1D0ED460A90ED470A04F15400FFF747 +:1045700039FCD4ED021A94ED130AD4EDB60A94ED89 +:10458000B71A04F1680004F027FD9FED40AA84EDFE +:10459000930AD4ED021AD4ED0D0A94ED140A04F135 +:1045A000E000B0EE4A1A04F017FDD4ED021AD4ED83 +:1045B0000A0A04F58E70B0EE4A1AB0EE408A04F092 +:1045C0000BFD84ED940AD4ED021AD4ED0C0A94ED9F +:1045D000150A04F5AC70B0EE4A1A04F0FDFCD4EDF7 +:1045E000021AD4EDA60AB0EE409A04F5CA70B0EEF5 +:1045F0004A1A04F0F1FCE06884ED950A90F8041181 +:1046000069B194EDA72A90ED421A94ED943A38EEF0 +:10461000422A21EE021A33EE011A84ED941A90F820 +:10462000051159B194EDA51A90ED432A39EE411ABE +:1046300022EE011A30EE010A84ED950A94ED930AF8 +:1046400004F5F67003F0B2FB84ED930A94ED940A3E +:1046500004F5037003F0AAFB84ED940A94ED950A27 +:1046600004F50B7003F0A2FB002084ED950A40B224 +:10467000BDEC0E8B70BD00BF00247449DB0FC94038 +:10468000DB0F4940DB0FC9C0DB0F49C00000000051 +:1046900000284FF0FF0218BF002901D150B2704727 +:1046A0004A78022A19D0AAB991ED010A91ED021AAD +:1046B00090ED022A90ED143A90ED154A20EE020A90 +:1046C00022EE011A33EE000A34EE011A80ED140ACC +:1046D00080ED151A002250B27047CA680265096958 +:1046E0000022416550B27047002808BF7047C1687A +:1046F00091F8FB20022A05D0012A08D05AB990ED82 +:10470000A90A06E090EDAA0AB1EE400A01E090ED98 +:10471000A80A80ED0C0A91F8FC20022A05D0012A93 +:1047200006D04AB900F5297204E000F52A7201E0CA +:1047300000F528721268426391F8F820022A05D029 +:10474000012A06D04AB900F5257204E000F5277267 +:1047500001E000F526721268426291F8F910022910 +:1047600005D0012906D049B900F5257104E000F50E +:10477000277101E000F526710968816200F52B7C44 +:104780009CE80E103C3080E80E10704710B52DEDFF +:10479000028B002800F09E800446C16000206074F7 +:1047A00004F1680001F158020121B0EE408A04F0E2 +:1047B000CBFCE16804F1A40001F138020121B0EE64 +:1047C000480A04F0C1FCE16804F1E00001F198023C +:1047D0000121B0EE480A04F0B7FCE16804F58E70E0 +:1047E00001F178020121B0EE480A04F0ADFCE16865 +:1047F00004F5AC7001F1D8020121B0EE480A04F0D2 +:10480000A3FCE16804F5CA7001F1B8020121B0EE21 +:10481000480A04F099FCE06890ED4B0A90ED4C1AC0 +:10482000D0ED440A30EE011A84ED750A04F5F670F5 +:10483000B0EE480A84ED741A03F0F6FAE068B0EEC0 +:10484000480AD0ED440A04F5037003F0EDFAE0687D +:10485000B0EE480AD0ED440A04F50B7003F0E4FA18 +:10486000FDF756FCE0688178022902D10E3003F092 +:104870008BFEE0688178012906D1063003F060FCE8 +:10488000E068063003F06EFBE0680179022902D18E +:104890002E3003F079FEE068C178022902D126307B +:1048A00003F072FEE0680179012906D11E3003F0A1 +:1048B00047FCE0681E3003F055FBE068C178012931 +:1048C0000AD1163003F03CFCE068163003F04AFBD6 +:1048D000002002E0FF2000E0002040B2BDEC028B8F +:1048E00010BD000010B50446C0688178022908D1C7 +:1048F0000E3003F071FDE06894ED930A0E3003F082 +:1049000097FEE068817801291CD1D0F8401194ED20 +:10491000930AC4F86012D0F84811C4F86812D0F8AD +:104920004411C4F86412D0F83C11C4F85C1290ED44 +:104930005D1A04F5167120EE010A063084ED960A20 +:1049400003F06AFBE0680179022908D12E3003F0F8 +:1049500043FDE06894ED940A2E3003F069FEE068B0 +:10496000C178022908D1263003F036FDE06894EDC5 +:10497000950A263003F05CFEE068C17801291CD15D +:10498000D0F8681194ED950AC4F88812D0F8701127 +:10499000C4F89012D0F86C11C4F88C12D0F86411DD +:1049A000C4F8841290ED5F1A04F5207120EE010A1C +:1049B000163084EDA00A03F02FFBE068017901298D +:1049C00018BF10BDD0F8541194ED940AC4F87412B5 +:1049D000D0F85C11C4F87C12D0F85811C4F87812E1 +:1049E000D0F85011C4F8701290ED5E1A04F51B71E6 +:1049F00020EE010A1E3084ED9B0A03F00DFB10BD72 +:104A0000B0B52DED028BC8B30446407C0D468842FC +:104A100034D004F1680004F0DFFB04F1A40004F0DA +:104A2000DBFB04F1E00004F0D7FB04F58E7004F02A +:104A3000D3FB04F5AC7004F0CFFB04F5CA7004F0AE +:104A4000CBFB9FED108A04F5F670B0EE480A03F038 +:104A50003DFA04F50370B0EE480A03F037FA04F5A6 +:104A60000B70B0EE480A03F031FA04F15000FCF785 +:104A700015FCD4E9A8016574C4E91401BDEC028BEE +:104A8000B0BD00BF0000000010B5002800F0888015 +:104A90000446C0688178022911D10E3003F018FE57 +:104AA000E0680E3003F036FD48B100F108030ECB8C +:104AB000406904F5327C8CE80E00C4F8D402E0684A +:104AC0008178012911D1063003F018FCE068063026 +:104AD00003F076FA48B100F11C030ECB806A04F5AE +:104AE000327C8CE80E00C4F8D402E0680179022917 +:104AF00011D12E3003F0ECFDE0682E3003F00AFDFA +:104B000048B100F108030ECB406904F5367C8CE80F +:104B10000E00C4F8E402E068C178022911D1263001 +:104B200003F0D6FDE068263003F0F4FC48B100F154 +:104B300008030ECB406904F53A7C8CE80E00C4F8FB +:104B4000F402E0680179012911D11E3003F0D6FB8F +:104B5000E0681E3003F034FA48B100F11C030ECBBC +:104B6000806A04F5367C8CE80E00C4F8E402E06844 +:104B7000C178012911D1163003F0C0FBE06816306E +:104B800003F01EFA48B100F11C030ECB806A04F555 +:104B90003A7C8CE80E00C4F8F402002040B210BD4C +:104BA000FF2040B210BD000010B380B58B68D1E982 +:104BB00000C2C0F89C32C0E9A5C24B69D1E903C26A +:104BC000C0F8A832C0E9A8C201F1280C9CE80C107A +:104BD00000F52F7E8EE80C10D1E906C3D1E908213B +:104BE000C0E9ABC3C0E9AD21FFF77EFDBDE8804061 +:104BF0004FF0FF307047000090F82020013A012A62 +:104C000004D8006800F11402002004E000F124023E +:104C100001204FF480211368194311607047000090 +:104C200010B590F820E0D0F800C0AEF1010EBEF152 +:104C3000010FDCF808E00ED81EF0E05F11D0CEF3D3 +:104C4000016E012000FA0EF018608B687BB1486895 +:104C500043EAC0030DE000F1240101204FF480225B +:104C600023E000F1240101204FF400121DE0086848 +:104C70004305D1E9030403430CEB0E10C0F8803167 +:104C8000C0F88441097D012905D100F5C2710B6886 +:104C900043F480730B605168C0F88C11126800F502 +:104CA000C071C0F88821002001220B681A430A60F5 +:104CB00010BD0000B0B590F82020013A012A2FD88D +:104CC00046F20060C4F20000026842F00102026095 +:104CD000026822F47C520260D1F814E0CC694A6A7E +:104CE0000368012C43EA022202600EF01F024FF01B +:104CF000010303FA02F2C3696FEA020C23EA02031A +:104D0000C36113D02CBBC36803EA0C03C360CB6838 +:104D10008C8844EA034300EBCE0423640B4611E085 +:104D2000416A41F4802141620120B0BDC368134350 +:104D3000C3600B688C8844EA034300EBCE04236411 +:104D400001F10C038C681B8843EA044300EBCE049A +:104D5000636443688D6943EA0204D1F810E0096A8C +:104D6000002D08BF03EA0C0444604369BEF1000F44 +:104D700043EA020408BF03EA0C040129446102D19A +:104D8000C1691143C161016821F001010160002086 +:104D9000B0BD000080B5FDF7B9FE032808BF80BD97 +:104DA00040F2C001C2F20001342210FB0210006B7D +:104DB000002818BF804780BD90F82020013A012AC2 +:104DC00084BF0020704700681022002908BF0C2211 +:104DD000805800F00300704710B590F82040013C67 +:104DE000012C0AD8046871B12469A4070ED100F11E +:104DF000240101204FF4001276E000F1240101208B +:104E00004FF4802270E0E468A40771D0046804EBDA +:104E1000011CDCF8B0410CF5D87E14F00404946059 +:104E2000DCF8B04119BFE4085460640D1460DEF88A +:104E300000400CF5DA7E04F00204D460DCF8B441E2 +:104E400024075ABFDEF8004004F00F040824146160 +:104E5000DEF800400029C4F307249461DEF8004026 +:104E60004FEA14445461DCF8B8211A70026802EB6E +:104E70000112D2F8B8214FEA12225A70026802EBEE +:104E80000112D2F8B8214FEA12429A70026802EB7E +:104E90000112D2F8B8214FEA1262DA70026802EB0E +:104EA0000112D2F8BC211A71026802EB0112D2F889 +:104EB000BC214FEA12225A71026802EB0112D2F8A9 +:104EC000BC214FEA12429A71026802EB0112D2F839 +:104ED000BC214FEA1262DA71006814BF00F11001C0 +:104EE00000F10C01002020220B681A430A6010BD5B +:104EF00000F1240101204FF40012F5E790F8201092 +:104F00000139012984BF00207047006881688268E8 +:104F10008068C1F38061C2F3C0621144C0F30070C5 +:104F2000084470472DE9F04F81B004460068466997 +:104F3000D0F804908768D0F80CB0D0F810A0D0F862 +:104F40001880F10703D1002530071CD423E0F907AE +:104F500010D00121BA07816009D4780700F1AA8036 +:104F6000380700F1B080204600F0A0FA02E02046A9 +:104F700000F0AEFA0025F80500F18480F80300F196 +:104F8000AA80300707D51BF0100004D0206845F434 +:104F900000751021C160700708D51BF0080005D00E +:104FA00020680821C160204600F0F8F9B00706D556 +:104FB0002068C068800702D0204600F001FA700621 +:104FC00007D51AF0100004D0206845F48065102140 +:104FD0000161B00608D51AF0080005D02068082144 +:104FE0000161204600F0FEF9F00606D52068006950 +:104FF000800702D0204600F007FAB00308D519F068 +:10500000100005D0206810214160204600F00EFA03 +:10501000F00308D519F0080005D020680821416088 +:10502000204600F0AFFA300440F18F805FEA49700B +:1050300040F1888006F4807008EA102028435FEA77 +:105040008871014648BF41F00201B20558BF0146D0 +:105050005FEA48700D4648BF45F00405700558BF2B +:105060000D4630056ED518F070006BD01038000971 +:10507000052862D8DFE800F0035356595C5F45F01D +:1050800008055AE020684FF48071BA0581600AD49F +:10509000780512D4380519D4204600F02BFAF8030D +:1050A0007FF56FAF17E0204600F036FAF8037FF582 +:1050B00068AF10E04FF400655DE705F50055F803B3 +:1050C0007FF55FAF07E04FF4805554E705F5804565 +:1050D000F8037FF556AF20684FF48031BA03816042 +:1050E0000AD478030FD4380313D4204600F026FAEC +:1050F00030073FF548AF4EE7204600F031FA300761 +:105100003FF541AF47E705F5004530073FF53BAFB9 +:1051100041E705F5803530073FF535AF3BE745F012 +:1051200010050AE045F0200507E045F0400504E0E1 +:1051300045F0800501E045F480752068816921F023 +:10514000700181612068042141602DB1606A2843AB +:1051500060622046FFF71EFE01B0BDE8F08F000040 +:10516000B0B5C8B1044690F8200010B9204600F050 +:1051700071F82068016841F00101016000F0D8FC7D +:10518000054600BF20684168C90707D100F0D0FC80 +:10519000401B0B28F6D312E00120B0BD016821F0BE +:1051A0000201016000F0C4FC054600BF20684168B0 +:1051B00089070DD500F0BCFC401B0B28F6D3606AB4 +:1051C000052140F400306062012084F82010B0BD59 +:1051D000217E0268012922F0800208BF803202602D +:1051E000617E0268012922F0400208BF403202605D +:1051F000A17E0268012922F0200208BF203202604D +:10520000E17E0268012922F0100218BF103202600C +:10521000217F0268012922F0080208BF08320260DB +:10522000617F0268012922F0040208BF0432026093 +:10523000D4E901C2D4E9033561691A432A43114311 +:10524000ACF101021143C16100200121606284F8C8 +:105250002010B0BD70B586B0006846F60002C4F2FA +:10526000000200219042CDE90411CDE90211019123 +:1052700037D046F20041C4F20001884240F08C80F1 +:105280004CF24C51C2F201010A6843F64000C4F2EC +:105290000200531C0B6052B900210091016841F0DB +:1052A00000710160016801F0007100910099002116 +:1052B000009150F8101C152441F0080140F8101C12 +:1052C00050F8100C142500F00800009000980320FE +:1052D000019040F20040C4F2020000F50060132685 +:1052E00037E043F64000C4F202000091016841F04B +:1052F00080610160016801F08061009100994CF2C9 +:105300004C51C2F201010A68531C0B6052B90021D2 +:105310000091016841F000710160016801F00071C5 +:10532000009100990021009150F8101C412441F097 +:10533000020140F8101C50F8100C402500F002004B +:10534000009000986020019040F200403F26C4F297 +:1053500002000221029100210391032104910921FD +:10536000059101A900F00AFB30460521002200F05A +:105370009BFD304600F094FD28460521002200F0F8 +:1053800093FD284600F08CFD20460521002200F008 +:105390008BFD204600F084FD06B070BD80B5FDF7A2 +:1053A000B5FB032808BF80BD40F2C001C2F2000176 +:1053B000342210FB0210C069002818BF804780BD4E +:1053C00080B5FDF7A3FB032808BF80BD40F2C001F4 +:1053D000C2F20001342210FB02108069002818BFBD +:1053E000804780BD80B5FDF791FB032808BF80BDD5 +:1053F00040F2C001C2F20001342210FB0210406AE8 +:10540000002818BF804780BD80B5FDF77FFB0328CB +:1054100008BF80BD40F2C001C2F20001342210FB7F +:105420000210006A002818BF804780BD80B5FDF7D4 +:105430006DFB032808BF80BD40F2C001C2F200012D +:10544000342210FB0210806A002818BF804780BDFC +:10545000B0B5044690F8200001281DD1022084F840 +:1054600020002068016821F00101016000F060FB6C +:10547000054600BF20684068C00713D000F058FB05 +:10548000401B0B28F6D3606A40F4003060620520B0 +:1054900084F820000120B0BD606A40F40020606202 +:1054A0000120B0BD00206062B0BD000080B5FDF7F6 +:1054B0002DFB032808BF80BD40F2C001C2F20001ED +:1054C000342210FB0210C068002818BF804780BD3E +:1054D00080B5FDF71BFB032808BF80BD342148437E +:1054E00040F2C001C2F200010858002818BF8047EE +:1054F00080BD000080B5FDF709FB032808BF80BD13 +:1055000040F2C001C2F20001342210FB0210006917 +:10551000002818BF804780BD80B5FDF7F7FA032843 +:1055200008BF80BD40F2C001C2F20001342210FB6E +:1055300002104068002818BF804780BD80B5FDF785 +:10554000E5FA032808BF80BD40F2C001C2F20001A5 +:10555000342210FB02104069002818BF804780BD2C +:1055600080B5FDF7D3FA032808BF80BD40F2C00123 +:10557000C2F20001342210FB02108068002818BF1C +:10558000804780BD80B5FDF7C1FA032808BF80BD04 +:1055900040F2C001C2F20001342210FB0210C06AC6 +:1055A000002818BF804780BD70B5866D044600F0A6 +:1055B000BFFA94F83510022925D105462068216CE0 +:1055C000026822F016020260426922F08002426103 +:1055D00009B9A16C19B1016821F0080101600168E5 +:1055E00021F00101016000BF20680068C0070ED0F3 +:1055F00000F09EFA401B0628F6D3202060650320A9 +:1056000084F835000CE080206065012008E0E06D42 +:105610003F2101FA00F0B060012084F8350000203D +:10562000002184F8341070BD90F83510022909D19A +:10563000052180F835100068016821F00101016042 +:10564000002070478021416501207047F0B581B08E +:1056500004460020009040F20000C2F20000026800 +:10566000D4E9166048F2B51337680821C1F64E3305 +:1056700081403942A2FB03250CD0226813685B07E6 +:1056800008D5136823F004031360B160616D41F025 +:105690000101616501218140394208D022685269C7 +:1056A000120604D5B160616D41F00201616504210B +:1056B0008140394208D022681268920704D5B1604F +:1056C000616D41F00401616510218140394215D0BE +:1056D00020680268120711D5B160026801685203A0 +:1056E00006D4C90506D4016821F00801016001E073 +:1056F000080342D4216C09B120468847E16D20207F +:1057000000FA01F23A4244D020680368DB0640D533 +:10571000B26094F835300268052B1ED122F01602D3 +:105720000260426922F080024261226C0AB9A26CD6 +:105730001AB1026822F0080202603F208840B0607F +:10574000012084F83500216D0020002984F8340000 +:1057500040D02046884701B0F0BD0168520310D404 +:10576000C90512D4016821F010010160012084F8FC +:105770003500002084F8340007E0A16C0029BBD17B +:10578000BCE7080301D4616C00E0E16B09B120467D +:105790008847606DF0B1606DC00717D0052084F8B0 +:1057A00035002068A90A026822F00102026000BFE9 +:1057B000009A01328A42009202D80268D207F7D1D9 +:1057C000012084F83500002084F83400E16C09B130 +:1057D0002046884701B0F0BD2DE9F041044600F0B5 +:1057E000A7F9C4B10546022084F8350000202168DD +:1057F00084F83400086820F00100086026683068EA +:10580000C0070BD000F094F9401B0528F6D90321FE +:105810002022032042E00120BDE8F081306848F2F8 +:105820003F01CFF21001251D00EA010C2ECDD4E975 +:10583000050E41EA0C01114319432943D4E90778C5 +:10584000084340EA0E01606A3943042841EA08012E +:1058500003D1D4E90B231143194331607169042842 +:1058600021F0070141EA00050CD1D4E90A1045EA0C +:10587000010538B12046FEF715FB18B10121402281 +:1058800001200BE020467561FEF7EEFAE16D3F2244 +:1058900002FA01F18160002201210020626584F892 +:1058A0003510BDE8F0810000B0B5044690F8340032 +:1058B000012828D0012084F83400A56D94F8350023 +:1058C00001281DD1022084F83500002060652046A3 +:1058D000FEF710FBE26D3F23206803FA02F2216C11 +:1058E000AA60026842F01602026019B1016841F034 +:1058F00008010160016841F0010101600020B0BDB4 +:10590000002084F834000220B0BD0000B0B5044689 +:1059100000F00EF9054640F25400C2F20000007893 +:10592000611C18BF044400BF00F002F9401BA042F4 +:10593000FAD3B0BD70B54CF20C5604460025C2F245 +:10594000010603E00135102D08BF70BD24FA05F0F3 +:10595000C007F7D056F82500002818BF8047F1E7A8 +:1059600080B543F61441C4F201010A68024208BF3F +:1059700080BD0860FFF7DEFF80BD00002DE9F04F1D +:1059800083B000F13E4202F1FF724FEAB22241F6CB +:1059900000470192C4F2020708224FF0010E0025D1 +:1059A0004FF0000A4FF00008B84208BF07220092EB +:1059B0000AE000BF08F101080AF1040AB8F1100F6B +:1059C00005F1020500F0A4800C680EFA08FB14EA49 +:1059D0000B09EFD04C6804F0030CACF1010EBEF1E2 +:1059E000010F11D80322876802FA05F6CA68B74387 +:1059F000AA403A4382604268C4F3001722EA0B02CD +:105A000007FA08F73A434260BCF1030F1CD0C268A2 +:105A100003238E6803FA05F7BA4306FA05F73A43FB +:105A2000BCF1020FC2600FD16FF0030202EA58020C +:105A300002440AF01C060F23176A03FA06F40B69E6 +:105A4000A743B3403B431362026803234F68AB4054 +:105A50009A4307F00303AB401A4317F4403F4FF05B +:105A6000010E0260A6D0002243F644030292C4F263 +:105A700002031A6843F6004442F480421A601A682E +:105A8000C4F2010402F480420292029A28F0030256 +:105A90004FF6084B2244CFF6FF7B52F80B300AF04A +:105AA0000C070F26BE4023EA060C019B009E072B25 +:105AB00038BF1E4606FA07F747EA0C0342F80B30D8 +:105AC000A2684B6842EA090743F60C4CDE0258BF55 +:105AD00022EA0907A760C4F2010CDCF800209E024C +:105AE00042EA090758BF22EA0907CCF80070626849 +:105AF0009E0342EA090758BF22EA09076760226845 +:105B0000DB0342EA090358BF22EA0903236051E795 +:105B100003B0BDE8F08F00000069084018BF012005 +:105B200070470000002A08BF090481617047000027 +:105B30004EF23450C2F2010000687047F0B581B0F7 +:105B4000B0B3044690F83D0028B9002084F83C002A +:105B5000204600F0BFF8242084F83D00206801684A +:105B600021F001010160016841F400410160016818 +:105B700021F40041016000F061FA48F28041C0F276 +:105B80001E0140F60012656888424FF00001C0F225 +:105B90003D0248F2A16C4FF0000338BF0121904252 +:105BA000C0F2010C38BF0123654538BF0B4613B165 +:105BB000012001B0F0BD4DF68361C4F21B31A0FBA2 +:105BC000011221684FEA924E4B684FF4967623F00B +:105BD0003F0343EA92434B6044F6D3530F6A0EFBF4 +:105BE00006F6C1F26203A6FB033627F03F03B709AE +:105BF000654538BF970C7A1C1A430A62CA6948F295 +:105C0000A0674CF6FF73C0F20107BD4222EA030C05 +:105C10000AD801386A00B0FBF2F001306FF31F3090 +:105C2000042898BF04202BE0A368A0F1010E9BB1CB +:105C300019206843BEFBF0F00422013062F31F30EC +:105C4000000512D09BB119206843BEFBF0F004227E +:105C5000013062F31F3011E005EB4500BEFBF0F0B0 +:105C600001306FF31F300005ECD1012008E005EB97 +:105C70004500BEFBF0F001306FF31F3040F40040F0 +:105C800040EA0C00C8610868D4E9072320F0C0008E +:105C9000104318430860886848F2FF3204F10C078B +:105CA00090438CCF18431043A6698860C86820F0E1 +:105CB000FF0038433043C860086840F001000860C6 +:105CC00000202021206484F83D10206384F83E00E9 +:105CD00001B0F0BDB0B586B0006845F60001C4F271 +:105CE000000100248842CDE90444CDE90244019436 +:105CF00031D045F20041C4F20001884254D1002461 +:105D000043F630050094C4F20205286801A940F06A +:105D100002002860286800F00200009000984FF40C +:105D2000407001901220CDE9020403200490042069 +:105D3000059040F20040C4F20200FFF71FFE0094FD +:105D4000286940F400102861286900F400100090D0 +:105D5000009806B0B0BD43F630050094C4F20205C9 +:105D60002868122140F020002860286800F02000F8 +:105D7000009000980320019004900420059040F2C8 +:105D80000040C4F20200CDE9021400F5805001A9E0 +:105D9000FFF7F4FD0094286940F480002861286929 +:105DA00000F480000090009806B0B0BD40F25400AE +:105DB0004EF23451C2F20000C2F2010100780A68CA +:105DC000104408607047000080B543F60040C4F2FC +:105DD0000200016841F400710160016841F48061D2 +:105DE0000160016841F480710160032000F06CF8EB +:105DF0000F2000F005F800F02BF8002080BD000017 +:105E0000B0B540F25402C2F2000240F20001127832 +:105E1000C2F200014FF47A730968B3FBF2F2044650 +:105E2000B1FBF2F1084601F05DF80F2C4FF00105CF +:105E30000CD858B94FF0FF3021460022002500F061 +:105E400033F840F25800C2F2000004602846B0BDAA +:105E500080B582B0002043F640010190C4F20201F7 +:105E60004A6842F480424A604A6802F480420192E1 +:105E7000019A00900868002240F08050086008688D +:105E80000F2100F08050009000986FF0010000F0AA +:105E90000BF802B080BD000080B504F021FF80BD8A +:105EA00080B504F031FF80BD70B514460D4606463E +:105EB00004F03AFF2946224603F078F801463046BE +:105EC00004F03AFF70BD000080B504F04FFF80BDC4 +:105ED0002DE9F041002800F08B8043F60808C4F259 +:105EE00002080446D8F8F8030D4600F0070088427F +:105EF00007D288F8F853D8F8F80300F00700A84252 +:105F000076D12068810717D5410705D5D8F800104C +:105F100041F4E051C8F80010010705D5D8F8001089 +:105F200041F46041C8F80010D8F80010A26821F0D0 +:105F3000F0011143C8F80010C0073FD1D8F8F803AA +:105F400000F00700A84207D988F8F853D8F8F803FA +:105F500000F00700A8424BD12068410707D5D8F8C8 +:105F60000010E26821F4E0511143C8F80010000766 +:105F700008D5D8F80000216920F4604040EAC1004B +:105F8000C8F8000000F07EF8D8F8001040F694023F +:105F9000C1F30311C0F60102515C40F2000220FA85 +:105FA00001F140F25800C2F200000068C2F20002A3 +:105FB0001160FFF725FF0020BDE8F0816068811EB9 +:105FC000022907D258F8081C89015CBF0120BDE8EE +:105FD000F08110E0012807D158F8081C89035CBF44 +:105FE0000120BDE8F08106E058F8081C890702D4BA +:105FF0000120BDE8F081D8F8001021F0030108432A +:10600000C8F80000FFF794FD064641F2883700BF4C +:10601000D8F80000616800F00C00B0EB810F8DD063 +:10602000FFF786FD801BB842F2D90320BDE8F0815E +:1060300040F20000C2F200000068704780B5FFF730 +:10604000F7FF43F60801C4F20201096840F6A40212 +:10605000C1F38221C0F60102515CC84080BD00003E +:1060600080B5FFF7E5FF43F60801C4F202010968B5 +:1060700040F6A402C1F34231C0F60102515CC840AF +:1060800080BD000010B543F60404C4F20204606849 +:1060900000F00C0008280AD0042819BF42F2004082 +:1060A000C0F2F40041F60030C0F2B70010BD206825 +:1060B00021682368490241F60031C0F2B70100F0BF +:1060C0003F02C3F388105CBF42F20041C0F2F4010A +:1060D000A1FB00010023FAF70DF921680222C1F3A8 +:1060E000014102EB4101B0FBF1F010BD2DE9F0419F +:1060F00082B0002800F0A2800446007843F6000633 +:10610000C007C4F2020643D0B06800F00C000428B7 +:1061100005D1306880033BD56068C8BB8EE0B068AD +:1061200000F00C00082802D170684002F1D46568C4 +:10613000B5F5A02F0AD0B5F5803F0BD0306820F41C +:1061400080303060306820F4802006E0306840F411 +:1061500080203060306840F480303060FFF7E8FC29 +:10616000002D054611D000BF3068800310D4FFF722 +:10617000DFFC401B6428F7D922E100BFFFF7D8FC01 +:10618000401B64284FF0030055D830688003F5D4D5 +:10619000207880071AD5B06810F00C0F09D0B068CD +:1061A00000F00C00082840F08A807068400200F17E +:1061B00086803068800702D5E06801283ED13068CB +:1061C000216920F0F80040EAC10030602078000723 +:1061D00038D4207840074CD4A5695DB3B06800F08E +:1061E0000C00082840F09E80012D27D07068E169DE +:1061F00000F480028A4221D1216A00F03F028A42E3 +:106200001CD147F6C071626A0140B1EB821F15D103 +:10621000A26A0023CFF6FF7303EBC23200F44031D1 +:106220006FF30F02914209D1E16A00F07060B0EBA8 +:10623000016F03D1002002B0BDE8F081012002B05F +:10624000BDE8F0816069002840F20000C4F24720F8 +:1062500057D00121C0F8801EFFF76AFC054600BF39 +:10626000706F8007B5D4FFF763FC401B0228F7D995 +:10627000A6E0306C10F080580AD100200190306CFC +:1062800040F080503064306C00F0805001900198F4 +:1062900047F20007C4F200073868C00524D4386804 +:1062A00040F480703860FFF743FC05463868C0054D +:1062B0001AD4FFF73DFC401B0228F7D980E0E068C4 +:1062C000002851D00020C4F2472001210160FFF7CF +:1062D0002FFC0546306880073FF571AFFFF728FCBB +:1062E000401B0228F6D96BE0A568052D50D0012D82 +:1062F00052D0306F20F001003067306F20F0040082 +:106300004DE00021C0F8801EFFF712FC054600BFDB +:10631000706F80077FF55DAFFFF70AFC401B022816 +:10632000F6D94DE00027C4F2472700203866FFF772 +:10633000FFFB022D05460BD13068800158D5FFF7D1 +:10634000F7FB401B02284FF00300F5D973E700BFAD +:10635000306880017FF56EAFFFF7EAFB401B022833 +:106360004FF00300F4D966E70020C4F24720002173 +:106370000160FFF7DDFB0546306880077FF526AF3B +:10638000FFF7D6FB401B02284FF00300F4D952E779 +:10639000306F40F004003067306F40F0010030672C +:1063A000FFF7C6FB002D054641F2883714D000BF29 +:1063B000306F800713D4FFF7BBFB401BB842F7D9FF +:1063C000032002B0BDE8F081FFF7B2FB401BB842EA +:1063D0004FF003003FF62FAF306F8007F4D4B8F1D1 +:1063E000000F7FF4F9AE306C20F080503064F3E69B +:1063F00004F11C052FCD08430021CFF6FF7140EAC0 +:10640000821001EBC3316FF30F0140EA05600843CE +:10641000706001203866FFF78BFB0446306880010E +:106420003FF508AFFFF784FB001B02284FF0030085 +:10643000F4D900E780B503F0B1F8022808BF80BDA9 +:1064400040F22C11C2F2000101EB401080690028DB +:1064500018BF804780BD000070B538B10446406A5F +:1064600030B10020206104F1140007E0012070BD6C +:106470006068B0F5827F03D004F11C000021016048 +:106480000026A66294F8510020B9204684F8506096 +:1064900000F03CF8022084F8510094E80F0001F469 +:1064A0008271056802F4044225F04005056011443C +:1064B00003F400622369114403F00202636911448A +:1064C00003F00102A369E569114403F40072114469 +:1064D00005F03802256A114405F08002A56A1143CF +:1064E00005F4005211430160626A042101EA13417C +:1064F00002F0100211444160C16921F40061C161E0 +:106500000120666584F85100304670BD2DE9F04FDA +:1065100087B0044643F200070068C4F20107002672 +:10652000B8420696CDE904660396029602D007B0FB +:10653000BDE8F08F43F630000196C4F202004169D5 +:1065400002AD41F480514161416946F2404801F495 +:10655000805101910199019601684FF0020941F0C3 +:106560000201016001684FF0030A01F0020101918C +:106570000199019601684FF0050B41F0010101609E +:106580000068294600F0010001900198182002904F +:1065900007F55440C4F20208CDE90396CDF814A0E3 +:1065A000CDF818B0FFF7EAF98020CDE9020904A878 +:1065B00080E8400C07F550402946FFF7DFF94CF61C +:1065C000BC65C2F201054FF440304FF0C0674FF494 +:1065D0008069C5E908062846C5E90087C5E902665D +:1065E000C5E90496C5E90666FFF7F6F8002818BF66 +:1065F000FDF77AFEE564AC6340F2B05508F118008F +:10660000C2F200054021C5E9000705F1080000229B +:1066100080E806024FF40030C5E908022846C5E9C3 +:106620000522EA61FFF7D8F8002818BFFDF75CFEE5 +:10663000A564AC6307B0BDE8F08F00002DE9F04120 +:1066400082B0044690F85100012815D10E46002969 +:106650004FF0010060D01746002A5DD060681D46EB +:10666000B0F5827F02D1A068002858D0FFF760FA09 +:1066700094F85010012903D1022002B0BDE8F08146 +:106680008046012084F85000042084F85100002046 +:106690006065A663A787E7872063A086E086A16878 +:1066A0002064B1F5004F606408D12068016821F0D2 +:1066B00040010160016821F48041016020680168A7 +:1066C000490603D4016841F040010160E168E08FB0 +:1066D00091B3002855D06E1C0BE000BFC068A16BC1 +:1066E00021F8020BA163E08F0138E087E08F0028DA +:1066F00047D020688168C907F0D1FFF719FA002E4A +:10670000F4D0A0EB0800A842F0D3012084F8510097 +:10671000002084F85000032002B0BDE8F08104207E +:1067200084F851002046314632463B46009500F041 +:106730009FF902B0BDE8F08118B36E1C0BE000BFFA +:10674000007BA16B0870A06B0130A063E08F013863 +:10675000E087E08FA8B120688168C907F0D1FFF712 +:10676000E7F9002EF5D0A0EB0800A842F1D30120F4 +:1067700084F85100002084F85000032002B0BDE8E6 +:10678000F08120462946424602F07AFE00281CBFCE +:1067900020206065012084F85100002084F850001A +:1067A000606D002818BF012002B0BDE8F081000034 +:1067B00010B5044690F8510001281CBF022010BDFE +:1067C00013460A4600294FF0010018BF002B00D1E4 +:1067D00010BDA06858B96168B1F5827F07D1042067 +:1067E00084F851002046114600F03EFA10BD94F89E +:1067F0005010012904BF022010BD012184F850105F +:10680000042184F851100021B0F5004F6165A263A6 +:10681000A387E387C4E91011A186E18608D1206827 +:10682000036823F040030360036823F4804303609C +:10683000E06C49F2293E49F24D33C0F6000EC0F635 +:106840000003C0E90F3E49F20533C0F60003D4F857 +:1068500000C0C0E91331E38F0CF10C01FFF724F8FD +:1068600040B1606D40F010006065002084F8500079 +:10687000012010BD21680868400603D4086840F074 +:1068800040000860002084F850004A6842F020026E +:106890004A604A6842F001024A6010BD80B502F0C9 +:1068A0007DFE022808BF80BD40F22C11C2F200011B +:1068B00001EB40104068002818BF804780BD0000F1 +:1068C00080B502F06BFE022808BF80BD40F22C119B +:1068D000C2F2000101EB40100069002818BF804798 +:1068E00080BD00002DE9F04182B01D4616460F46DE +:1068F0000446FFF71DF994F8511001290DD1804687 +:10690000002F4FF0010018BF002E02D102B0BDE8E9 +:10691000F08194F85000012803D1022002B0BDE8B4 +:10692000F081012084F85000032084F851000020F9 +:1069300060652763A686E686A063A087E087A168D6 +:10694000C4E91000B1F5004F08D12068016821F0BA +:1069500040010160016841F48041016020680168E4 +:10696000490603D4016841F0400101606168731E6B +:10697000E268B1FA81F1B3FA83F349095B09B2F530 +:10698000006F41EA030124D139B1216B0988C1604C +:10699000B81C2063E08E0138E086E08E002846D0E7 +:1069A0006E1C09E0216B31F8022BC2602163E08E7E +:1069B0000138E086E08ED0B3206881688907F1D481 +:1069C000FFF7B6F8002EF5D0A0EB0800A842F1D3EF +:1069D00023E039B139780173206B01302063E08EF8 +:1069E0000138E086E08E10B36E1C0AE0216B097856 +:1069F0000173206B01302063E08E0138E086E08E69 +:106A0000A8B1206881688907F0D4FFF791F8002EBB +:106A1000F5D0A0EB0800A842F1D3012084F8510082 +:106A2000002084F85000032002B0BDE8F081204629 +:106A30002946424602F06CFD00281CBF20206065FC +:106A4000A06838B9002001902068C1680191806871 +:106A500001900198012084F85100002084F8500032 +:106A6000606D002818BF012002B0BDE8F081000071 +:106A70002DE9F04381B01E4615460F460446FFF748 +:106A800057F894F851108146012909D06068B0F593 +:106A9000827F14D104294FF0020007D1A16829B9DF +:106AA000002F4FF0010018BF002D02D101B0BDE84A +:106AB000F083002EFAD094F85000012803D1022070 +:106AC00001B0BDE8F083012084F8500094F8510033 +:106AD000002104281CBF052084F851006165A563CE +:106AE000E687A6872763E6862068A6862164616418 +:106AF0000168490603D4016841F040010160616802 +:106B0000731EE268B1FA81F1B3FA83F3DDF82080F5 +:106B100049095B09B2F5006F41EA030139D139B186 +:106B2000216B0988C160B81C2063E08E0138E086C3 +:106B3000012608F1010500BFE08E10B9E08F0028A2 +:106B40006CD02068816889070CD5E18E012E09D1AF +:106B500041B1216B002631F8022BC2602163E18E26 +:106B60000139E1868168C9070AD0E18F41B1C06867 +:106B7000A16B012621F8020BA163E08F0138E087A9 +:106B8000FEF7D6FF002DD7D0A0EB09004045D3D3A8 +:106B90003AE039B139780173206B01302063E08E1F +:106BA0000138E086012608F1010500BFE08E08B932 +:106BB000E08F98B32068816889070DD5E18E012E9A +:106BC0000AD149B1216B002609780173206B01308D +:106BD0002063E08E0138E08620688168C9070BD009 +:106BE000E18F49B1C068A16B01260870A06B01302C +:106BF000A063E08F0138E087FEF79AFF002DD5D023 +:106C0000A0EB09004045D1D3012084F851000020B9 +:106C100084F85000032001B0BDE8F08320464146CF +:106C20004A4602F075FC40B120206065002084F8DF +:106C30005000012001B0BDE8F083A06838B9002001 +:106C400000902068C1680091806800900098012041 +:106C500084F85100002084F85000606D002818BFAF +:106C6000012001B0BDE8F08370B5044690F85100F2 +:106C7000012806D100294FF0010018BF002A0CD1CD +:106C800070BD6568B5F5827F0ED104284FF0020013 +:106C9000F6D1A568002DEDD0F2E7002B08BF70BD3E +:106CA00094F85000012801D1022070BD012084F821 +:106CB000500094F85100002604281CBF052084F8D9 +:106CC000510066652163A386E386A263A387E387F9 +:106CD000C4E9106694F8510049F2293149F2413370 +:106CE000C0F60001C0F60003042808BF0B4649F2B5 +:106CF0004D3049F22541C0F60000C0F6000108BF42 +:106D00000146E06C2568C0E90F1349F20531C0F671 +:106D10000001C0E91316E38F05F10C01FEF7C4FD75 +:106D200038B1606D40F010006065012084F850605B +:106D300070BD2268216BA06C536843F0010353605F +:106D4000C0E90F66C0E91366E38E0C32FEF7ACFDB6 +:106D500040B1606D40F010006065002084F8500084 +:106D6000012070BD21680868400603D4086840F01F +:106D700040000860002084F850004A6842F0200279 +:106D80004A604A6842F002024A6070BD10B504468B +:106D900090F8510001280AD100294FF0010018BFD6 +:106DA000002A00D110BD94F85000012801D1022022 +:106DB00010BD012084F850000320002384F8510006 +:106DC00063652163A286E286A363C4E91033A387C7 +:106DD000E387A068B0F5004F08D12068026822F070 +:106DE00040020260026842F480420260A06C49F2F4 +:106DF000353C49F2B532C0F6000CC0F60002C0E9DD +:106E00000F2C49F20532C0F60002D4F800E0C0E9C8 +:106E10001323E38E0EF10C02FEF746FD40B1606DC8 +:106E200040F010006065002084F85000012010BD83 +:106E300021680868400603D4086840F040000860F4 +:106E4000002084F850004A6842F020024A604A68F4 +:106E500042F002024A6010BD80B502F09FFB02289A +:106E600008BF80BD40F22C114001C2F20001085859 +:106E7000002818BF804780BD80B502F08FFB022834 +:106E800008BF80BD40F22C11C2F2000101EB40109E +:106E9000C068002818BF804780BD000080B502F0A0 +:106EA0007DFB022808BF80BD40F22C11C2F2000118 +:106EB00001EB40108068002818BF804780BD0000AB +:106EC00080B502F06BFB022808BF80BD40F22C1198 +:106ED000C2F2000101EB40104069002818BF804752 +:106EE00080BD000080B502F095FD80BD70470000B8 +:106EF00070470000B0B590F83C20012A04BF022082 +:106F0000B0BD01F108053CCDD1E900CE23F47C539E +:106F100022F470521A432EF4F0431A432CF4E04347 +:106F20001A4324F4C0431A432A43C96922F4804215 +:106F3000036811435964002180F83C100846B0BD35 +:106F400010B590F83C20012A4FF0020252D00123E4 +:106F500080F83C3080F83D200268D2F804E0D2F896 +:106F600008C00C682EF07003234341F2FF74C4F292 +:106F70000004A24253600DDC40F2FF73C4F2000330 +:106F80009A4215DCB2F1804F29D040F20043C4F29E +:106F9000000322E040F2FF33C4F201039A4212DC04 +:106FA00041F60003C4F200039A4218D0002312E015 +:106FB00040F60003C4F200039A4210D040F60043AA +:106FC000C4F2000309E044F20003C4F201039A4250 +:106FD00005D040F20043C4F201039A4204D149684B +:106FE0002CF08003194391600121002280F83D10AC +:106FF00080F83C20104610BD002804BF01207047D7 +:1070000010B5044690F83D0028B9002084F83C00F3 +:10701000204600F01FF8022084F83D002068211D62 +:1070200002F07EFD012084F8460084F83E0084F8DA +:107030003F0084F8400084F8410084F8420084F85E +:10704000430084F8440084F8450084F83D000020A3 +:1070500010BD000080B586B0006844F20042C4F262 +:10706000010200219042CDE90411CDE90211019104 +:107070003AD00021C4F20101884243D1002043F6F6 +:1070800044010090C4F202010A6842F001020A6061 +:107090000A6802F001020092009A009051F8140C64 +:1070A00040F0100041F8140C51F8140C012100F0CC +:1070B0001000009000984FF4C04001900220029010 +:1070C000CDE9031041F200000591C4F2020001A9CC +:1070D000FEF754FC182005210022FEF7E5FE1820DB +:1070E000FEF7DEFE06B080BD43F644000091C4F218 +:1070F0000200016841F400310160006800F40030D2 +:107100000090009806B080BD10B5044690F83C0091 +:1071100001284FF0020008BF10BD012284F83C2076 +:1071200084F83D0020684FF6777382689A43826046 +:107130000A684F2A0FDC1F2A22DD202A23D0302A9A +:1071400021D0402A4DD14B68CA68194602F068FE2A +:10715000206840213BE06F2A17DDB2F5005F20D0A8 +:10716000B2F5805F2AD0702A3BD1D1E9012CCB68DF +:10717000614602F07DFD2068816841F077011AE0E8 +:107180000AB1102A2DD1114621E0502A18D0602AC8 +:1071900027D14B68CA68194602F054FE2068602166 +:1071A00015E0D1E9012CCB68614602F061FD206851 +:1071B000816841F48041816000200BE0002009E0FB +:1071C0004B68CA68194602F02BFE2068502102F075 +:1071D0005BFD0020012184F83D10002184F83C1063 +:1071E00010BD0120F6E7000070470000B0B504466E +:1071F0000068C168026902EA0105A9071DD4680791 +:1072000031D4280747D4E8065CD4E80773D12806B0 +:107210007BD4680606D520686FF0400101612046E6 +:1072200000F0E4F9A80658BFB0BD20686FF0200157 +:1072300001612046FFF75CFEB0BD6FF00201016105 +:10724000012121778069800703D02046FFF7CCFF1A +:1072500005E0204600F0B6F8204600F031F90020A5 +:1072600020776807CDD520686FF004010161022105 +:107270002177806910F4407F03D02046FFF7B4FFE8 +:1072800005E0204600F09EF8204600F019F90020A5 +:1072900020772807B7D520686FF008010161042125 +:1072A0002177C069800703D02046FFF79DFF05E0E6 +:1072B000204600F087F8204600F002F900202077F1 +:1072C000E806A2D520686FF010010161082121773E +:1072D000C06910F4407F03D02046FFF785FF05E02A +:1072E000204600F06FF8204600F0EAF800202077F2 +:1072F000E8073FF48CAF20686FF001010161204680 +:1073000000F072F928067FF584AF20686FF08001E5 +:1073100001612046FFF7EAFD68067FF583AF7AE753 +:1073200080B586B0006844F20042C4F20102002138 +:107330009042CDE90411CDE9021101911FD0002145 +:10734000C4F2010188423BD10020009043F6300096 +:10735000C4F2020001684FF0020C41F0100101601C +:107360000068012100F01000009000984FF40070B8 +:10737000019041F20000C4F20200012318E043F63C +:1073800030000091C4F202000268032342F02002A0 +:10739000026000684FF0000C00F0200000900098A0 +:1073A0004020019041F20000C4F2020000F580602C +:1073B0000222CDE9022101A9CDE904C3FEF7DEFADC +:1073C00006B080BD70470000B0B5044690F83C00A0 +:1073D000012804BF0220B0BD0D464FEAB2010120D2 +:1073E000032984F83C0037D8DFE801F0020A1222B2 +:1073F0002068294602F050FC206850F8181F0EE063 +:107400002068294602F07AFC206850F8181F16E020 +:107410002068294602F0A8FC206850F81C1F41F0A3 +:1074200008010160016821F00401016029690FE091 +:107430002068294602F0CCFC206850F81C1F41F45B +:1074400000610160016821F480610160296909021D +:107450000268114301600020002184F83C10B0BD97 +:10746000002804BF0120704710B5044690F83D0085 +:1074700028B9002084F83C00204600F01FF80220C4 +:1074800084F83D002068211D02F04AFB012084F8A9 +:10749000460084F83E0084F83F0084F8400084F8F9 +:1074A000410084F8420084F8430084F8440084F8E2 +:1074B000450084F83D00002010BD0000704700002A +:1074C0007047000010B5044641B1082909D00429CD +:1074D00014BF04F1410004F13F0004E004F13E0058 +:1074E00001E004F14000007801281CBF012010BD1C +:1074F000022041B1082909D0042914BF84F84100B1 +:1075000084F83F0004E084F83E0001E084F8400085 +:107510002068012202F09AFB206841F2FF71C4F258 +:10752000000188420FDC40F2FF71C4F20001884282 +:1075300017DCB0F1804F49D040F20041C4F20001A5 +:10754000884243D049E040F2FF32C4F20102904247 +:1075500014DC41F60003C4F20003984236D0002345 +:1075600014E040F60001C4F2000188422ED040F63B +:107570000041C4F20001884228D02EE044F200030A +:10758000C4F20103984221D040F20043C4F2010347 +:10759000984222D1436C884243F400434364C2DDE5 +:1075A000904207DC41F60001C4F2000188420DD090 +:1075B000002107E044F20001C4F20101884205D035 +:1075C00040F20041C4F20101884206D1816801F015 +:1075D0000701062904BF002010BD016841F0010128 +:1075E0000160002010BD00007047000070470000DF +:1075F0007047000080B503F0DBF8052808BF80BDA8 +:107600004CF2505100EBC000C2F2010101EB8000CE +:107610000069002818BF804780BD0000B0B582B067 +:10762000036804461868D9685A6900F02F05202DB0 +:1076300001F0200505D125B1204603F0E3F802B0A2 +:10764000B0BD5FEA007C1EBF02F0010E01F4907233 +:1076500012EB0E024AD1226B0840C1063DD5012A29 +:107660003BD1002001901868019058680190019862 +:107670005869400642D4A08DE18DE28D002A1CBFDE +:10768000401A5FEA004101D102B0B0BD216851E863 +:10769000031F226821F4907142E80313002BF5D1F7 +:1076A000216851E8051F226821F0010142E8051315 +:1076B000002BF5D1202184F842100021216300BF66 +:1076C000216851E8031F226821F0100142E80313EA +:1076D000002BF5D10221616354E0010654D4400629 +:1076E000D2D5204603F04AF802B0B0BDC20718BF99 +:1076F00011F480725DD1420761D467E0E06B0168EC +:1077000049688AB2002A44D0A38D9A4241D2E185C9 +:10771000C069B0F5807F30D0206850E8030F216841 +:1077200020F4807041E80302002AF5D1206850E877 +:10773000050F216820F0010041E80502002AF5D17B +:10774000206850E8050F216820F0400041E805025C +:10775000002AF5D1202084F842000020206300BFD9 +:10776000206850E8030F216820F0100041E8030270 +:10777000002AF5D1E06BFDF717FF02206063A08DB2 +:10778000E18D401A81B20FE0204603F063F902B0A8 +:10779000B0BDA18D91427FF477AFC069B0F5807F15 +:1077A0007FF472AF022060632046FFF721FF02B032 +:1077B000B0BD626C42F001026264420706D5BEF1C0 +:1077C000000F03D0626C42F002026264820706D5A9 +:1077D000BEF1000F03D0626C42F004026264BCF19F +:1077E000000F06D55EEA050203D0626C42F0080283 +:1077F0006264626C002A3FF447AF0840800602D5FD +:10780000204602F0FFFF20684069616C00F04000F4 +:1078100001F00801401827D0204602F087FF2068B9 +:10782000406940061BD500BF206850E8050F21685D +:1078300020F0400041E80502002AF5D1E06B70B16C +:107840004AF2E151C0F600010165FDF7EDFE0028A6 +:107850003FF41AAFE06B016D884702B0B0BD20461F +:10786000FFF7C8FE02B0B0BD2046FFF7C3FE002000 +:10787000606402B0B0BD0000002804BF0120704762 +:1078800010B5044690F8410028B9002084F8400063 +:10789000204600F021F8242084F841002068C168C7 +:1078A00021F40051C160204603F010F820680169FE +:1078B00021F490410161416921F02A014161C168CF +:1078C00041F40051C16000202021606484F841101F +:1078D00084F84210606310BD2DE9F04387B0044680 +:1078E000006840F6FF71C4F2010188424FF00001C8 +:1078F0000691CDE90411CDE902115FDC44F20041AB +:10790000C4F20001884200F0B58044F60001C4F2E0 +:107910000001884240F04A81002643F6300001967B +:10792000C4F20200016941F480210161016901F49E +:107930008021019101990196016841F004010160E3 +:10794000006802A900F00400019001984FF4406023 +:1079500002900220CDE9030603200590072006903F +:107960000020C4F2020000F50060FEF707F84CF6B4 +:107970001C7546F22800C2F20105C4F202004FF065 +:1079800000614FF480624FF4807385E8430028461D +:10799000C5E90362C5E90566C5E907366E62FDF70C +:1079A0001BFF002818BFFCF79FFC272005210022A1 +:1079B000E563AC63FEF778FA272056E041F2004118 +:1079C000C4F20101884200F0828041F20001C4F259 +:1079D0000101884240F0EA80002643F6300001961B +:1079E000C4F202004169002441F010014161416983 +:1079F000C4F2020401F0100101910199019601689D +:107A000002AD41F00201016001684FF0020801F08F +:107A1000020101910199019601684FF0030941F0BB +:107A2000010101600068072700F001000190019842 +:107A30008020029004F580602946CDE90386CDF8C8 +:107A400014900697FDF79AFF4FF40070CDE90208F5 +:107A500020462946CDE904690697FDF78FFF2520CA +:107A600005210022FEF720FA2520FEF719FA07B0BB +:107A7000BDE8F083002043F630010190C4F202011A +:107A80000A6942F400320A610A6902F40032019282 +:107A9000019A01900A6842F008020A60096801F040 +:107AA000080101910199602102910221CDE90310A1 +:107AB00003200590072006900020C4F2020000F584 +:107AC000406002A9FDF75AFF07B0BDE8F083002629 +:107AD00043F630000196C4F20200416946F22808DC +:107AE00041F0200141614169C4F2020801F0200126 +:107AF000019101990196016841F04001016000681F +:107B000002A900F04000019001984FF484400290D7 +:107B10000220CDE9030603200590082006900020EE +:107B2000C4F2020000F5C050FDF728FF40F21065D6 +:107B300008F58060C2F200054FF020674FF48069BD +:107B4000C5E900072846C5E90266C5E90496C5E906 +:107B50000666C5E90866FDF73FFE002818BFFCF77A +:107B6000C3FBE563AC634CF67C7508F58F60C2F22D +:107B700001054021C5E9000705F1080080E842023F +:107B80002846C5E90566C5E907666E62FDF724FE6D +:107B9000002818BFFCF7A8FB472005210022A56399 +:107BA000AC63FEF781F94720FEF77AF907B0BDE82C +:107BB000F083000080B590F84230202B1CBF0220DB +:107BC00080BD00294FF0010318BF002A01D11846DB +:107BD00080BD0023036302F0E7FE0346184680BD24 +:107BE00080B502F0E5FD052808BF80BD4CF250517C +:107BF00000EBC000C2F2010101EB8000C068002868 +:107C000018BF804780BD000080B502F0D1FD052877 +:107C100008BF80BD4CF2505100EBC000C2F2010120 +:107C200001EB80008068002818BF804780BD0000FD +:107C3000B0B5044690F8410020281CBF0220B0BD1A +:107C40004FF00100C9B3002A134608BFB0BD4FF082 +:107C5000000C21202162A384E384C4F844C084F88A +:107C60004100A06B4AF2E16E4AF221752268C0F62B +:107C7000000EC0F60005C0E90FE54AF2F155C0F666 +:107C800000050432C0E9135CFDF70EFE30B1102090 +:107C90006064202084F841000120B0BD20686FF0AE +:107CA00040010160206850E8050F216840F0800025 +:107CB00041E80502002AF5D10020B0BD034690F846 +:107CC000410020281CBF0220704700294FF001000E +:107CD00018BF002A00D170471962002021219A8420 +:107CE000DA84586483F841101968CA6842F0800247 +:107CF000CA60704780B502F05BFD052808BF80BDF3 +:107D00004CF2505100EBC000C2F2010101EB8000C7 +:107D10004068002818BF804780BD000080B502F091 +:107D200047FD052808BF80BD4CF2505100EBC00054 +:107D3000C2F2010151F82000002818BF804780BD21 +:107D4000FEE7000045F6DF1110EE100AC5F63771A8 +:107D5000B6EE001AA1EB600020EE011A00EE100A48 +:107D600021EE002A22EE002AB7EE083A33EE422A2C +:107D700022EE000A21EE001A20EE011A33EE411A1B +:107D800020EE010A7047000040F26111884204BFF2 +:107D900001207047B0F5806F04BF03207047A0F248 +:107DA0009F60B0FA80F040094000704710B52DED9B +:107DB000088B88B3B0EE408A90ED010A90ED069AE8 +:107DC00090ED021A90ED07AA29EE000A38EE400A5B +:107DD0002AEE011A30EE41BA04461BEE100A02F0F8 +:107DE00077FF002808BFB0EE4B8A94ED030A94EDAC +:107DF000041A94ED052A20EE080A29EE011A30EE45 +:107E0000010A2AEE021A30EE010A84ED068A84ED98 +:107E1000079ABDEC088B10BD9FED020ABDEC088BE4 +:107E200010BD00BF00000000002808BF704710B55B +:107E3000F5EE400A0446C0ED000A0020F1EE10FA0B +:107E4000A061E0612EDD80EE200A9FED1E1A81EE1A +:107E5000000A07F06BFA9FED1C1AB7EE002A20EE1D +:107E6000011A31EE023A20EE000ABFEE005A30EE5F +:107E7000033A30EE055A32EE411A80EE034A35EEEF +:107E8000055A30EE010A85EE035A80EE030A34EEFD +:107E9000041A84ED034A84ED041A84ED054A84ED46 +:107EA000015A07E04FF07E519FED050AC4E9031027 +:107EB0006061606084ED020ABDE81040704700BF59 +:107EC00000000000DB0F4940F304B53F10B52DED75 +:107ED000048B10B3B0EE408A90ED030A90ED041AC3 +:107EE00090ED052A30EE010A30EE020A88EE009A83 +:107EF000044619EE100A02F0DBFE00282046B0EE20 +:107F0000480A08BFB0EE489A84ED069A84ED079AB5 +:107F1000FFF74CFFBDEC048B10BD9FED020ABDECDA +:107F2000048B10BD00000000B0B5012802D9FF206D +:107F300040B2B0BD40F29415C2F20005044655F8B7 +:107F4000200060B98820FAF75BFC002845F824007F +:107F5000EDD08821F8F722FC55F8240004700020A9 +:107F600040B2B0BD80B584B0D8B100F029F8014668 +:107F700000284FF0FC0015D08A888DF80C00009284 +:107F800008228DF804204FF0FF32CDF80520029230 +:107F900008786946FAF7C8FA002818BF4FF0FF3092 +:107FA00000E0FE2040B204B080BD000001288FBF79 +:107FB000002040F29411C2F2000151F820007047F5 +:107FC0002DE9F04128B3057880462846FFF7EEFFFB +:107FD000F8B1014690F88400D8B10A1D002309E0E9 +:107FE0000126002E08BFBDE8F08191F884600133BE +:107FF000B3420ED252F82340002CF1D02678AE4284 +:10800000EED16688B8F80270BE42E9D1002620465B +:10801000E7E70020BDE8F08110B50C4601460028D6 +:108020004FF0FE0018BF002C01D140B210BD084631 +:10803000FFF7C6FF20B1214600F0D4F840B210BDD2 +:10804000FC2040B210BD0000B0B52DED028B002821 +:108050006BD00D46002968D00446B5F801009FEDAD +:10806000340A0004DFED330A00BA102104F062F98B +:1080700084ED070AE8782979000140EA1110BBEE87 +:108080000E0AF3EE0E0A0C2104F054F984ED080AEE +:108090002879697900F00F00B0EE408A41EA0020AB +:1080A000BAEE080AF2EE080A0C2104F043F984ED56 +:1080B000090AA87994ED071A02EE100AB5EE401AE3 +:1080C000B8EE422AF1EE10FA84ED0A2A0BDA9FED9F +:1080D0001A2A00BF31EE021AB5EE401AF1EE10FA7C +:1080E000F8DB84ED071A94ED071A9FED132AB4EE1E +:1080F000421AF1EE10FA0ADB9FED103A31EE031A44 +:10810000B4EE421AF1EE10FAF8DA84ED071AE079CB +:1081100058B132EE411AB1EE482AB1EE400A84ED70 +:10812000071A84ED082A84ED090ABDEC028BB0BD64 +:10813000DA0F49C1DA0F4941DB0FC940DB0FC9C073 +:1081400070B538B104460078FFF7EEFE28B1FF2085 +:1081500040B270BDFE2040B270BD2078FFF726FF10 +:108160000028F4D090F8842005469AB1281D0021FB +:1081700005E000BF95F88420013191420AD250F801 +:108180002120002AF6D0528863889A42F2D1FD203D +:1081900040B270BD1F2ADAD83020FAF731FB002830 +:1081A000D5D030210646F8F7F9FA20686168C6E9AB +:1081B00000010020E2793072207861883276032253 +:1081C000FAF76CF818B13046FAF78EFABFE795F86F +:1081D000840005EB8001013085F88400002040B266 +:1081E0004E6070BD2DE9F04381B02DED048B84B05D +:1081F000044600284FF0FE0071D00D4600296ED0D5 +:1082000095ED001A95ED012A95ED023AE079B1EE6F +:10821000430AB1EE428AB1EE419A002802BFB0EEA5 +:10822000430AB0EE428AB0EE419ADFED300A9FED8C +:10823000301A102002F0E6FE8046FBEE0E0AB3EE86 +:108240000E1AB0EE480A0C2002F0DCFE9FED298ADF +:1082500095ED030A9FED281A0746F0EE480A0C2018 +:1082600002F0D0FE95ED040A8146B1EE041AF0EE5C +:10827000480A0C2002F0C6FE0646FAEE080AB2EEE4 +:10828000081AB0EE490A0C2002F0BCFE3A094FEA87 +:108290001923A5888DF8072022784FEA182143EA90 +:1082A0000713070A47EA06173609009508258DF8CF +:1082B00005108DF80C00694610468DF804508DF8B5 +:1082C00006808DF808308DF809908DF80A608DF8D9 +:1082D0000B70FAF729F9002818BF4FF0FF3040B2B1 +:1082E00004B0BDEC048B01B0BDE8F083DA0F49C1E6 +:1082F000DA0F4941000000000000FA43F0B587B0F2 +:10830000A0B3077805463846FFF750FEA8B390F8AB +:10831000841069B3011D002205E000BF90F884308D +:1083200001329A4224D251F82240002CF6D06388C0 +:108330006E88B342F2D1F4B169886D4638462A4658 +:108340000023F9F7A5FED0B1FAF71EFBD4E9042308 +:10835000801A48F2A162C0F201029941801A71F1BB +:10836000000024BF00202072FF2014E0FE2012E055 +:108370000024002CE0D1FC200DE0FC200BE00120CB +:108380002072FAF701FBC4E9040105F10D01204652 +:10839000FFF75AFE002040B207B0F0BDB0B501288B +:1083A00002D9FF2040B2B0BD4CF2E455C2F2010543 +:1083B000044655F8200060B94820FAF721FA002851 +:1083C00045F82400EDD04821F8F7E8F955F82400E5 +:1083D0000470002040B2B0BDB0B584B048B304789A +:1083E0000546204600F064F828B36988A1F201210F +:1083F0000A295BD8012202FA01F10A071DD111F006 +:10840000F00F30D040F2FF11009108218DF80410D8 +:108410000A3000216A4600BF00EB41035B7802EBA3 +:1084200041056B7110F8113001310429AB71F3D1A2 +:1084300031E0FE2037E0FC2035E04FF40071009180 +:1084400008218DF80410023000216A4600EB410338 +:108450005B7802EB41056B7110F811300131042992 +:10846000AB71F3D117E040F2FF21009108218DF8A4 +:108470000410123000216A4600EB41035B7802EBE6 +:1084800041056B7110F8113001310329AB71F3D143 +:108490000020ADF80B0069462046FAF745F80028A1 +:1084A00018BF4FF0FF3040B204B0B0BDFF20FAE774 +:1084B00001288FBF00204CF2E451C2F2010151F8B3 +:1084C0002000704748B102280BD0012814BF4FF696 +:1084D000FF704FF4804000B2704742F2107000B25B +:1084E000704747F2305000B270470000022905D2B1 +:1084F000A0F2012189B2072909D805E007D1A0F22D +:10850000052189B2062902D8013840B27047FF2000 +:1085100040B27047F0B581B008B307460078FFF766 +:10852000C7FFE0B1014690F84400C0B101F1180264 +:10853000002306E0012585B191F844500133AB4298 +:108540000DD252F82340002CF4D065887E88B542C5 +:10855000F0D100252046002DEED101B0F0BD002065 +:1085600001B0F0BD022884BFB7EE000A704740B2E8 +:1085700002A101EB800090ED000A7047000010425C +:108580002CA099410000803F70B538B104460078B6 +:10859000FFF704FF28B1FF2040B270BDFE2040B2BB +:1085A00070BD2078FFF784FF0028F4D090F84420B5 +:1085B00005469AB105F11800002104E095F8442021 +:1085C000013191420AD250F82120002AF6D0528877 +:1085D00063889A42F2D1FD2040B270BD0A2ADAD8EF +:1085E0005020FAF70DF90028D5D0064620686168BA +:1085F000C6E9000106F118002821F8F7CFF86279E2 +:108600002078618886F828200322F9F747FE18B100 +:108610003046FAF769F8BEE795F8440005EB8001AB +:10862000013085F84400002040B28E6170BD00002A +:1086300070B52DED048B00283ED005460078B0EED5 +:10864000408AFFF735FFC8B3B7EE000AB4EE408AA0 +:10865000F1EE10FAC8BFB0EE408ABFEE000AB4EEE9 +:10866000408A0446F1EE10FAB8BFB0EE408A68794D +:10867000B1EE489A0028284608BFB0EE489AFFF7A6 +:1086800049FFE8B12E7968883146FFF72FFF0028AF +:1086900018D405463046FFF715FF00EE100AB8EE75 +:1086A000C00A29EE000ABDEEC00A10EE100A04EB63 +:1086B00045014880002006E0FE2004E0FC2002E0A6 +:1086C000FC2000E0FF2040B2BDEC048B70BD000038 +:1086D0002DE9F04F87B0002852D004460078FFF70C +:1086E000E7FE00284ED0054690F8440000284BD005 +:1086F00005F11806E8464FF0010A40F2E93B4FF059 +:10870000000908E00121002941D095F8441009F141 +:10871000010989453AD256F82970002FF2D07A889B +:1087200061888A42EED1207842460023F9F7B0FCF6 +:1087300070B1FAF729F9D7E90823801A9941B0EB0B +:108740000B0071F1000016D300203876FC2013E0F6 +:1087500087F818A0FAF718F9C7E908013846414622 +:1087600000F06EFB07F108030FCB07F12C0C8CE82F +:108770000F00002000E0FF2000210029C5D106E005 +:10878000FE2004E0FC2002E0FC2000E0FC2040B2DF +:1087900007B0BDE8F08F000010B54CF66C6046F2F3 +:1087A0000041C2F20100C4F200010322002380E86C +:1087B0000E0000F10C014FF4102C4FF4001E4FF08E +:1087C000807481E808504FF4807184618183FCF7E4 +:1087D000C7FC002818BFFBF787FD10BD10B54CF68D +:1087E000946046F60001C2F20100C4F200010322C7 +:1087F000002380E80E0000F10C014FF4102C4FF420 +:10880000001E4FF0807481E808504FF4807184613D +:108810008183FCF7A5FC002818BFFBF765FD10BDA0 +:1088200080B582B0002043F630010190C4F202010D +:108830000A6842F400120A600A6802F40012019207 +:10884000019A00900868002240F4800008600868DF +:10885000052100F48000009000980C20FDF724FB17 +:108860000C20FDF71DFB392005210022FDF71CFB24 +:108870003920FDF715FB3A2005210022FDF714FBF6 +:108880003A20FDF70DFB3B2005210022FDF70CFBF4 +:108890003B20FDF705FB452005210022FDF704FBE9 +:1088A0004520FDF7FDFA02B080BD000080B549F615 +:1088B000092040F6B022C0F60000C0F601020021F7 +:1088C00002F02AFF40F21021C2F20001086049F6CE +:1088D000E96040F61022C0F60000C0F60102002157 +:1088E00002F01AFF80BD00002DE9F04F87B000268E +:1088F00043F630000696CDE90466CDE9026601969E +:10890000C4F202000168002441F002010160016824 +:10891000C4F2020401F0020101910199019601687B +:1089200004F5C05741F0400101600168002201F0E8 +:108930004001019101990196016841F00101016036 +:10894000016801F00101019101990196016841F06E +:1089500008010160016801F0080101910199019687 +:10896000016841F004010160016801F00401019116 +:1089700001990196016841F020010160016801F050 +:108980002001019101990196016841F08001016087 +:10899000016801F08001019101990196016841F09F +:1089A000100101600068402100F010000190019862 +:1089B0003846FDF7B7F804F5E05A50464FF4E05159 +:1089C0000022FDF7AFF82046102101224FF00108E8 +:1089D000FDF7A8F804F5805948464FF400610122DC +:1089E000FDF7A0F804F58060012101220090FDF759 +:1089F00099F8802002900220CDE903080590032019 +:108A000004F5006B02AD069058462946FCF7B6FF08 +:108A10004020CDE9020838462946CDE90488FCF714 +:108A2000ADFF4FF4E050CDE9020850462946CDE9AC +:108A30000486FCF7A3FF082002904FF40416384682 +:108A40002946CDE90368FCF799FF20462946CDE980 +:108A50000286CDF81080FCF791FF1020CDE90208C6 +:108A600020462946CDE90488FCF788FF302002A97A +:108A700081E8410158462946FCF780FF4FF4006029 +:108A8000CDE902080220059048462946CDF810801D +:108A9000FCF774FF00982946CDE90288CDE90488E7 +:108AA000FCF76CFF062005210022FDF7FDF90620EA +:108AB000FDF7F6F9092005210022FDF7F5F9092057 +:108AC000FDF7EEF90A2005210022FDF7EDF90A2055 +:108AD000FDF7E6F9172005210022FDF7E5F917203B +:108AE000FDF7DEF907B0BDE8F08F000080B54CF669 +:108AF000DC7045F20041C2F20100C4F2000148F20C +:108B0000A06200234FF4804CC0F2010280E80E0006 +:108B1000C0E9033CC0E90533C0E90733FDF70EF8AF +:108B2000002818BFFBF7E0FB80BD000080B540F2D5 +:108B3000706045F60001C2F20000C4F2000148F284 +:108B4000A06200234FF4804CC0F2010280E80E00C6 +:108B5000C0E9033CC0E90533C0E90733FCF7EEFF89 +:108B6000002818BFFBF7C0FB80BD0000B0B54DF278 +:108B7000300043F20001C2F20100C4F201014FF4DF +:108B80008272002380E80E0000F10C014FF0020C0D +:108B90004FF0010E4FF40074182581E808500A21A7 +:108BA000C0E90645C0E90833C0E90A31FDF754FCC5 +:108BB000002818BFFBF798FBB0BD000080B588B057 +:108BC0004DF2880044F200420021C2F20100C4F2DA +:108BD000010241F288330791CDE90511CDE9031176 +:108BE000CDE90111C0E90021C0E9021301618161F1 +:108BF000FEF702FA002818BFFBF776FB4DF288005B +:108C0000C2F20100FEF72CFC002818BFFBF76CFB3A +:108C1000602001900020CDE9020005904DF288000F +:108C2000C2F2010001A90022FEF7CEFB002818BF06 +:108C3000FBF75AFB4DF28800C2F20100FEF770FB11 +:108C400008B080BD10B596B040F2C460002200218B +:108C5000C2F20000C4F20102A72344F61F6415917A +:108C6000CDE91311CDE91111CDE90F11CDE90D11A8 +:108C7000CDE90B11CDE90911CDE90711CDE90511B8 +:108C8000CDE90311CDE90111C0E90023C0E90214C7 +:108C9000C0E904118161FEF7AFF9002818BFFBF7A6 +:108CA00023FB4FF48050129040F2C460C2F20000E7 +:108CB00012A9FEF729FA002818BFFBF715FB40F2AE +:108CC000C460C2F20000FEF7CBFB002818BFFBF720 +:108CD0000BFB40F2C4600024C2F2000010A9CDE9F1 +:108CE0001044FEF72DF9002818BFFBF7FDFA6020AD +:108CF000CDE9090440F2C460C2F2000009A90022D3 +:108D0000CDE90B44CDE90D440F94FEF75DFB00283F +:108D100018BFFBF7E9FA00200590CDE90300CDE983 +:108D200001004FF40051089040F2C4600691C2F275 +:108D3000000001A9FEF7DEF8002818BFFBF7D4FAFF +:108D400040F2C460C2F20000FEF7EAFA16B010BDAD +:108D500080B540F20C7041F20001C2F20000C4F292 +:108D6000010100234FF00C0C4FF4E13280E80E00BB +:108D7000C0E90333C0E905C3C361FEF77DFD0028E8 +:108D800018BFFBF7B1FA80BD80B54DF2D00044F2B8 +:108D90000041C2F20100C4F2000100234FF00C0CAC +:108DA0004FF4E13280E80E00C0E90333C0E905C3A7 +:108DB000C361FEF761FD002818BFFBF795FA80BD7F +:108DC00010B540F2547044F6000C48F2A062C2F2B2 +:108DD0000000C4F2000CC0F201024FF480530021E5 +:108DE0004FF4806E0424C0E900C2C0E90231C0E93A +:108DF00004E4C0E90611FEF73FFD002818BFFBF7A9 +:108E000073FA10BD80B54DF2181041F20041C2F264 +:108E10000100C4F2010100234FF00C0C4FF4E132C9 +:108E200080E80E00C0E90333C0E905C3C361FEF763 +:108E300023FD002818BFFBF757FA80BDFEE70000AE +:108E40002DE9F0478846B1F80D10044608BA4FEAFC +:108E50001049B8F811002679B8F80F1005BA304655 +:108E600091FAB1FAFFF72EFB07463046FFF77AFB7F +:108E700001EE109A9FED453AB8EE412A9FED441A53 +:108E800022EE032A22EE014A02EE10AA15FB27F079 +:108E9000B8EEC23A02EE100AA0799FED3E5AB8EE43 +:108EA000C22A22EE052A48B1B4F84000A9EB00001E +:108EB000B0F5805F0CDD4FF0FF300DE00020A4F82E +:108EC0004090C4E9110084ED024A84ED033A1CE0AD +:108ED00010F5805F03DA0120616C0844606494ED52 +:108EE000115A83EE003AB8EEC55A25EE015A34EE17 +:108EF000054A84EE004AA4F8409020EE022A84ED50 +:108F0000033A84ED124A84ED024A94ED020A84ED9C +:108F1000042AB5EE400AF1EE10FA08DA30EE010A42 +:108F2000B5EE400AF1EE10FAF8DB84ED020A94ED9A +:108F3000020AB4EE410AF1EE10FA0ADB9FED162A9E +:108F400030EE020AB4EE410AF1EE10FAF8DA84EDDE +:108F5000020A94F8280078B131EE400A84ED020A42 +:108F600094ED030A94ED041AB1EE400A84ED030A6D +:108F7000B1EE410A84ED040A98F8130000EE100ADD +:108F8000B8EE400A84ED050ABDE8F087000000391C +:108F9000DB0FC94000008038DB0FC9C080B5007806 +:108FA000F9F762FC002080BDFEE7000000F007003A +:108FB00080F00703042B28BF04234FF0FF3C033845 +:108FC0000CFA03F338BF0020994381400CFA00F0FB +:108FD00022EA000008437047B0B52DED0A8B044625 +:108FE00010EE100AB0EE618AB0EE419AB0EE60AABF +:108FF000B0EE40BA01F064FE002800F09C801AEE4A +:10900000100A01F05DFE002800F0958019EE100AAC +:1090100001F056FE002800F08E8018EE100A01F0D4 +:109020004FFE002800F087806068B0EE4B0A90ED9C +:10903000071AF0EE4A0AFAF7B7FE6068B0EE40BAD7 +:1090400090ED001A04F11C0020EE01CA21EE0A0A7C +:10905000FEF7ACFE207888B1012811D194ED051AF5 +:1090600094ED022A30EE411AB4EE428AF1EE10FA83 +:10907000C8BFB0EE482A81EE029A01E09FED309A17 +:1090800019EE100A84ED04BA84ED050A01F018FE09 +:1090900065689FED2B0A002808BFB0EE409A95ED59 +:1090A000010A95ED032A2CEE000A29EE022A95ED1D +:1090B000021A30EE42AA94ED030A9FED229A2CEE9A +:1090C000082A32EE008AB4EE491AF1EE10FA28EEC0 +:1090D00001BA1ADD18EE100A01F0F2FDA8B13AEE5D +:1090E0000B0A95ED051AB0EEC00AB4EE410AF1EE96 +:1090F00010FA0ADC95ED040AB0EEC81AB4EE401A74 +:10910000F1EE10FAD8BF84ED038A3AEE0B8A18EE1E +:10911000100A01F0D5FD70B1D5ED050AF4EE490A4B +:10912000F1EE10FA05DDB0EE480AF8F7FDFCB0EEFE +:10913000408A84ED068A94ED060ABDEC0A8BB0BD28 +:1091400000000000BD37863570B52DED048B90B35F +:10915000044650681646B0EE408A0D4601F0B0FD58 +:1091600058B3B06801F0ACFD48B3F06801F0A8FD59 +:1091700038B3306901F0A4FD28B3706901F0A0FD97 +:1091800018B3B7EE000A80EE089A666019EE100A6E +:1091900001F096FDD8B1D6ED060A04F11C00B0EE40 +:1091A000480A84ED029AFEF73FFE2046257000F043 +:1091B00013F800200CE0FF200AE0FF2008E0FF2069 +:1091C00006E0FF2004E0FF2002E0FF2000E0FF2097 +:1091D00040B2BDEC048B70BD10B568B100F11C014C +:1091E00000249FED070AC0E90344C0E9054408468E +:1091F000FEF76CFE60B210BDFF2460B210BD00BF70 +:10920000000000000000000000000000000000005E +:10921000EFF30980BFF36F8F154B1A681EF0100F24 +:1092200008BF20ED108A20E9F04F10602DE90900F9 +:109230004FF0500080F31188BFF34F8FBFF36F8F53 +:1092400003F0E6FB4FF0000080F31188BDE8090051 +:1092500019680868B0E8F04F1EF0100F08BFB0ECB6 +:10926000108A80F30988BFF36F8F704700BF00BF7B +:10927000F8D1012080B502F04BFA4DF62051C2F230 +:1092800001010860A8B149F2B922C0F6000202202B +:109290000321F9F7CFFB4CF2EC51C2F2010100209F +:1092A000C1E90000C1E90200C1E90400087640B24A +:1092B00080BDFE2040B280BD80B54DF62050C2F288 +:1092C00001000068012102F085F980BD80B502200F +:1092D000F9F782FB4CF2EC51C2F201011922FEF7C0 +:1092E00069FC002818BF4FF0FF3080BD80B50246F2 +:1092F0000120012102F0AEF90138B0FA80F04009F6 +:1093000080BD000080B5806B01684A6822F00302CE +:109310004A60416D41F010014165012180F8511012 +:10932000FDF788F880BD000080B5806BFDF7C8FAB6 +:1093300080BD000080B5806BFDF79EFD80BD000004 +:1093400080B5806BFDF7BCFD80BD0000B0B5846BBF +:109350000546FCF7EDFB29680968C90526D40246D5 +:109360002068A168436823F02003436031B9616835 +:10937000B1F5827F02D16FF0030101E06FF00101CE +:109380004368194041602046642100F079F80028C4 +:109390001CBF202060650020E087012084F8510078 +:1093A000606D18B12046FDF745F8B0BD2046FDF7C9 +:1093B00075FAB0BDB0B582B0846B0546FCF7B8FB5A +:1093C00029680968C90528D402462068416821F047 +:1093D00020014160416821F0020141602046642182 +:1093E00000F096F818B1606D40F020006065A0684C +:1093F00038B9002001902068C1680191806801900F +:1094000001980020E086012084F85100606D20B1B1 +:109410002046FDF70FF802B0B0BD2046FDF71CFD59 +:1094200002B0B0BDB0B5846B0546FCF781FB29687E +:109430000968C9051FD402462068416821F020014F +:1094400041602046642100F063F818B1606D40F07F +:10945000200060652068416821F003014160002020 +:10946000E086E087012084F85100606D18B1204645 +:10947000FCF7E0FFB0BD2046FDF710FDB0BD0000D9 +:10948000B0B582B0044640680B46B0F5827F20D16B +:10949000A168B1F5004F02D0B1F5806F04D1216809 +:1094A0000D6825F040050D60B0F5827F11D1A068F0 +:1094B000B0F5806F1DD100922046012100220025C9 +:1094C00000F076F890B1606D032540F020006065F3 +:1094D0000CE00092204601210022002500F068F8EF +:1094E00020B1606D032540F020006065284602B081 +:1094F000B0BD0092204680210022002500F058F8DF +:109500000028F3D0606D032540F020006065EDE792 +:1095100070B582B00D461646022101222B46044644 +:10952000009600F045F838B1606D032540F020004A +:109530006065284602B070BD40F20000C2F2000033 +:10954000006849F68171C1F25E61A0FB0101480D1E +:109550004FF47A71484301906068B0F5827F0FD173 +:109560002046802100222B460096002500F020F89E +:109570000028DED0606D032540F020006065D8E74C +:10958000019840B101980138019020688068000678 +:10959000F6D40025CDE70025CBE70000006843F2B4 +:1095A0000001C4F20101401A18BF012040007047B9 +:1095B0002DE9F04782B00A9C984615460E46814632 +:1095C000FCF7B6FA201A00EB0804FCF7B1FA40F2F7 +:1095D0000001C2F200010968C1F3CB31614301917E +:1095E000D9F8001089683140891BB1FA81F1490925 +:1095F000A94203D1002002B0BDE8F087824608F1FD +:1096000001070CE0019801380190D9F8000080684A +:109610003040801BB0FA80F04009A842EAD0002F09 +:10962000F3D0FCF785FAA0EB0A00A04204D201981F +:109630000028E7D10024E8E7D9E900014268B1F544 +:10964000827F22F0E00242600BD1D9F80810B1F518 +:10965000004F02D0B1F5806F03D1016821F04001C5 +:109660000160D9F82810B1F5005F07D1016821F435 +:1096700000510160016841F400510160012089F846 +:109680005100002089F85000032002B0BDE8F087A7 +:10969000074B19680868B0E8F04F80F30988BFF3FA +:1096A0006F8F4FF0000080F31188704700BF00BF3C +:1096B000F8D1012080B501F051FB80BD2DE9F04FBC +:1096C00081B02DED028B834600284FF0FF0000F0A3 +:1096D00092808846002900F08E80B5EE400AB0EEF8 +:1096E000408AF1EE10FA40F3868098F80440CBF8F7 +:1096F0001880F8F70DFDB4B308F1700908F1900A6D +:1097000008F12C050BF5D2760BF2EC472846FEF754 +:109710003BFF30460121B0EE480A4A46FFF714FDF0 +:1097200006F5B4700121B0EE480A5246FFF70CFD71 +:10973000DBF81800B0EE480AD0ED4C0A3846FEF7C8 +:1097400073FBDBF81800B0EE480AD0ED4D0A07F1C4 +:10975000C000FEF769FB013C05F10A0506F13C0675 +:1097600007F12007D2D108F16800FEF70DFFDBF802 +:10977000180090F86C0078B101283BD10BF27440CE +:1097800008F1F0020121B0EE480AFFF7DDFC0BF50D +:10979000966008F588720CE00BF2744008F1B00294 +:1097A0000121B0EE480AFFF7CFFC0BF5966008F1F7 +:1097B000D0020121B0EE480AFFF7C6FCDBF8180022 +:1097C000B0EE480AD0ED4E0A0BF26C60FEF72CFBAF +:1097D000DBF81800B0EE480AD0ED4F0A0BF28C60AF +:1097E000FEF722FB0020CBE94700CBE94900CBF88C +:1097F0002C0100E0FC2040B2BDEC028B01B0BDE8C2 +:10980000F08F000000280EBFFF200177002040B23B +:1098100070470000002800F0EB802DE9F0472DEDA7 +:10982000068B8246806990F80480B8F1000F57D00B +:109830009FED718A4FEA88093427002540F2EC46F3 +:109840002424B7EE009ABFEE00AA2EE00AEB040033 +:1098500090ED000A0AEB0600FEF7A8FA80EE081A5F +:109860000AEB050080ED380A043520361034B4EEDA +:10987000491AF1EE10FAC8BFB0EE491ADAF818101A +:10988000B4EE4A1AF1EE10FAB8BFB0EE4A1AC95D4A +:1098900080ED3E1A0AEB810090ED430A0A3730EE64 +:1098A000010AA94580ED430A1AD0DAF818003844B5 +:1098B0000838FEF70DFFDAF8180038440838FEF7CC +:1098C00029FE0028C2D000F12C0C0AEB85019CE88F +:1098D0000C10806B01F1200E8EE80C10C862B5E709 +:1098E0009AED450A01EE108AB8EEC11A80EE010A1F +:1098F000DAF81800B6EE001A683020EE010A8AED98 +:10990000450AFEF7E5FEDAF818006830FEF702FEB9 +:1099100001460AF180005022F6F706FFDAF8180037 +:109920009AED321A90ED040A20EE010AB5EE400AD3 +:10993000F1EE10FA8AED490A0BDA9FED301A00BFFA +:1099400030EE010AB5EE400AF1EE10FAF8DB8AEDCE +:10995000490A9AED490A9FED291AB4EE410AF1EE3F +:1099600010FA0ADB9FED262A30EE020AB4EE410A15 +:10997000F1EE10FAF8DA8AED490A9AF8A800002800 +:109980001CBF31EE400A8AED490A9AED230A0AF219 +:109990006C60FEF70BFA9AED231A9FED1A2AB7EEC8 +:1099A000003A81EE021A8AED4A0A9AED090A9AED06 +:1099B0000D2A0AF2AC6030EE420AB4EE431AF1EE20 +:1099C00010FAC8BFB0EE431ABFEE003AB4EE431A25 +:1099D000F1EE10FAB8BFB0EE431A8AED4B1A80EDE3 +:1099E000000A0020BDEC068BBDE8F04740B270478E +:1099F000FF2040B2704700BF00C0DA45DB0FC9400E +:109A0000DB0FC9C00080BB4580B501F081FE01F0CD +:109A1000DDFE80BDB0B501380024B4EB106F1CBF73 +:109A20000120B0BD4EF21005CEF2000568604FF087 +:109A3000FF300F2101F080F90720AC60286020463C +:109A4000B0BD000080B5FCF7B1F903F007FF0128B5 +:109A500018BF03F0D9F880BD70B592B006AC2046AF +:109A60003021F6F79BFE002543F640000595CDE931 +:109A70000355CDE901550095C4F2020001680226A4 +:109A800041F080510160006800F080500090009823 +:109A900047F200000095C4F20000016841F48041E3 +:109AA0000160006800F4804000900098012006905A +:109AB0004FF4803007904FF480000D9006200E90F8 +:109AC000A820CDE90F060420119020460C96FCF743 +:109AD0000DFB88B90F20CDE901064FF4A05004908A +:109AE0004FF48050059001A805210395FCF7F0F98B +:109AF000002804BF12B070BDFAF7F6FB4EF688508E +:109B0000CEF20000016841F470010160704700006E +:109B100080B540F2C460C2F20000FDF767FB80BD73 +:109B2000B0B540F6FF3E0568C4F2000E40F2004CAE +:109B30007045C4F2010C0FDCB0F1804F19D040F237 +:109B40000043C4F20003984213D040F60003C4F26D +:109B5000000398420DD011E040F60043C4F2000328 +:109B6000984206D0604504D00023C4F20103984215 +:109B700004D14B6825F0700243EA020541F6FF73F9 +:109B8000C4F2000398420DDC70451FDCB0F1804F39 +:109B900041D040F20043C4F2000398423BD040F66B +:109BA000000321E043F6FF73C4F20103984220DC76 +:109BB00042F20003C4F2000398422CD00023C4F206 +:109BC0000103984227D0604525D029E040F60043A4 +:109BD000C4F2000398421ED041F60003C4F2000311 +:109BE000984218D041F60043C4F20003984212D0C4 +:109BF00016E044F20003C4F2010398420BD044F68D +:109C00000003C4F20103984205D044F20043C4F2B9 +:109C10000103984204D1CB6825F4407243EA02055F +:109C20000A688C684B69C46240F48064826264454F +:109C300004BF09690163026825F0800142F0040253 +:109C400019430260012242610160B0BD80B501F09C +:109C50001F014FF0010CD0F820E00CFA01F32EEABE +:109C600003030362036A02FA01F11943016280BD32 +:109C7000D0F808C011432CF47F4C41EA032141EA9B +:109C80000C01816070470000826822F0700211436D +:109C900041F0070181607047B0B5026A036A40F283 +:109CA000004523F001030362D0F804E0D0F818C0A7 +:109CB0008C6822F0020240F48063C4F20105AB42DA +:109CC00042EA040205D1CC6822F00C0224F004041C +:109CD00022430C68AB4207D1D1E905532EF4407EF4 +:109CE00045EA0E0545EA030E2CF073032343C0F842 +:109CF00004E08361496841630262B0BD70B5026AE5 +:109D0000036A40F2004423F010030362D0F804E039 +:109D1000D0F818C08D6822F0200240F48063C4F2AD +:109D20000104A34242EA051207D1CD686FF0400654 +:109D300022F0C00206EA05152A430D68A34207D1A6 +:109D4000D1E905642EF4406343EA860343EA840EB6 +:109D50002CF4E64343EA0523C0F804E08361496834 +:109D60008163026270BD000070B5026A036A40F24E +:109D7000004423F480730362D0F804E0D0F81CC0E0 +:109D80008D6822F4007240F48063C4F20104A3429F +:109D900042EA052207D1CD6840F2FF462D0222F4A7 +:109DA0004062B5432A430D68A34207D1D1E9056457 +:109DB0002EF4405343EA061343EA041E2CF07303C7 +:109DC0002B43C0F804E0C3614968C163026270BDFF +:109DD00070B5D0F820C0026A40F2004622F48052EA +:109DE00002624268C3690C68D1F808E040F48065FB +:109DF000C4F20106B54204D14D6922F4804242EA20 +:109E0000851223F4E64343EA04234260C3612CF441 +:109E10000056496846EA0E320164026270BD0000D5 +:109E2000D0F820C0036A23F001030362836923F0A2 +:109E3000F00343EA02122CF00A0319438261016223 +:109E400070470000D0F820C0036A23F010030362BB +:109E5000836923F4704343EA02322CF0A00343EAFF +:109E6000011182610162704701F0C6F905F091FFAE +:109E70009FED1B0B53EC102B05F0C8FD05F05CFFAC +:109E80000446002001F070F901F0ACF90546FFF737 +:109E9000F1F94CF6B85640F664072544C2F20106C3 +:109EA000C2F2000710E000BF3046FAF7B5F8B86D0F +:109EB00001F0E8FAB86D31460022002301F09AFA69 +:109EC000284601F061F92544FFF700FA1420FFF756 +:109ED0000DFA0028E8D03046FAF754F8E7E700BF5B +:109EE0000000000000407F4010B501F09DF94AF2EB +:109EF000590040F63812C0F60000C0F601020021F9 +:109F000001F00AFC40F66404C2F2000420604AF248 +:109F1000F93040F6EC12C0F60000C0F60102002154 +:109F200001F0FAFB60604AF2112040F68012C0F6A0 +:109F30000000C0F60102002101F0EEFBA0604AF231 +:109F4000B14040F63422C0F60000C0F60102002104 +:109F500001F0E2FBE0604AF2990040F65C12C0F6C4 +:109F60000000C0F60102002101F0D6FB20614AF298 +:109F7000913040F6C812C0F60000C0F60102002180 +:109F800001F0CAFB60614AF2A92040F6A412C0F6B3 +:109F90000000C0F60102002101F0BEFBA0614AF200 +:109FA000395040F65822C0F60000C0F601020021E8 +:109FB00001F0B2FBE06149F6696040F61412C0F6A8 +:109FC0000000C0F60102002101F0A6FB20624AF267 +:109FD000815040F67C22C0F60000C0F6010200214C +:109FE00001F09AFB606202200A21002201F0B2F91E +:109FF000A06202203421002201F0ACF9606302204B +:10A000001421002201F0A6F9A063022020210022E1 +:10A0100001F0A0F9A06402200321002201F09AF9C6 +:10A02000E06202205821002201F094F960650220CC +:10A030004D21002201F08EF9A06502204D21002261 +:10A0400001F088F9A06501F01FF901F061FB01F052 +:10A05000BDFB10BD0000000001F0CEF805F099FE38 +:10A060009FED0B0B53EC102B05F0D0FC05F064FEBC +:10A070000446002001F078F801F0B4F8051900BF9B +:10A08000284601F081F82544FAE700BF00BF00BF71 +:10A090000000000000407F4084B001F0ADF805F002 +:10A0A00078FE9FED570B53EC102B05F0AFFC05F03D +:10A0B00043FE0546002001F057F801F093F840F206 +:10A0C000501AC2F2000A40F204010446C2F2000132 +:10A0D0005046F7F77FFD5046F7F756FD40F26850BF +:10A0E00040F2A471C2F20000C2F20001F7F714F8C6 +:10A0F0005046F7F749FDB7EE001A81EE000A4DF21F +:10A10000601040F68432C2F20100C0F60102002164 +:10A11000FFF71AF80120F8F7A7FB0AF110004CF638 +:10A1200008689FED398A9FED399A40F27C5904EB1B +:10A13000050B02900AF11C00C2F20108C2F20009EC +:10A1400003950190F7F794FEF7F70AFDF7F714FD72 +:10A15000F7F72AFDF7F736FD01F066F85046F7F7F6 +:10A16000DBFD5046F7F722FE40F26854C2F20004CD +:10A17000DDE9012140F2A4732046C2F20003F7F7A3 +:10A1800093F840462146F6F759FF01F07DF8DAEDE5 +:10A190000A0A4DF26010C2F20100B0EE480AB0EEB9 +:10A1A000491AF0EE491AFEF717FF0120F8F72CFBC9 +:10A1B0000AF1100C9CE8181098E80700DAF82460FF +:10A1C000C9E90A3440F66404C2F20004DAE907750A +:10A1D000C9E90260606BC9E90075C9E90412C9F8F0 +:10A1E00030C001F04FF9606B49460022002301F0B6 +:10A1F00001F9584600F0C8FF03988344A2E700BF66 +:10A200000000000000407F400000204200000000ED +:10A2100000F0F2FF05F0BDFD9FED1F0B53EC102B7E +:10A2200005F0F4FB05F088FD0446002000F09CFFDB +:10A2300000F0D8FF0646F9F7E9FD4CF21865C2F2C6 +:10A2400001059FED170A00F53071284600F09EFDCC +:10A2500040F6640840F29C172644C2F20008C2F29D +:10A26000000700BFD8F8480039460022002301F05B +:10A270002DF82846F9F7A8FC284639463246F9F762 +:10A280001DF82846F9F772F9304600F07DFF2644A4 +:10A29000E8E700BF00BF00BF0000000000407F40B3 +:10A2A0000000FA430000000082B000F0A5FF05F0B6 +:10A2B00070FD9FED350B53EC102B05F0A7FB05F05F +:10A2C0003BFD0446002000F04FFF00F08BFF0646E8 +:10A2D000F9F79CFD4CF6EC49C2F2010900F57871E2 +:10A2E0004846F8F781FE0194264440F664054CF692 +:10A2F000B05440F20C284CF6B45AC2F2000509F1F1 +:10A30000880BC2F2010409F1AC07C2F2000809F19E +:10A31000C109C2F2010A00BFA86D40F2BC11C2F22D +:10A3200000010022002300F0D1FF4CF6EC40C2F205 +:10A330000100F8F749FFA86BC4F800B0C8F8007036 +:10A34000CAF8009001F09EF8A86BD8F8001000221F +:10A35000002301F04FF8E86A01F094F8E86ADAF8AF +:10A3600000100022002301F045F8A86C01F08AF8E3 +:10A37000A86C21680022002301F03CF8304600F070 +:10A3800003FF01980644C7E70000000000407F403B +:10A3900000F032FF05F0FDFC9FED150B53EC102B88 +:10A3A00005F034FB05F0C8FC0446002000F0DCFE9C +:10A3B00000F018FF40F21825C2F2000506462846B4 +:10A3C000F9F7B0FD40F664072644C2F2000700BF6B +:10A3D000786D01F057F8786D29460022002301F0CE +:10A3E00009F8304600F0D0FE2644F1E700BF00BF78 +:10A3F0000000000000407F4000F0FEFE05F0C9FCB8 +:10A400009FED270B53EC102B05F000FB05F094FC9F +:10A410008146002000F0A8FE00F0E4FE0646F9F7B1 +:10A42000F5FC40F27025C2F200059FED1F0A0146BF +:10A430002846FAF7ABF940F664044CF638684CF657 +:10A4400024674E44C2F20004C2F20108C2F20107BE +:10A450004FF0010A16E000BFA06B3946002200232E +:10A4600000F034FF2846FAF70FFB2846394687F8F4 +:10A4700000A0F9F73DFF2846FAF734FA304600F01D +:10A4800083FE4E44606B41460022002300F01EFF15 +:10A490000028E1D128464146FAF786FBDCE700BFF9 +:10A4A0000000000000407F400000FA430000000070 +:10A4B00000F0A2FE05F06DFC9FED1B0B53EC102B82 +:10A4C00005F0A4FA05F038FC0446002000F04CFE2C +:10A4D00000F088FE0646F9F799FC4DF27068C2F26A +:10A4E00001089FED130A00F5C0714046FFF7E6F83A +:10A4F00040460321FFF786F940F6640540F6600701 +:10A500002644C2F20005C2F2000700BFE86A3946DD +:10A510000022002300F0DAFE4046FFF77BF93046C8 +:10A5200000F032FE2644F1E70000000000407F40CA +:10A530000000FA430000000000F05EFE05F029FC78 +:10A540009FED0D0B53EC102B05F060FA05F0F4FBBA +:10A550000446002000F008FE00F044FE05464CF2E0 +:10A560000000C2F20100FEF719FD2544284600F064 +:10A570000BFE2544FAE700BF0000000000C0824047 +:10A5800000F03AFE05F005FC9FED130B53EC102B89 +:10A5900005F03CFA05F0D0FB0446002000F0E4FD95 +:10A5A00000F020FE0546022000F07AFB4CF208661F +:10A5B0002544C2F201064FF0804700BF3046022119 +:10A5C0000022776000F014FB284600F0DDFD2544F2 +:10A5D000F4E700BF00BF00BF0000000000407F4064 +:10A5E00080B5806B0021C185FDF704F880BD0000B7 +:10A5F00010B5846B2068406994F84110212907D177 +:10A6000010F0800004D00020E084204600F0C2F862 +:10A610002068406994F84210222907D110F04000C8 +:10A6200004D00020E085204600F080F8606C40F007 +:10A63000100060642046FCF7DDFF10BD80B50168A6 +:10A64000806B0968C9052FD40021C185016851E8D4 +:10A65000031F026821F4807142E80313002BF5D137 +:10A66000016851E8051F026821F0010142E8051365 +:10A67000002BF5D1016851E8051F026821F0400167 +:10A6800042E80513002BF5D1202180F84210016B20 +:10A69000012909D1016851E8031F026821F0100166 +:10A6A00042E80313002BF5D100214163016B01291E +:10A6B00003D1818DFCF79CFF80BDFDF791FA80BD31 +:10A6C00080B5806B01214163016B012904D1818D2B +:10A6D0004908FCF78DFF80BDFDF796FA80BD0000AC +:10A6E00080B50168806B0968C90516D40021C18452 +:10A6F000016851E8051F026821F0800142E8051356 +:10A70000002BF5D1016851E8031F026841F04001B8 +:10A7100042E80313002BF5D180BDFDF7EBFA80BDB5 +:10A7200080B5806BFDF7FAFA80BD0000016851E842 +:10A73000031F026821F4907142E80313002BF5D146 +:10A74000016851E8051F026821F0010142E8051384 +:10A75000002BF5D1016B01290AD100BF016851E836 +:10A76000031F026821F0100142E80313002BF5D10A +:10A77000202180F8421000210163704780B50168F4 +:10A78000CA6822F04002CA60202180F84110FDF71B +:10A79000B1FA80BD016851E8031F026821F0C001D1 +:10A7A00042E80313002BF5D1202180F841107047B7 +:10A7B000006840F6FF71C4F20101884210DC44F2E7 +:10A7C0000041C4F20001884204BF0120704744F6F2 +:10A7D0000001C4F20001884204BF022070470FE06C +:10A7E00041F20001C4F20101884204BF0020704719 +:10A7F00041F20041C4F20101884204BF03207047C6 +:10A800000520704780B582B090F8421022291ED1F1 +:10A810008268B2F5805F02D1016900294AD0816A5D +:10A82000B2F5805F07D00AB9026922B102685268A6 +:10A8300002F07F0201E0026852680A700121826A18 +:10A8400011448162C18D01390A04C18501D002B071 +:10A8500080BD0168CA6822F02002CA60CA6822F47A +:10A860008072CA604A6922F001024A61202180F8A0 +:10A87000421000214163026B012A23D1016300BF12 +:10A88000016851E8031F026821F0100142E8031338 +:10A89000002BF5D101680A68D20606D50022019284 +:10A8A0000A680192496801910199818DFCF7A0FE27 +:10A8B00002B080BD0168826A49686FF35F21118030 +:10A8C0000221BCE7FDF78CF902B080BD10B504464B +:10A8D0000068D4E902C22369016921F4405111439F +:10A8E0000161626943EA0C01E3691143C2681943DB +:10A8F00049F20C639A431143C1604169A26921F492 +:10A90000407141F20043114340F48062C4F20103FC +:10A910009A42416102D1FBF7A3FB01E0FBF78EFBFA +:10A92000E16963681922B1F5004FA0FB02011CD157 +:10A930005A00DB0FF5F7DEFC48F21F51C5F2EB11B0 +:10A94000A0FB01235A096FF0630302FB03003223CB +:10A9500003EBC000A0FB01014FF4F87000EA1110F6 +:10A9600000EB0210C1F342111AE09A009B0FF5F7B9 +:10A97000C1FC48F21F51C5F2EB11A0FB01235A099B +:10A980006FF0630302FB0300322303EB0010A0FB14 +:10A990000101F02000EA511000EB0210C1F3431155 +:10A9A00022680843906010BDF0B581B013460027BF +:10A9B0000446816283854764222084F84200E06B6C +:10A9C0004AF23D654AF2C1660A462168C0F60005B2 +:10A9D000C0F60006C0E90F564AF2F156C0F600066E +:10A9E0000431C0E91367FAF75FFF38B110206064E3 +:10A9F000202084F84200012001B0F0BD00972068BB +:10AA000001680091406800900098206950B100BF33 +:10AA1000206850E8030F216840F4807041E8030289 +:10AA2000002AF5D1206850E8050F216840F00100A8 +:10AA300041E80502002AF5D1206850E8050F216899 +:10AA400040F0400041E80502002AF5D1002001B0A5 +:10AA5000F0BD000090F84110212923D18168B1F5A3 +:10AA6000805F01D1016931B1016A02684B1C036248 +:10AA70000978516007E0016A036831F8022B6FF32F +:10AA80005F225A600162C18C01390A04C18418BF77 +:10AA900070470068C16821F08001C160C16841F061 +:10AAA0004001C1607047000010B540F20C74C2F262 +:10AAB00000042046FCF7B2FD2046F7F79DFF10BDCD +:10AAC00010B540F25474C2F200042046FCF7A6FD13 +:10AAD0002046F7F791FF10BD10B54DF21814C2F2E1 +:10AAE00001042046FCF79AFD2046F7F785FF10BDCC +:10AAF000FEE700002DE9F04F83B08B4601393F2976 +:10AB000042D84EF29C54BBF1000FC2F201040292F3 +:10AB100028D0061F4FF000084FF0000940F6B0376C +:10AB200040F60B40C0F60107C0F60100B8F1000F77 +:10AB300008BF074656F8040F04EB090AC9F58275E9 +:10AB400005F01EFD41EC100B5046294610A23B4675 +:10AB50008DED000BF5F75CFC08F10108C34581445D +:10AB6000DCD101E04FF0000904EB0900C9F5827166 +:10AB700009A2F5F74DFC2046F5F772FD029B82B263 +:10AB800000202146F7F770FF03B0BDE8F08F00BF4B +:10AB90002573252E326600000A00000070B50D46B0 +:10ABA00001393F2988BF70BD4EF29C56C2F20106A2 +:10ABB00014460146AA003046F5F7B6FD4FF0FF40B7 +:10ABC00046F82500042000EB85020020314623468C +:10ABD000F7F74AFF70BD0000B0B50C460546F5F723 +:10ABE0003FFD82B2002029462346F7F73DFFB0BD66 +:10ABF000F0B5C1B0144640F21002C2F20002127861 +:10AC00000F46022A054627D0012A2CD092BB0FB34B +:10AC1000286805F0B5FC01AE02460B4617A1304688 +:10AC2000F5F7E0FB012F0CD03046F5F719FD37188A +:10AC3000686805F0A5FC02460B4614A13846F5F7F6 +:10AC4000D1FB3046F5F70CFD0A2131523046214642 +:10AC5000FFF7C2FF00200EE0284639462246FFF7E4 +:10AC60009DFF002007E0284639462246FFF742FFB5 +:10AC7000002000E0FF2040B241B0F0BD4368616EAB +:10AC80006E656C313A20252E326600002C20436818 +:10AC9000616E6E656C323A20252E3266000000002F +:10ACA00040F210020146C2F200020020117070470B +:10ACB00000F0FF40B0F1FF4018BF012070470000D6 +:10ACC00000F0FF40B0F1FF4018BF012070470000C6 +:10ACD00020F00040A0F1FF40B0FA80F0400970473A +:10ACE000002848BF704700F01F01012202FA01F15D +:10ACF0004EF280124009CEF2000242F82010BFF35B +:10AD00004F8FBFF36F8F7047002848BF704700F028 +:10AD10001F01012202FA01F14EF200124009CEF2A7 +:10AD2000000242F8201070474EF60C50CEF20000A0 +:10AD30000068C0F3022070474EF6145300F00F0273 +:10AD4000CEF2000309011A4400F16043B0F1FF3F65 +:10AD5000C8BF03F564421170704700004EF61F50E3 +:10AD6000CEF2000000210170704700004EF60C5139 +:10AD7000CEF200010A684FF6FF031A4060F30A2280 +:10AD800042F0806040F0FD700860704770B52DEDB6 +:10AD9000048B044600284FF0FF0018BF002900F084 +:10ADA000D080B5EE400AB0EE408AF1EE10FA40F3E2 +:10ADB000C8800320C4F830152076D1F8140104F2BD +:10ADC000CC621060D1F818015060F7F7A1F9C425E2 +:10ADD000D4F830052844FDF7D7FB0835E42DF7D12A +:10ADE000E42500BFD4F830052844FDF7CDFB083535 +:10ADF000B5F5827FF6D1D4F8300500F58670FDF701 +:10AE0000C3FB40F6A020C0F6010090E80E00C06829 +:10AE100004F5A46C04F57C7500268CE80E00C4F8DB +:10AE20002C0500BFD4F83015A81901F184020021C7 +:10AE3000B0EE480AFEF788F93C36F02EF2D16FF0FA +:10AE4000EF0500BFD4F83015661906F57C7001F1E6 +:10AE500044020121B0EE480AFEF776F9D4F8301525 +:10AE600006F5407001F164020121B0EE480AFEF7D8 +:10AE70006BF93C35E6D1D4F8301504F59C6001F14E +:10AE8000A4020121B0EE480AFEF75EF9B3EE049A7F +:10AE900004F23450B0EE480AF0EE490AFCF7C4FF61 +:10AEA00004F25450B0EE480AF0EE490AFCF7BCFF39 +:10AEB00004F27450B0EE480AF0EE490AFCF7B4FF11 +:10AEC00004F29450B0EE480AF0EE490AFCF7ACFFE9 +:10AED00004F2B450B0EE480AF0EE490AFCF7A4FFC1 +:10AEE00004F2D450B0EE480AF0EE490AFCF79CFF99 +:10AEF00004F2F450B0EE480AF0EE490AFCF794FF71 +:10AF000004F21460B0EE480AF0EE490AFCF78CFF38 +:10AF100004F23460B0EE480AF0EE490AFCF784FF10 +:10AF200004F25460B0EE480AF0EE490AFCF77CFFE8 +:10AF300004F27460B0EE480AF0EE490AFCF774FFC0 +:10AF4000002040B2BDEC048B70BD000070470000D3 +:10AF500040F6DB7110EE100AC3F6C97161F31E00F2 +:10AF600000EE100A70470000F0B581B0F0B1044661 +:10AF70004DF2F810C2F201000068A0421FD001F0AB +:10AF800065FA40F65400C2F20000656907684DF2A8 +:10AF90000420C2F20100066801F07CFABD424FF0C5 +:10AFA000020018BFB5420DD101B0F0BD4FF0500006 +:10AFB00080F31188BFF36F8FBFF34F8FFEE7002040 +:10AFC00001B0F0BD4AF6E010C2F2010085420CD09B +:10AFD0004AF6F4110120C2F20101002D08BF04203D +:10AFE0008D4208BF042001B0F0BDA06A10B102205C +:10AFF00001B0F0BD94F85C100320012908BF0220C5 +:10B0000001B0F0BD4FF0FF3101FA00F0C04302EE95 +:10B01000100A30EE600AB8EEC22A31EE601A20EE55 +:10B02000020A80EE010ABDEEC00A10EE100A704757 +:10B0300000207047FAF7C8FEFEF70EFDFDF754FC3E +:10B04000FDF7EEFBFDF7A8FBFDF7C8FBFDF74EFD96 +:10B05000FDF76CFDFDF78AFDFDF77AFEFDF794FE26 +:10B06000FDF7AEFEFDF7AAFDFDF7CCFEFDF7EAFD0C +:10B0700000F0C6F8FDF71AFC00F0ECF8FEE700005F +:10B080000146C068B6EE002A90ED4C1A90ED4B0ACE +:10B0900021EE021A30EE010A002081ED130A7047FA +:10B0A00030EE600A32EE612A20EE020A31EE601ABA +:10B0B00080EE010A30EE210A7047000040F2B070C5 +:10B0C000C2F2000090ED001A9FED132A30EE411AF3 +:10B0D00080ED000AB4EE421A4DF2A010F1EE10FA23 +:10B0E000C2F2010002DD4FF0FF3107E09FED0B2AB5 +:10B0F000B4EE421AF1EE10FA03DA012102681144AB +:10B10000016090ED001A9FED062AB8EEC11A21EEFB +:10B11000021A31EE000A7047DB0F4940DB0F49C0CD +:10B12000DB0FC940401A811000EE101A9FED0B1A78 +:10B13000B8EEC00A30EE011A9FED0A2A0C28C8BFEB +:10B14000B0EE410A9FED061AB4EE420A30EE011A43 +:10B15000F1EE10FAB8BFB0EE410A7047DB0FC9C07C +:10B16000DB0FC940DB0F49C0EFF3058100291CBF8D +:10B170006FF005007047002804BF0020704780B5BD +:10B1800001F068FA002080BD10B582B0EFF30581B0 +:10B1900019B16FF0050002B010BD044602F072FB59 +:10B1A000211A0129019005DB01A801F07DFA002098 +:10B1B00002B010BD6FF0030002B010BD80B502F008 +:10B1C0004DFB022808BF80BD08B9032080BD40F2B6 +:10B1D0002810C2F2000000680138B0FA80F040097F +:10B1E00080BD000080B5EFF3058010B102F050FB88 +:10B1F00080BD02F047FB80BD4FF47A7070470000BD +:10B20000EFF3058000281CBF6FF00500704740F287 +:10B210002810C2F200000168002911BF4FF0FF3072 +:10B22000012101600020704780B5EFF30580002800 +:10B230001CBF6FF0050080BD02F010FB28B1022892 +:10B2400005D101F0DDFB002080BD012080BD4FF065 +:10B25000FF3080BD10B5EFF3058000281CBF6FF0F4 +:10B26000050010BD40F22814C2F200042068012835 +:10B270001CBF4FF0FF3010BDFEF71CFA022020600B +:10B2800001F06AFB002010BD10B5EFF3058018B186 +:10B290006FF00504204610BD02F0E0FA02280ED03F +:10B2A00080B902F0CDFC01284FF001040CD002F06F +:10B2B000D5FA002808BF4FF0FF34204610BD002407 +:10B2C000204610BD4FF0FF34204610BD10B582B0AF +:10B2D0001C46B0FA80F3B1FA81F25B095209EFF330 +:10B2E000058CBCF1000F42EA030219D0002C18BFF4 +:10B2F0000124224315D10022019201AA01F088FF06 +:10B3000001281AD10198A8B14EF60450CEF20000DF +:10B310004FF080510160BFF34F8FBFF36F8F09E093 +:10B320001AB16FF0030002B010BD224601F0AEFE6C +:10B33000012806D1002002B010BD6FF0020002B05B +:10B3400010BD6FF00100002C08BF6FF0020002B0CA +:10B3500010BD0000B0B582B0144600294FF00005C2 +:10B36000EFF3058218BF002802D1284602B0B0BD15 +:10B37000002AFAD19CB1A568D5B1E268502A16D34B +:10B380002269A2B1D4F814C001FB00F20023944555 +:10B390004FF0000228BF012210D24DB10EE0012370 +:10B3A00000226AB9E3B1002201F064FC0EE01DB98D +:10B3B000E2680AB92269C2B100220023002AF1D052 +:10B3C000A36822690025009501F078FC054655B177 +:10B3D000002C14BF21680021284601F005F9C4E7BC +:10B3E0000025002DF4D10025BFE76269B2FA82F290 +:10B3F0005309D5E7B0B582B01C46B0FA80F3B1FA74 +:10B4000081F5EFF305825B096D09002A43EA050225 +:10B4100007D0002C18BF0124224306D06FF003058B +:10B420002CE0CAB16FF0030528E00022019201AAC6 +:10B43000002301F0A1FD01281CD10198E8B14EF6CE +:10B440000450CEF200004FF080510160BFF34F8FE7 +:10B45000BFF36F8F002511E022460023002501F085 +:10B46000B9FC01280AD06FF00105002C08BF6FF06D +:10B47000020503E06FF0020500E00025284602B057 +:10B48000B0BD000010B5EFF3058119B16FF00504F0 +:10B49000204610BD00280FBF6FF0030400210024D8 +:10B4A00001F058FC204610BD10B50C46EFF30581A5 +:10B4B00000291CBF6FF0050010BD014620F00100FF +:10B4C00050B111F001010AD1214601F0F7FE012827 +:10B4D00004BF002010BD09E06FF0030010BD21463D +:10B4E00001F0D0FF012804BF002010BD6FF0010063 +:10B4F000002C08BF6FF0020010BD000070B5EFF324 +:10B500000581B9B90028044614BF6068002001070E +:10B5100010D494B1A36843B1E26800214F2A4FF0E0 +:10B52000000288BF01220AD84BB9E168B1FA81F163 +:10B53000490903E00025284670BD0121002200F0E2 +:10B5400001063AB1A168002E0CBF0120042001F0D1 +:10B550007FFB06E0C9B1002E0CBF0120042001F0E2 +:10B560006BFB054635B1002C14BF2168002128462D +:10B5700001F03AF8B5FA85F0400986F00101084378 +:10B5800008BF45F00105284670BD0025002DEAD111 +:10B59000F0E7000080B5EFF3058100291CBF6FF0D4 +:10B5A000050080BD014620F0010040B111F001010D +:10B5B00008D100210022002301F00CFC04E06FF010 +:10B5C000030080BD01F040FD013818BF6FF002009C +:10B5D00080BD0000B0B584B048B3B1F1FF3F26DDB7 +:10B5E00004464FF0FF300390EFF3058018B30025B9 +:10B5F0000DF1080C2046012200230295CDF800C071 +:10B6000002F090F803AB204600210022009502F0E2 +:10B6100089F80298D0B14EF60450CEF200004FF0F7 +:10B6200080510160BFF34F8FBFF36F8F0EE06FF05B +:10B63000030003900AE020460122002301F0F4FFFA +:10B6400003AB20460021002201F0EEFF039804B076 +:10B65000B0BD00002DE9F04F83B00C46EFF305813B +:10B6600029B16FF00507384603B0BDE8F08F0546F5 +:10B67000002849D44FF0000B9246A00758BFAB46B4 +:10B6800002F000F900906FF0010804F00100544648 +:10B690000027BAF1000F08BF6FF00208019002E026 +:10B6A0004746002EDFD00020594602AA234602F06A +:10B6B000A3F906460128F3D1029807EA050140EAFA +:10B6C00001090198002809EA050007D100286FF058 +:10B6D000020718BF4F4607D0C5E700BFA8426FF06A +:10B6E000020708BF4F46BED0BAF1000FBBD002F030 +:10B6F000C9F800994F46401A241A4FF0000038BF8D +:10B700000446002ECFD1AEE76FF00307ABE7000091 +:10B7100080B502F09DF880BD70B584B08E460021E2 +:10B7200000280391EFF3058146D0002944D1FAB1F6 +:10B730009369002B08BF1823382B16D81179C90735 +:10B7400013D15569946811684FEA950C002D08BF14 +:10B750004FF0800CFCB1D668602E1BD3D5B11569B3 +:10B76000C5B10024012555B91BE0002004B070BD0F +:10B770000124002118234FF0800C00258DB194681E +:10B7800012690294CDE900326246734601F010FF5F +:10B79000039011E00CB9D4689CB100250024002D61 +:10B7A000EDD14CB103AC00931FFA8CF273460194B7 +:10B7B00001F0CAFE012802D1039804B070BD002038 +:10B7C000E6E71469B4FA84F46409D6E710B5EFF338 +:10B7D000058100291CBF6FF0050010BD044660B153 +:10B7E0002046FFF7C1FB042804BF6FF0020010BD24 +:10B7F000204600F0ADFF002010BD6FF0030010BD2B +:10B80000F0B581B00D464EF2F4614DF2F816C2F279 +:10B810000101C2F201060F6831680446081D00F0FC +:10B820009FFD601C0AD14DB13068011D4AF6E01041 +:10B83000C2F2010000F0F2FD01B0F0BD3068E41981 +:10B8400044600AD34DF20420C2F20100006831685E +:10B85000043100F0C5FD01B0F0BD40F65400C2F265 +:10B86000000000683168043100F0BAFD4AF68C101F +:10B87000C2F2010001688C4238BF046001B0F0BD23 +:10B8800070B5044600F0E2FD4AF2F020C2F2010079 +:10B8900001684DF2F81501310160C2F20105296815 +:10B8A0004EF2F066C2F2010641B1306860B9286814 +:10B8B000E16AC06A884298BF2C6005E02C6000688D +:10B8C000012801D100F0E0F94AF2F820C2F20100AB +:10B8D00001680131016061644AF2FC21C2F2010198 +:10B8E000E06A0A68904288BF08604DF2082100EBC8 +:10B8F0008000C2F2010101EB8000211D00F08EFDED +:10B9000000F0C8FD306880B12868E16AC06A8842EA +:10B9100028BF70BD4EF60450CEF200004FF08051AB +:10B920000160BFF34F8FBFF36F8F70BD70B582B0F2 +:10B9300000F08CFD4EF2F866C2F20106306850BB92 +:10B940004AF66014C2F20104204600F039FD4EF2BE +:10B95000A065C2F20105284600F032FD4DF2FC1050 +:10B96000C2F20100046040F65800C2F2000040F24A +:10B97000B4724DF2A41305600025C2F20002C2F2B7 +:10B9800001030A201021009501F098F9306010B1F0 +:10B9900003A100F029FE00F07DFD02B070BD00BFE4 +:10B9A000546D725100000000F0B581B04EF2385570 +:10B9B000C2F201052868E0B14AF6F4164AF2F0270F +:10B9C000C2F20106C2F2010700F040FDF068C4684F +:10B9D000201D00F0C5FC386801383860286801383F +:10B9E000286000F057FD204600F058F8286800282D +:10B9F000EAD101B0F0BD000080B5026C002A08BF9A +:10BA000080BDD0E902C31344C360634524BF03680B +:10BA1000C360C36808461946F4F741FE80BD0000C4 +:10BA200070B5866B036C0446E3B115461AB3E06843 +:10BA30001A46F4F734FEE168206C2268091A914234 +:10BA4000E16003D2A16840420844E060A81EB0FA59 +:10BA500080F040093146002E18BF01210840361AF7 +:10BA6000002516E02068002598B9A06802F00CF8BF +:10BA7000A56005460DE060681A46F4F710FE216CDB +:10BA8000D4E90102002508446060904224BF206888 +:10BA90006060711C2846A16370BD000010B50446AB +:10BAA00090F85D00022808BF10BD012803D030B90E +:10BAB000206B00F007FD204600F004FD10BD4FF0A4 +:10BAC000500080F31188BFF36F8FBFF34F8F00BF1B +:10BAD000FEE70000416A00290FBF0020006B0068EC +:10BAE000C0F13800704700004DF2FC11C2F20101B4 +:10BAF00009680A68B2FA82F35B090360002A0EBF84 +:10BB00000020C8680068704740F64C10C2F2000080 +:10BB1000C21D22F0070210F0070CA0EB020318BFB1 +:10BB200010464AF6D812C2F201020021C2E9000111 +:10BB300049F69912C0F20102BCF1000F18BF1A4475 +:10BB40000244083A4DF2002322F00702C2F2010338 +:10BB50001A60C2E90011111A1A68C0E900214EF2F8 +:10BB6000D060C2F2010001604AF68810C2F2010002 +:10BB700001604EF2B460C2F2010001210170704711 +:10BB80004DF208244EF60455C2F20104CEF200052F +:10BB90004FF08056FFF708FF20680228FAD32E6086 +:10BBA000BFF34F8FBFF36F8FF4E70000002808BF8B +:10BBB000704780B500210160C0E902110021002218 +:10BBC000002301F007F9BDE880407047B0B5049D3F +:10BBD000002914BF2A602D60C5E90F012846012104 +:10BBE0001C4601F0B7F885F84C40B0BD2DE9F04790 +:10BBF0000A9C8246206B16460F46DDE908599100E3 +:10BC0000A5229846F4F7C2FD206B00EB8600A0F158 +:10BC1000040020F007067FB104F13400002100BFCA +:10BC20007A5C42547A5C1AB10F2901F10101F7D311 +:10BC3000002084F8430002E0002084F8340000274C +:10BC4000201D372D28BF3725E562C4E9135700F0C2 +:10BC5000C3FB04F1180000F0BFFBC5F13800A06180 +:10BC6000304651464246246164626765A76584F8A0 +:10BC70005C7000F04BFBB9F1000F206018BFC9F8F1 +:10BC80000040BDE8F0870000B0B54DF20825002463 +:10BC9000C2F20105281900F093FB1434B4F58C6F3F +:10BCA000F8D14AF67414C2F20104204600F088FB71 +:10BCB0004EF2B865C2F20105284600F081FB4EF253 +:10BCC000DC60C2F2010000F07BFB4AF6F410C2F225 +:10BCD000010000F075FB4AF6E010C2F2010000F02E +:10BCE0006FFB40F65400C2F2000004604DF20420E5 +:10BCF000C2F201000560B0BD80B54AF6D812C2F2AA +:10BD0000010200BF114612688242FBD3D1F804C081 +:10BD100001EB0C03834203D140686044486008464D +:10BD2000D0F804C000EB0C03934201D013460BE0A3 +:10BD30004DF20023C2F201031B689A4204D0D2E9FB +:10BD4000003E0EEB0C0242608142036018BF0860A7 +:10BD500080BD000080B58C46014641F804CF944573 +:10BD6000006108D99A4201D29C4511D24DF2FC10D3 +:10BD7000C2F2010007E08069D21A824208D240F67E +:10BD80005800C2F20000006800F02AFB002080BDCD +:10BD9000012080BD10B5044600F058FBA06BB0FA3E +:10BDA00080F0440900F076FB204610BD10B5044633 +:10BDB00000F04CFBA06BE16B401AB0FA80F0440934 +:10BDC00000F068FB204610BD08480068006880F35A +:10BDD00008884FF0000080F3148862B661B6BFF3A4 +:10BDE0004F8FBFF36F8F00DF00BF00BF08ED00E093 +:10BDF00070B582B04DF2FC12C2F201021268054623 +:10BE0000D2680E46D468201D00F0AAFA94F82800E3 +:10BE1000410704D400F0FE0084F8280010E0A06977 +:10BE20003246411920462B46FFF794FF40B10026C9 +:10BE3000204600212A460023009601F0C5FF20B1CC +:10BE4000216A2046884702B070BD4FF0500080F351 +:10BE50001188BFF36F8FBFF34F8F00BFFEE7000065 +:10BE60002DE9F04186B04EF2F867C2F2010738685A +:10BE700002A900224FF0000801F008F900286AD05A +:10BE800001AC02AD0BE000F0FE0086F8280000BF18 +:10BE900038682946002201F0F9F800285BD00298A2 +:10BEA000B0F1FF3F03DCDDE90320059990470298DC +:10BEB0000028EDD4049E706910B1301D00F050FAD6 +:10BEC000204600F0B3F802990929E1D80246DFE8DC +:10BED00001F0080808052A390808052A96F82800FC +:10BEE000D1E796F82800039BB16940F0010086F87D +:10BEF000280019443046FFF72DFF0028C8D0316ACA +:10BF00003046884796F828004007C1D50398B169A4 +:10BF100000230A1830460021CDF8008001F054FFBC +:10BF20000028B5D123E096F8280040F001010398DD +:10BF300086F82810B06188B1811830461346FFF7A3 +:10BF400009FFA5E796F8280081073FF59CAF30462A +:10BF500000F0B8FA9CE706B0BDE8F0814FF0500061 +:10BF600080F31188BFF36F8FBFF34F8FFEE74FF061 +:10BF7000500080F31188BFF36F8FBFF34F8F00BF66 +:10BF8000FEE7000070B582B00E46044600F038FDB2 +:10BF900001A800F04BF8019919B101F051FE02B06F +:10BFA00070BD05464EB9A54207D301F049FE2046B3 +:10BFB0002946FFF71DFF02B070BD4EB140F6580094 +:10BFC000C2F2000000680068B0FA80F0420900E0A8 +:10BFD00000224EF2F860C2F201000068611B00F01E +:10BFE00017FB01F02DFE0028D9D14EF60450CEF2F9 +:10BFF00000004FF080510160BFF34F8FBFF36F8F90 +:10C0000002B070BD40F65400C2F200000168096839 +:10C0100021B10068C068C068406801E04FF0FF309F +:10C020004AF68C11C2F201010860704770B50446EF +:10C0300001F028FC4DF2F416C2F201063168054603 +:10C04000884203D200F008F8012000E000202060C0 +:10C050002846356070BD00002DE9F04182B04DF2F8 +:10C06000FC17C2F201073868016891B34FF000086D +:10C0700009E000BF606038682946246100F0B0F92B +:10C080003868016829B3C068C4680668251D284659 +:10C0900000F066F9216A2046884794F82800400796 +:10C0A000EED5A0693044B042E4D8204600213246A3 +:10C0B0000023CDF8008001F087FE0028E0D14FF08A +:10C0C000500080F31188BFF36F8FBFF34F8F00BF15 +:10C0D000FEE740F65801C2F200010A6808603A60C3 +:10C0E00002B0BDE8F081000081B0002000904CF269 +:10C0F0002440C2F2010000684FF0500181F3118822 +:10C10000BFF36F8FBFF34F8F013001D0FEE700BF49 +:10C1100000980028FCD001B07047000082B001AC4C +:10C120002046FFF7E1FC0199FFF72CFFFFF798FE8F +:10C13000F6E70000F0B581B0044600F087F994F905 +:10C140004560012E0FDB04F1240500BF286850B1C3 +:10C15000284601F02DFD002818BF00F069FB70B2E1 +:10C16000013E0128F2DCFF2684F8456000F092F9D8 +:10C1700000F06CF994F94470012F0EDB04F1100506 +:10C18000286850B1284601F013FD002818BF00F0C0 +:10C190004FFB78B2013F0128F2DC84F8446000F0E4 +:10C1A00079F901B0F0BD00002DE9F04381B00446FB +:10C1B00000F026FC4DF20026C2F20106306800288D +:10C1C00008BFFFF7A1FC4EF2B468C2F2010898F86C +:10C1D0000000002818BF4FF0004020420DD000247E +:10C1E00001F02EFD60071ED04FF0500080F3118843 +:10C1F000BFF36F8FBFF34F8FFEE7C4B114F007009A +:10C2000004F108011EBF081A00F108015FEA41703D +:10C210000ED04FF0500080F31188BFF36F8FBFF343 +:10C220004F8F00BFFEE7204601B0BDE8F08300213C +:10C230004AF68819C2F20109D9F800004A1E824262 +:10C24000CDD24AF6D810C2F2010005682F4657F841 +:10C25000042F8A4211D22B685BB100BF1F4657F8EA +:10C26000042F28461D468A4207D22B68002BF5D1A1 +:10C2700003E04AF6D810C2F2010033689D42AED006 +:10C2800004682B68521A112A036010D368184307F8 +:10C2900009D04FF0500080F31188BFF36F8FBFF3C8 +:10C2A0004F8F00BFFEE742603960FFF725FD4EF279 +:10C2B000D0603968D9F80020C2F201000368511A31 +:10C2C0009942C9F8001038BF016098F80000396839 +:10C2D00000284FF0000018BF41F0004128604AF6E6 +:10C2E0009010C2F20100026808343960511C0160EC +:10C2F00076E700004DF2F810C2F20100016819B1B2 +:10C3000001680A6D01320A650068704703464CF205 +:10C31000E900C0F600004FF0807C21F0010103E944 +:10C3200003106FF0020043F8240CA3F1440043F81B +:10C33000202C704702EE100A4FF0FF30884030EE9C +:10C34000C01AB8EEC22AC04321EE021A02EE100A49 +:10C35000B8EEC22A81EE021A31EE000A70470000E0 +:10C36000D0E9013201699A60D1F804C0826884453D +:10C37000536008BF4A600022026108680138086003 +:10C38000086870474AF20053C2F2010303604AF2A0 +:10C390000030C2F201000860802010607047000089 +:10C3A0004EF23C53C2F2010303604AF26050C2F203 +:10C3B000010008604FF48070106070477047000003 +:10C3C0004FF0FF31024642F8081F00214260C0E9E9 +:10C3D00003220160704700000021016170470000E6 +:10C3E00080B5D1F800C01CF1010207D000F10803AC +:10C3F0009E465B681A686245FAD901E0D0F810E001 +:10C40000DEF8042008614A609160C1F808E0CEF8C7 +:10C41000041001680131016080BD0000D0F800C047 +:10C42000436808619A684B608A609A6899605160B5 +:10C430000CF1010101607047DFF80C00016841F464 +:10C4400070010160704700BF88ED00E04FF05000C0 +:10C4500080F31188BFF36F8FBFF34F8F4CF22440EE +:10C46000C2F2010001684A1C026001B170474EF639 +:10C470000450CEF200000068000608BF70474FF07D +:10C48000500080F31188BFF36F8FBFF34F8F00BF51 +:10C49000FEE700004CF22440C2F20100016839B10D +:10C4A0000139016018BF7047002080F31188704780 +:10C4B0004FF0500080F31188BFF36F8FBFF34F8FA1 +:10C4C000FEE70000B0B5002808BFB0BD04464EF23C +:10C4D000B460C2F20100007854F8041C002818BFB0 +:10C4E0004FF0004008420CD0A4F108052A6892B130 +:10C4F0004FF0500080F31188BFF36F8FBFF34F8F61 +:10C50000FEE74FF0500080F31188BFF36F8FBFF349 +:10C510004F8F00BFFEE721EA000044F8040C00F052 +:10C520006FFA4AF68811C2F2010154F8040C0A6845 +:10C53000104408602846FFF7DFFB4EF2D860C2F2D5 +:10C54000010001680131016001F07AFBB0BD00001B +:10C550004EF21000CEF2000000210160816040F236 +:10C560000001C2F20001096844F6D352C1F262022E +:10C57000A1FB02124FF0FF3101EB92114160072144 +:10C5800001607047EFF30580102814D34EF2F031AC +:10C59000CEF20001405C4AF2E521C2F201010978C5 +:10C5A000884208D24FF0500080F31188BFF36F8F9C +:10C5B000BFF34F8FFEE74EF60C50CEF200004AF26A +:10C5C000E8210068C2F20101096800F4E0608842D5 +:10C5D00098BF70474FF0500080F31188BFF36F8F02 +:10C5E000BFF34F8FFEE700004AF6981C0022C2F20C +:10C5F000010C00BF5CF8323023B10132082A08BFB9 +:10C600007047F7E70CEBC2034CF8321058607047E4 +:10C6100070B515460E460446FFF718FF94F844001F +:10C62000FF2804BF002084F8440094F84500FF2848 +:10C6300004BF002084F84500FFF72CFFA06B28B949 +:10C6400004F1240031462A4600F014F92046FFF791 +:10C6500071FD70BD10B5D8B104464AF2F420C2F2A3 +:10C660000100006848B14FF0500080F31188BFF31B +:10C670006F8FBFF34F8F00BFFEE700F0C1F9204678 +:10C680000021FFF7BDF801F0DBFA002818BF10BD4C +:10C690004EF60450CEF200004FF080510160BFF31F +:10C6A0004F8FBFF36F8F10BDB0B590B10D46D1B1B4 +:10C6B00004464AF2F420C2F201000068E8B14FF0EB +:10C6C000500080F31188BFF36F8FBFF34F8F00BF0F +:10C6D000FEE74FF0500080F31188BFF36F8FBFF378 +:10C6E0004F8F00BFFEE74FF0500080F31188BFF37B +:10C6F0006F8FBFF34F8F00BFFEE700F081F94EF25E +:10C70000F460C2F2010000682268904202EB050169 +:10C7100002D2914202D309E0914201D3814205D96C +:10C720002160081A0021FFF76BF800E0216001F09A +:10C7300087FA002818BFB0BD4EF60450CEF20000B4 +:10C740004FF080510160BFF34F8FBFF36F8FB0BDCB +:10C7500070B50446FFF77AFE4DF2F816002CC2F2CF +:10C76000010608BF3468251D2846FFF7F9FDA06AB9 +:10C7700018B104F11800FFF7F3FD4AF2F820C2F2F5 +:10C780000100016801310160306884420CD04AF236 +:10C79000F020C2F201000168013901602046FFF774 +:10C7A0007DF9FFF72FFC0DE04AF6F410C2F201000C +:10C7B0002946FFF733FE4EF23850C2F201000168FD +:10C7C00001310160FFF766FE4EF2F060C2F2010037 +:10C7D0000068E8B13068844218BF70BD4AF2F420A6 +:10C7E000C2F20100006840B14FF0500080F31188A0 +:10C7F000BFF36F8FBFF34F8FFEE74EF60450CEF2BC +:10C8000000004FF080510160BFF34F8FBFF36F8F77 +:10C8100070BD00004EF2D461C2F2010109680160EE +:10C820004EF2F461C2F201010968416070470000F4 +:10C830004EF2FC60C2F2010001210160704700006D +:10C8400010B568B10C464DF2F811C2F20101096849 +:10C850001831FFF7C5FD20460121FEF7D1FF10BDBD +:10C860004FF0500080F31188BFF36F8FBFF34F8FED +:10C87000FEE70000B0B590B10D464DF2F811C2F2DE +:10C880000101096814461831FFF7C8FD002C18BFD4 +:10C890004FF0FF3528462146FEF7B2FFB0BD4FF0FE +:10C8A000500080F31188BFF36F8FBFF34F8F00BF2D +:10C8B000FEE7000070B528B3026D04461AB3E06CC1 +:10C8C000884238BF0846012A1CD1E16A814208BF6C +:10C8D00070BD4DF2F812C2F201021268A2421CD0E1 +:10C8E000A269E062002A5CBFC0F13800A0614DF28D +:10C8F0000826606901EB8101C2F2010606EB8101A5 +:10C90000884214D070BD4FF0500080F31188BFF3FF +:10C910006F8FBFF34F8F00BFFEE74FF0500080F3E3 +:10C920001188BFF36F8FBFF34F8F00BFFEE7251D48 +:10C930002846FFF715FD4AF2FC21C2F20101E06A28 +:10C940000A68904288BF086000EB800006EB800018 +:10C950002946FFF763FD70BD10B586B0002405A819 +:10C9600004A903AACDE90444FFF70CFDDDE9032087 +:10C9700005990023CDE901014BF68130C0F6000096 +:10C980001DA1009400F014FE4EF2CC61C2F2010130 +:10C99000086010B101F0DEF90446601C22D0012CC1 +:10C9A0001ED14FF0500080F31188BFF36F8FBFF39B +:10C9B0004F8F4AF68C10C2F201004FF0FF31016038 +:10C9C0004EF2F060C2F20100012101604EF2F4600B +:10C9D000C2F2010000210160FEF7B8FA00F08AF807 +:10C9E00006B010BD4FF0500080F31188BFF36F8F79 +:10C9F000BFF34F8FFEE700BF49444C4500000000E5 +:10CA00004AF2F420C2F2010001680131016070476E +:10CA1000B0B54AF2F420C2F20100006830B14EF223 +:10CA2000FC60C2F2010001210160B0BD4EF2FC6069 +:10CA3000C2F2010000210160FEF7FAFA4AF2EC218D +:10CA4000C2F201010A684DF2F8159042C2F20105E6 +:10CA500004D92B68821A5C6D22445A6508602868E4 +:10CA6000006B0168B1F1A53F0BD14168B1F1A53F61 +:10CA700007D18168B1F1A53F03D1C068B0F1A53FEE +:10CA800004D0286829683431FFF798FC4AF2FC206A +:10CA9000C2F2010001684DF2082201EB8103C2F2EB +:10CAA000010252F823404CB902EB8303143B00BF50 +:10CAB000B1B153F814490139002CF9D001EB8103CD +:10CAC00002EB830252F8043F5B68141DA34213601B +:10CAD00001D15B6813601268D2682A600160B0BD42 +:10CAE0004FF0500080F31188BFF36F8FBFF34F8F6B +:10CAF000FEE7000080B582B04EF20040CEF20000AA +:10CB00004CF27021C4F20F11D0F800294B1C9A424C +:10CB100009D14FF0500080F31188BFF36F8FBFF33E +:10CB20004F8F00BFFEE7D0F800298A4209D14FF0AD +:10CB3000500080F31188BFF36F8FBFF34F8F00BF9A +:10CB4000FEE701784AF2E5220191FF2101700178A8 +:10CB5000C2F201028DF803109DF8031001F050019C +:10CB600011704AF2E821C2F2010107220A609DF920 +:10CB70000320B2F1FF3F0CDC0A6800BF9DF80330D0 +:10CB8000013A5B008DF803309DF90330002BF5D49A +:10CB90000A600A68032A2DD14FF4E06303EA0222F7 +:10CBA0000A6001990170D0F8201941F47001C0F8B1 +:10CBB0002019D0F8201941F07041C0F82019FFF772 +:10CBC000C7FC4CF22440C2F2010000210160FFF7D3 +:10CBD00033FC4EF63470CEF20000016841F0404163 +:10CBE0000160FFF7F1F8FFF713FFFFF77DFA002070 +:10CBF00002B080BD4FF0500080F31188BFF36F8FFB +:10CC0000BFF34F8FFEE7000080B54FF0500080F378 +:10CC10001188BFF36F8FBFF34F8F00F043FE30B129 +:10CC20004EF60450CEF200004FF08051016000201B +:10CC300080F3118880BD000010B50246012000215C +:10CC400000F018F80446FEF7B1FF204610BD0000C2 +:10CC500010B582B00B468446012000210022CDF899 +:10CC600000C000F02BF80446FEF7A0FF204602B0FB +:10CC700010BD0000F0B581B0B0B10546484350305A +:10CC800014460E46FFF790FA074650B1002007F110 +:10CC9000500287F846002846314623460097FEF7A3 +:10CCA00095FF384601B0F0BD4FF0500080F3118879 +:10CCB000BFF36F8FBFF34F8FFEE70000B0B582B0B8 +:10CCC00068B11D46ABB1F1B9EAB14FF0500080F345 +:10CCD0001188BFF36F8FBFF34F8F00BFFEE74FF098 +:10CCE000500080F31188BFF36F8FBFF34F8F00BFE9 +:10CCF000FEE74FF0500080F31188BFF36F8FBFF352 +:10CD00004F8F00BFFEE751B14AB94FF0500080F39A +:10CD10001188BFF36F8FBFF34F8F00BFFEE7502323 +:10CD20000193019B502B0AD1069B019C012485F89D +:10CD300046400095FEF74AFF284602B0B0BD4FF0CE +:10CD4000500080F31188BFF36F8FBFF34F8F00BF88 +:10CD5000FEE7000070B5F8B104460E46FFF776FB1B +:10CD60002068D4E90F12002502FB0103013901FB01 +:10CD70000201A563C4E90103FF20E16084F84400D7 +:10CD800084F8450004F110007EB1FFF719FB04F1AF +:10CD90002400FFF715FB18E04FF0500080F31188D6 +:10CDA000BFF36F8FBFF34F8FFEE7016869B100F0EB +:10CDB000FFFE50B14EF60450CEF200004FF080510D +:10CDC0000160BFF34F8FBFF36F8FFFF763FB01204D +:10CDD00070BD00002DE9F04F83B00292B8B11D463E +:10CDE0000E460446E9B1022D03D1E06B012840F064 +:10CDF0009A8000F033FD00BB0298F0B14FF0500074 +:10CE000080F31188BFF36F8FBFF34F8FFEE74FF0B2 +:10CE1000500080F31188BFF36F8FBFF34F8F00BFB7 +:10CE2000FEE7206C0028DED04FF0500080F3118820 +:10CE3000BFF36F8FBFF34F8FFEE7FFF707FBA06BCA +:10CE4000022D58D0E16B884255D304F1100801201F +:10CE50006F464FF0000B0DF108094FF0805A00BFEC +:10CE60000299002900F07B80C00702D03846FFF706 +:10CE7000D1FCFFF70FFBFFF7C3FDFFF7E7FA94F8CC +:10CE80004400FF2808BF84F844B094F84500FF2808 +:10CE900008BF84F845B0FFF7FDFA3846494600F070 +:10CEA0000FFB00285ED12046FEF780FFA0B102995B +:10CEB0004046FFF7C5FC2046FFF73CF900F0C0FEF6 +:10CEC00078B94EF60450CEF20000C0F800A0BFF3CF +:10CED0004F8FBFF36F8F04E02046FFF72BF900F070 +:10CEE000AFFEFFF7B3FAA06B022D04D0E16B8842CE +:10CEF0004FF00000B4D2204631462A46FEF790FD9E +:10CF000054F8241FC9B1204600F052FE08B34EF673 +:10CF10000450CEF200004FF080510160BFF34F8FFC +:10CF2000BFF36F8F15E04FF0500080F31188BFF30F +:10CF30006F8FBFF34F8F00BFFEE750B14EF6045026 +:10CF4000CEF200004FF080510160BFF34F8FBFF36E +:10CF50006F8FFFF79FFA012003B0BDE8F08FFFF756 +:10CF600099FA04E02046FFF7E5F800F069FE00209A +:10CF700003B0BDE8F08F00002DE9F04381B0E8B1C7 +:10CF80001E46914605460F4609B3022E02D1E86BB4 +:10CF9000012837D1FFF7F6FAEFF311884FF0500070 +:10CFA00080F31188BFF36F8FBFF34F8FA86B022EF2 +:10CFB00019D0E96B884216D300203FE04FF05000B3 +:10CFC00080F31188BFF36F8FBFF34F8FFEE7286C9C +:10CFD0000028DAD04FF0500080F31188BFF36F8F34 +:10CFE000BFF34F8FFEE795F84540A86B28463946BA +:10CFF0003246FEF715FDFF2C0DD0601C85F845006C +:10D0000001201BE04FF0500080F31188BFF36F8FB9 +:10D01000BFF34F8FFEE755F8240F70B1284600F09C +:10D02000C7FD0146B9F1000F4FF0010006D00029FD +:10D030001CBF0120C9F8000000E0012088F311881E +:10D0400001B0BDE8F0830000B0B5A8B18568044622 +:10D0500000F0FEFB85421CBF0020B0BDE068013837 +:10D06000E0601CBF0120B0BD20460021002200234B +:10D07000FFF7B0FE0120B0BD4FF0500080F31188E3 +:10D08000BFF36F8FBFF34F8FFEE700002DE9F04F26 +:10D0900085B0049298B10C460546002900F0A580A1 +:10D0A00000F0DCFBA8B9049898B14FF0500080F371 +:10D0B0001188BFF36F8FBFF34F8F00BFFEE74FF0B4 +:10D0C000500080F31188BFF36F8FBFF34F8F00BF05 +:10D0D000FEE705F1240005F11009019002AF0DF102 +:10D0E000100A4FF000080AE02846FFF723F800F086 +:10D0F000A7FD2846FEF74EFE002840F08480FFF78B +:10D10000A5F9D5F838B0BBF1000F1DD0284621464F +:10D11000FEF772FCABF10100A863286970B14846C4 +:10D1200000F046FD50B14EF60450CEF200004FF034 +:10D1300080510160BFF34F8FBFF36F8FFFF7AAF9E4 +:10D1400000200126A0B95FE0049850B1B8F1000FAB +:10D1500002D13846FFF75EFB4FF00108012038B9D5 +:10D1600052E0FFF797F90026002000284CD000BFBE +:10D17000FFF790F9FFF744FCFFF768F995F84400D2 +:10D18000FF2804BF002085F8440095F84500FF28DB +:10D1900004BF002085F84500FFF77CF9384651466A +:10D1A00000F08EF900289FD12846FEF7F3FDB0B1BC +:10D1B00004990198FFF744FB2846FEF7BBFF00F0F7 +:10D1C0003FFD00289BD14EF60450CEF200004FF0F8 +:10D1D00080510160BFF34F8FBFF36F8F8FE72846F9 +:10D1E000FEF7A8FF00F02CFD89E7286C00283FF42B +:10D1F00057AF4FF0500080F31188BFF36F8FBFF32C +:10D200004F8F00BFFEE70026304605B0BDE8F08F27 +:10D210002DE9F04381B000B3914605460E4631B387 +:10D22000FFF7B0F9EFF311884FF0500080F3118849 +:10D23000BFF36F8FBFF34F8FAC6B24B395F844707F +:10D2400028463146FEF7D8FB601EFF2FA8631CD08E +:10D25000781C85F8440001202AE04FF0500080F34C +:10D260001188BFF36F8FBFF34F8F00BFFEE7286CAD +:10D270000028D5D04FF0500080F31188BFF36F8F96 +:10D28000BFF34F8FFEE7002012E055F8100F70B18A +:10D29000284600F08DFC0146B9F1000F4FF0010067 +:10D2A00006D000291CBF0120C9F8000000E00120C1 +:10D2B00088F3118801B0BDE8F08300002DE9F04F3C +:10D2C00085B0049158B10446006C90B14FF0500005 +:10D2D00080F31188BFF36F8FBFF34F8FFEE74FF0DE +:10D2E000500080F31188BFF36F8FBFF34F8F00BFE3 +:10D2F000FEE700F0B3FA50B9049840B14FF0500087 +:10D3000080F31188BFF36F8FBFF34F8FFEE704F1F7 +:10D31000240004F1100501904FF0000802AF0DF158 +:10D32000100A4FF000094FF0000B0AE02046FEF70C +:10D3300001FF00F085FC2046FEF72CFD002840F0A0 +:10D340007F80FFF783F8A06BF0B10138A0632068FD +:10D3500010B9FEF7CFFFA060286870B1284600F032 +:10D3600027FC50B14EF60450CEF200004FF0805131 +:10D370000160BFF34F8FBFF36F8FFFF78BF801266C +:10D380000020B8B96FE000BF049850B1BBF1000FA6 +:10D3900002D13846FFF73EFA4FF0010B012048B9A1 +:10D3A00061E0B9F1000F62D1FFF774F800200026A8 +:10D3B000002858D0FFF76EF8FFF722FBFFF746F87A +:10D3C00094F84400FF2808BF84F8448094F845008E +:10D3D000FF2808BF84F84580FFF75CF838465146BF +:10D3E00000F06EF80028A1D12046FEF7D3FC28B942 +:10D3F0002046FEF79FFE00F023FCA2E7206838B924 +:10D40000FFF724F8A06800F089FB8146FFF742F897 +:10D4100004990198FFF714FA2046FEF78BFE00F0FE +:10D420000FFC00287FF48DAF4EF60450CEF20000C2 +:10D430004FF080510160BFF34F8FBFF36F8F80E7D4 +:10D44000B9F1000F0ED0FFF701F82046FEF742FBBE +:10D45000A168024608461146FFF72CFAFFF71AF8B2 +:10D46000002600E00026304605B0BDE8F08F4FF002 +:10D47000500080F31188BFF36F8FBFF34F8F00BF51 +:10D48000FEE7000070B568B1866804460D4600F0FE +:10D49000DFF986420FD020462946FFF70FFF58B923 +:10D4A000002070BD4FF0500080F31188BFF36F8FE4 +:10D4B000BFF34F8FFEE70120E1680131E16070BDED +:10D4C000B0B5D0B10D4611B30446FEF7BFFF4EF222 +:10D4D000F460C2F2010001682868421C21D04EF2BB +:10D4E000D4636268C2F20103D3F800C091421AD338 +:10D4F00023689C4517D0012422E04FF0500080F3B0 +:10D500001188BFF36F8FBFF34F8F00BFFEE74FF05F +:10D51000500080F31188BFF36F8FBFF34F8F00BFB0 +:10D52000FEE700240CE0891A884206D9401A2860D8 +:10D530002046FFF76FF9002402E000200124286054 +:10D54000FEF7A8FF2046B0BD2DE9F04383B00746A3 +:10D550009000984615468946FEF726FE78B10646A5 +:10D560006020FEF721FE38B10446066354B94FF03F +:10D57000FF3003B0BDE8F0833046FEF7A3FF002480 +:10D58000002CF4D0DDE90A10002284F85D20CDE9FA +:10D590000010384649462A4643460294FEF726FBC9 +:10D5A0002046FEF76DF9012003B0BDE8F0830000CE +:10D5B00070B586B00B9CCCB10C9E06B3602504956B +:10D5C000049D602D25D1049DDDF828C0022586F834 +:10D5D0005D5005AD3463CDE900C50296FEF706FB4C +:10D5E0003046FEF74DF9059806B070BD4FF050007B +:10D5F00080F31188BFF36F8FBFF34F8FFEE74FF0BB +:10D60000500080F31188BFF36F8FBFF34F8F00BFBF +:10D61000FEE74FF0500080F31188BFF36F8FBFF328 +:10D620004F8F00BFFEE70000F0B581B0D0B11D46BE +:10D63000174604460E46FEF709FF002D1CBFA06DDD +:10D64000286094F85C000221042F84F85C1012D842 +:10D650000125DFE807F023031C262000A16D3143DC +:10D66000A1651FE04FF0500080F31188BFF36F8F6A +:10D67000BFF34F8FFEE7A16D013113D04FF0500083 +:10D6800080F31188BFF36F8FBFF34F8FFEE7A16D5B +:10D690000131A16506E0022803D1002501283CD113 +:10D6A00003E0A6650125012837D1261D3046FEF787 +:10D6B00057FE4AF2FC21C2F20101E06A0A68904278 +:10D6C00088BF08604DF2082100EB8000C2F2010122 +:10D6D00001EB80003146FEF7A1FEA06A48B14FF091 +:10D6E000500080F31188BFF36F8FBFF34F8F00BFDF +:10D6F000FEE74DF2F811C2F20101E06A0968C96A59 +:10D7000088420AD94EF60450CEF200004FF0805104 +:10D710000160BFF34F8FBFF36F8FFEF7BBFE28464C +:10D7200001B0F0BD2DE9F04120B31D461746044677 +:10D730000E46FEF727FFEFF311884FF0500080F3FD +:10D740001188BFF36F8FBFF34F8F002D1CBFA06DEB +:10D75000286094F85C000221042F84F85C1012D831 +:10D760000125DFE807F023031C262000A16D3143CB +:10D77000A1651FE04FF0500080F31188BFF36F8F59 +:10D78000BFF34F8FFEE7A16D013113D04FF0500072 +:10D7900080F31188BFF36F8FBFF34F8FFEE7A16D4A +:10D7A0000131A16506E0022803D10025012849D1F5 +:10D7B00003E0A6650125012844D1A06A48B14FF0D5 +:10D7C000500080F31188BFF36F8FBFF34F8F00BFFE +:10D7D000FEE74AF2F420C2F20100006830B14EF2D6 +:10D7E000DC6004F11801C2F2010015E0261D30468C +:10D7F000FEF7B6FD4AF2FC21C2F20101E06A0A68B6 +:10D80000904288BF08604DF2082100EB8000C2F210 +:10D81000010101EB80003146FEF700FE4DF2F811E8 +:10D82000C2F20101E06A0968C96A88420AD9069809 +:10D8300000281CBF012101604EF2FC60C2F2010011 +:10D840000121016088F311882846BDE8F0810000BD +:10D850004DF2F810C2F20100006870474EF2F0601D +:10D86000C2F201000068002804BF012070474AF29C +:10D87000F420C2F201000068B0FA80F040094000D4 +:10D88000704700004EF2F460C2F201000068704779 +:10D8900080B5FEF777FE4EF2F460C2F20100006838 +:10D8A00080BD00002DE9F04F81B04AF2F420C2F2B1 +:10D8B0000100006840B14AF69410C2F2010001680C +:10D8C00000240131016092E04EF2F460C2F20100E6 +:10D8D00001684E1C066021D340F65400C2F20000DD +:10D8E0000168096849B14FF0500080F31188BFF317 +:10D8F0006F8FBFF34F8F00BFFEE74DF20422C2F2DD +:10D9000001020168136803604EF2D4601160C2F234 +:10D910000100016801310160FEF774FB4AF68C11C9 +:10D92000C2F2010108684DF2F81A4DF20828864249 +:10D93000C2F2010AC2F2010801D2002445E040F619 +:10D940005407C2F2000738680024006898B34AF20E +:10D95000FC2BC2F2010B19E0D9F82C00DBF8001007 +:10D96000884288BFCBF8000000EB800008EB800005 +:10D970002946FEF753FDD9F82C00DAF80010C96AE1 +:10D980003A68884228BF01241068B8B13868C06876 +:10D99000D0F80C904D4655F8040F864210D3284617 +:10D9A000FEF7DEFCD9F828000028D5D009F11800D0 +:10D9B000FEF7D6FCD0E74FF0FF3005E04FF0FF3028 +:10D9C0004AF68C11C2F201010860DAF80000C06A60 +:10D9D00000EB800058F8200001284EF2FC60C2F2F3 +:10D9E000010088BF01240068002818BF01242046D8 +:10D9F00001B0BDE8F08F00002DE9F0411E4615464C +:10DA000088460746FEF722FD4DF2F814C2F20104E3 +:10DA1000206890F85C00022819D02068816D21EA06 +:10DA20000701816520684FF0010180F85C1076B134 +:10DA300030460121FDF7E4FE4EF60450CEF2000020 +:10DA40004FF080510160BFF34F8FBFF36F8FFEF730 +:10DA500021FDFEF7FBFC15B12068806D2860206871 +:10DA6000002590F85C100020022905D121680125CD +:10DA70008A6D22EA08028A65216881F85C00FEF757 +:10DA800009FD2846BDE8F081B0B580B104464DF2ED +:10DA9000F810C2F201000068A0420AD04FF0500016 +:10DAA00080F31188BFF36F8FBFF34F8FFEE7002025 +:10DAB000B0BD206D38B3013820654FF0000018BFAD +:10DAC000B0BDE16AE26C91421CD0251D2846FEF7EC +:10DAD00047FCE06CC0F13801A1614AF2FC21E06230 +:10DAE000C2F201010A68904288BF08604DF2082125 +:10DAF00000EB8000C2F2010101EB80002946FEF735 +:10DB00008DFC0120B0BD4FF0500080F31188BFF3B1 +:10DB10006F8FBFF34F8F00BFFEE70000F0B581B0FD +:10DB200000B34DF2F816C2F201060446C06A31682D +:10DB3000C96A884219D2A169002904D43168C96A26 +:10DB4000C1F13801A1614DF20827616900EB800045 +:10DB5000C2F2010707EB800081420FD03068C06A33 +:10DB6000E06221E0002001B0F0BDE16C3068C26AE3 +:10DB70000020914238BF012001B0F0BD251D28468C +:10DB8000FEF7EEFB30684AF2FC21C06AC2F20101E6 +:10DB9000E0620A68904288BF086000EB800007EBF3 +:10DBA00080002946FEF73AFC012001B0F0BD0000DC +:10DBB000B0B5C068C5687DB105F118042046FEF710 +:10DBC000CFFB4AF2F420C2F20100006868B14EF2C5 +:10DBD000DC60C2F201001DE04FF0500080F31188BC +:10DBE000BFF36F8FBFF34F8FFEE72C1D2046FEF76C +:10DBF000B7FB4AF2FC21C2F20101E86A0A689042CE +:10DC000088BF08604DF2082100EB8000C2F20101DC +:10DC100001EB80002146FEF701FC4DF2F811C2F243 +:10DC20000101E86A0968C96A884291BF00204EF282 +:10DC3000FC61C2F20101012088BF0860B0BD000094 +:10DC40002DE9F04F81B04AF2F424C2F201042068B9 +:10DC500068B1FEF7FBFB206801382060206880B1C6 +:10DC60000024FEF717FC204601B0BDE8F08F4FF00E +:10DC7000500080F31188BFF36F8FBFF34F8F00BF49 +:10DC8000FEE74AF2F020C2F20100006800285DD0F1 +:10DC90004EF2DC66C2F2010630684EF2FC68C2F257 +:10DCA000010890B34AF2FC274DF208294DF2F81B07 +:10DCB000C2F20107C2F20109C2F2010B4FF0010AE0 +:10DCC000F068C56805F11800FEF74AFB2C1D2046D8 +:10DCD000FEF746FBE86A3968884288BF386000EB87 +:10DCE000800009EB80002146FEF798FBE86ADBF82C +:10DCF0000010C96A884228BFC8F800A03068002810 +:10DD0000DED1002D18BFFEF77DF94AF69414C2F259 +:10DD10000104256855B10126FFF7C4FD002818BF8E +:10DD2000C8F80060013DF7D100202060D8F800005D +:10DD300070B14EF60450CEF200004FF080510160F9 +:10DD4000BFF34F8F0124BFF36F8F8AE7002488E76A +:10DD5000002486E780B586B0FDF7E8FD4EF2F86056 +:10DD6000C2F20100006808B30020CDE9040005A854 +:10DD700004A903AAFEF714FBDDE903200221DDF864 +:10DD800014C0CDE900104CF21D10C0F600000CA12B +:10DD90000023CDF808C0FFF70BFC4AF60821C2F2B9 +:10DDA0000101086010B1012006B080BD4FF05000A5 +:10DDB00080F31188BFF36F8FBFF34F8FFEE700BF73 +:10DDC000546D72205376630010B584B0A8B14EF242 +:10DDD000F864C2F2010484462068C0B10529CDE987 +:10DDE0000012CDF808C015DCFFF738FD01462068A9 +:10DDF000022916D1069A694615E04FF0500080F3CB +:10DE00001188BFF36F8FBFF34F8F00BFFEE7002075 +:10DE100004B010BD69461A460023FFF7ADF804B000 +:10DE200010BD694600220023FEF7D4FF04B010BDE8 +:10DE30005FEA400C08BF91F0000F4FEA8C234FEAD5 +:10DE4000C12243EA51514FEA1C5018BF00F5F0407F +:10DE50004FEA300018BF41F000415FEA6C5C00F00F +:10DE60002980BCF1FF3F08BF40F080407047130C91 +:10DE700006BF12044FF0100C4FF0000C130E04BF3D +:10DE800012020CF1080C130F04BF12010CF1040C68 +:10DE9000930F04BF92000CF1020CD30F04BF520089 +:10DEA0000CF1010C11464FF00002A0F11F00A0EB95 +:10DEB0000C00704711F0004F08BF704731F000416F +:10DEC0003FF4D5AF0B0C06BF09044FF0100C4FF018 +:10DED000000C0B0E04BF09020CF1080C0B0F04BF61 +:10DEE00009010CF1040C8B0F04BF89000CF1020C2A +:10DEF000CB0F04BF49000CF1010CCCF1200322FA36 +:10DF000003F341EA030102FA0CF2A0EB0C0000F16A +:10DF10000100704723F07F4720F07F4C80EA030028 +:10DF200000F00040ACEB070303F57C5303F1FF0363 +:10DF30002DE9804909B44FEA144324EA03484FEA23 +:10DF4000154B25EA0B4E0FF2042606EB13273E78FD +:10DF500003FB0667C7F5000707FB06F64FEAD64640 +:10DF600006F102064FEA543707FB066CCCF1005C61 +:10DF70004FEA1C472CEA074C0CFB06F507FB06F49E +:10DF800004EB15464FEA961649085FEA320234BFA1 +:10DF900000204FF000404FEAD13706FB07FC4FEA64 +:10DFA0001C4C0CFB0BF7D21B03FB0CF761EB0701BE +:10DFB0000CFB0EF7B0EB074072EB17420CFB08F7B7 +:10DFC00034BFA2EB0742B2EB074261EB17414FEAC5 +:10DFD0000C444FEA910706FB07FC4FEA1C4C0CFB74 +:10DFE0000BF7B0EBC74072EB573203FB0CF734BFB3 +:10DFF000A2EBC742B2EBC74261EB57310CFB0EF705 +:10E00000B0EBC70072EB57720CFB08F734BFA2EB02 +:10E01000C702B2EBC70261EB57714FEA816141EA77 +:10E0200092114FEA826242EA90124FEA806004EB5A +:10E03000CC04039F4FEAD13706FB07FC4FEA1C4C88 +:10E040000CFB0BF7D21B03FB0CF761EB07010CFB7E +:10E050000EF7B0EB074072EB17420CFB08F734BF2A +:10E06000A2EB0742B2EB074261EB17414FEA8C5536 +:10E0700004EB9C244FEA910706FB07FC4FEA1C4C7B +:10E080000CFB0BF7B0EBC74072EB573203FB0CF7FE +:10E0900034BFA2EBC742B2EBC74261EB57310CFB76 +:10E0A0000EF7B0EBC70072EB57720CFB08F734BFEA +:10E0B000A2EBC702B2EBC70261EB57714FEA816175 +:10E0C00041EA92114FEA826242EA90124FEA80607E +:10E0D00015EB4C2544F100044FEAD13706FB07FC51 +:10E0E0004FEA1C4C0CFB0BF7D21B03FB0CF761EB4C +:10E0F00007010CFB0EF7B0EB074072EB17420CFB6D +:10E1000008F734BFA2EB0742B2EB074261EB1741BD +:10E110004FEA813141EA92414FEA823242EA90422B +:10E120004FEA80304FEA0C7615EB1C1544F10004E1 +:10E1300048EA03434EEA0B484FF0000EB2EB080CDE +:10E1400071EB030724BF624639464EEB0E0E4FF0CB +:10E15000000B0018524149414BEB0B0BB2EB080C82 +:10E1600071EB03077BF1000B24BF624639464EEB8F +:10E170000E0E4FF0000B0018524149414BEB0B0BB8 +:10E18000B2EB080C71EB03077BF1000B24BF624676 +:10E1900039464EEB0E0E51EA020718BF46F0010653 +:10E1A00016EB0E7655F1000254F1000103D5BDE8DF +:10E1B0008901BDE80088BDE88901BDE80048B619BD +:10E1C000524141EB0101A3F10103704780807F7E42 +:10E1D0007D7C7B7A797877767675747372717170DD +:10E1E0006F6E6E6D6C6C6B6A6A696868676666658F +:10E1F0006464636362616160605F5F5E5E5D5D5C1D +:10E200005C5B5B5A5A59595858575756565555558D +:10E210005454535352525251515050504F4F4F4EED +:10E220004E4D4D4D4C4C4C4B4B4B4A4A4A4949493B +:10E23000484848474747474646464545454444447D +:10E240004443434343424242424141419C46002BA6 +:10E2500030D477002BD04FEA37071CB503B44FF00A +:10E2600010004FF01001BAF1000F06D0BCF1000F02 +:10E27000DCBF40F0080040F008014FF000000FBC88 +:10E28000BDE810400BF1010BBBF1010F08BF5FEAC5 +:10E29000170722BF12F1010211F101014FF00041F5 +:10E2A00043F1000300F0004043EA00007047F9D357 +:10E2B0005708D0E746EA06464FEA164613F1400FE4 +:10E2C0001FDD13F1200FDFBF16430A460021203364 +:10E2D0005B42BED0C3F1200746EA06464FEA164627 +:10E2E00002FA07F746EA070622FA03F2C3F120070B +:10E2F00001FA07F742EA070221FA03F14FF000039F +:10E30000A7E746EA020646EA06464FEA164646EA06 +:10E310000106BCBF46EA0646360C4FF000034FF03C +:10E3200000024FF0000194E72DE9804C70B49A464A +:10E33000934691E8380007C831EA400C48BF34EAF8 +:10E34000430C03D5FFF7E6FDFFF780FFF0BCBDE807 +:10E35000008C2DE9804C70B49A46934691E83800C1 +:10E3600007C810F0804F08BF13F0804F03D100F0B2 +:10E3700005F8FFF76BFFF0BCBDE8008C20F07F478D +:10E3800023F07F4C80EA030000F0004007EB0C0311 +:10E39000A3F57C53A3F1FE0392F0000F00F0B380CD +:10E3A00095F0000F00F077802DE901494FEA114008 +:10E3B00021EA00484FEA144624EA064700FB06FC1F +:10E3C00008FB06F607FB08F818EB06484CEB164C62 +:10E3D00000FB07F718EB07484CEB17404FEA124BCE +:10E3E00022EA0B4E4FEA154625EA06470BFB06FCD0 +:10E3F0000EFB06F607FB0EFE1EEB064E4CEB164C14 +:10E400000BFB07F71EEB074E4CEB174B18EB0B08FB +:10E4100040F1000018EB0E0B58EB000840F1000033 +:10E420008F1A4FF000014FF000063CBFC943661B36 +:10E4300014BFB5EB040C00213CBFC943F61B4FEAE7 +:10E44000174427EA04454FEA1C472CEA074C04FB13 +:10E45000076205FB07F70CFB05F616EB074642EBD8 +:10E46000174204FB0CFC16EB0C4642EB1C421BEB68 +:10E47000060658EB020241414EEA8E0E46EA9E061F +:10E4800001D5BDE80189B619524141EB0101A3F163 +:10E490000103BDE801894FEA144524EA05464FEA25 +:10E4A000114721EA074C05FB07F406FB07F70CFBB5 +:10E4B00006F111EB074144EB174405FB0CFC11EB93 +:10E4C0000C4144EB1C444FEA124722EA074C05FB7F +:10E4D00007F206FB07F70CFB06F616EB074642EBC6 +:10E4E000174205FB0CFC16EB0C4642EB1C456A1868 +:10E4F00054F1000148BF7047B619524141EB010188 +:10E50000A3F10103704795F0000F37D04FEA114295 +:10E5100021EA02464FEA144724EA074C02FB07F1BE +:10E5200006FB07F70CFB06F414EB074441EB17411D +:10E5300002FB0CFC14EB0C4441EB1C414FEA154769 +:10E5400025EA074C02FB07F506FB07F70CFB06F66E +:10E5500016EB074645EB174502FB0CFC16EB0C4689 +:10E5600045EB1C42121951F1000148BF7047B61922 +:10E57000524141EB0101A3F1010370474FEA1445F9 +:10E5800024EA05464FEA114721EA074C05FB07F14B +:10E5900006FB07F70CFB06F212EB074241EB1741B3 +:10E5A00005FB0CFC12EB0C4251EB1C414FF000063A +:10E5B00048BF7047921841EB0101A3F10103704776 +:10E5C00003B401984100009850EAC12018BF04200C +:10E5D0004A0D18BF40F0010040F2FF72B2EB515FEC +:10E5E00008BF40F00200012808BF052002B07047B4 +:10E5F0004100080218BF04200A0E18BF40F00100B5 +:10E600004FF07F4232EA010108BF40F002000128CA +:10E6100008BF05207047000010B54FF00E402DEDEB +:10E62000028BB0EE408A18EE104A00EB4400B0F1C5 +:10E63000506F4AD84FF0FC40B0EB440F22D2B0EEFE +:10E64000C80AF7EE000A30EEC00AF6EE000A60EEE5 +:10E65000208A18EE900A01F0B2F801EE100A14F0C8 +:10E66000004F1DBFDFED2D0A9FED2D0AB1EE411ABF +:10E67000DFED2C0A08BF9FED2C0AF8EE001A21EE00 +:10E68000218A05E0DFED290A68EE088AB0EE600A0B +:10E690009FED271ADFED271A30EE080A48EE811A9F +:10E6A0009FED251A08EEA11ADFED241A48EE811A13 +:10E6B0009FED231A08EEA11A68EE281ABDEC028B12 +:10E6C00001EE810A30EE200A10BD4FF0E440B0EBBD +:10E6D000440F0CD918EE100AFFF78AFF042808BF70 +:10E6E00000F0A0FFB0EE480ABDEC028B10BD4FF069 +:10E6F0007F40B0EB440F07D2B0EE480ABDEC028B6E +:10E70000BDE8104000F080BF0120F2F776F8BDECC4 +:10E71000028BBDE8104000F07DBF00000000C9BFC3 +:10E7200022AAFDB90000C93F22AAFD39000000005D +:10E7300024FE1C3DC78AD83C1E67383D1B93993D7B +:10E74000AFAA2A3E0000000070B59B482DED020BD9 +:10E750002DED068B079D25F00044A04218DC97485C +:10E76000844202DC0AD1069840B19DED060BBDEC57 +:10E77000068B02B0BDE8704000F012BF002DCCBF88 +:10E780009FED8F0B9FED900BBDEC068B02B070BD23 +:10E790008F48A04215DD8F48A042D8BF4FF0FF340C +:10E7A00058DD9DED060B51EC100BFFF709FF042817 +:10E7B00008BF00F019FF9DED060BBDEC068B02B003 +:10E7C00070BD9DED060B51EC100B00F0ECFFCDE998 +:10E7D000060181489FED828BA0423CDD8248A04229 +:10E7E0001FDD00249FED82AB9DED060B53EC1A2B31 +:10E7F00051EC100B01F056F89DED060B41EC190B96 +:10E8000053EC1A2B51EC100B01F04EFB53EC182B70 +:10E8100001F0C8FD53EC192B01F0F8F8CDE9060121 +:10E8200049E09DED060B012453EC182B51EC100B25 +:10E8300001F038F89DED060B41EC190B53EC182B49 +:10E8400051EC100B01F0AEFD53EC192B01F0DEF88A +:10E85000CDE906012FE06848A0421FDD02249FEDAC +:10E86000689B9DED060B53EC192B51EC100B01F03E +:10E870001BFB53EC182B01F015F89DED060B41EC3A +:10E88000180B53EC192B51EC100B01F08BFD53ECD2 +:10E89000182B01F0BBF8CDE906010CE09DED060B4D +:10E8A000032453EC102B9FED580B51EC100B01F08F +:10E8B000ADF8CDE906019DED060B53EC102B51ECA4 +:10E8C000100B01F0F1FA41EC180B53EC182B01F08E +:10E8D000EBFA41EC190B4E480621B0EE490AF0EE76 +:10E8E000690A784400F0E0FD53EC182B51EC100B52 +:10E8F00001F0DAFA41EC180B4648B0EE490AF0EEA6 +:10E90000690A0521784400F0CFFD53EC192B51EC36 +:10E91000100B01F0C9FA41EC100B51EC180B53EC41 +:10E92000102B002C0EDA00F0BDFF9DED061B53EC02 +:10E93000112B01F0B9FA9DED061B53EC112B01F0E0 +:10E9400059FC35E000F0AEFF9DED061B53EC112B9A +:10E9500001F0AAFA41EC100B2F48784400EBC400F8 +:10E9600090ED001B51EC100B53EC112B01F01AFD34 +:10E970009DED061B53EC112B01F014FD41EC100B27 +:10E980002648784400EBC40090ED001B51EC100BBE +:10E9900053EC112B01F02EFC41EC100B002DA2BF0B +:10E9A000BDEC068B02B070BD51EC100B00F03CFFCB +:10E9B00041EC100B01E70000000010440000F07F64 +:10E9C000182D4454FB21F93F182D4454FB21F9BF65 +:10E9D0000000DC3F0000203E0000F33F000000008C +:10E9E000000000000000F03F0000E63F00000000D3 +:10E9F0000000000000000040008003400000000014 +:10EA0000000000000000F83F000000000000F0BF20 +:10EA1000C21E0000781E0000021E0000BA1D000089 +:10EA200070B56F4E2DED040B2DED048B82B0DDF82B +:10EA300024C0DDE907235C422CF000411C4341EA7D +:10EA4000D474069D22F00040B44205D86C422C4399 +:10EA500040EAD474B4420BD99DED081B9DED060B22 +:10EA600002B0BDEC048B04B0BDE8704000F0A2BD64 +:10EA7000ACF14054A4F17F641C430BD0022404EA9F +:10EA8000AC7444EAD27405439FED578B9FED582B2D +:10EA900007D015E09DED060B51EC100B00F07BFE4E +:10EAA00042E0002C11BF012C9DED060B02B0BDEC25 +:10EAB000048B04BF04B070BD022C38D0032C3BD0B3 +:10EAC0000B439FED4D1B9FED4E0B0AD0B14218D169 +:10EAD000B04209D121F0804120F080400991079097 +:10EAE0000FE0002A15DA10E0474B7B44002C08BFEA +:10EAF00093ED000B0DD0012C10D0022C17D0032C5D +:10EB00001AD0B0421DD1002A03DAB0EE410AF0EE6D +:10EB1000610A02B0BDEC048B04B070BD93ED000B34 +:10EB200051EC100B00F080FE41EC100BF1E7B0EE61 +:10EB3000480AF0EE680AECE7B0EE420AF0EE620A2C +:10EB4000E7E7401A00159FED329B3C28C8BF8DEDCA +:10EB5000000B17DCBCF1000FBCBF10F13C0F8DEDBA +:10EB6000009B0FDB9DED080B53EC102B9DED060B6E +:10EB700051EC100B00F04AFF00F015FE00F00BFE08 +:10EB8000CDE90001B4B1012C10D0022C9FED220B75 +:10EB900053EC102B9DED000B51EC100B19D001F034 +:10EBA00001FC53EC182B01F0FDFBBDE7019880F050 +:10EBB000004001909DED000B53EC192B51EC100B14 +:10EBC00001F07EF804BF0220F1F717FE9DED000B67 +:10EBD0009FE701F0E7FB53EC182B01F00BFBA3E7D9 +:10EBE0000000F07F00000000182D4454FB21094074 +:10EBF000182D4454FB2109C0182D4454FB21F9BFA2 +:10EC0000182D4454FB21F93FEA1C000000000000CD +:10EC10000000000000000000075C143326A6A13CA1 +:10EC200070B54FF068422DED048BF0EE408A18EE7F +:10EC3000900AB0EE608A18EE101A02EB4003B3F1AE +:10EC4000654F3CBF02EB4102B2F1654F7DD200BF80 +:10EC5000C0F3C753C1F3C7529A1A1B2A09DD10F03B +:10EC6000004F14BF9FED830A9FED830ABDEC048B18 +:10EC700070BD12F11A0F36DA11F0004F09D010F002 +:10EC8000004F0CBF9FED7D0A9FED7D0ABDEC048B0C +:10EC900070BD88EE889A19EE100AFFF7A9FC0428C7 +:10ECA00008BF00F0BFFC18EE900AFFF7A1FC054674 +:10ECB00018EE100AFFF79CFC044619EE100AFFF745 +:10ECC00097FC042D18BF052D08D1042C18BF052C66 +:10ECD00004D1002804BF0220F1F78FFDB0EE490AED +:10ECE000BDEC048B70BD4200B2EB410F3AD910F07D +:10ECF000004F19BFDFED630A9FED630ADFED630A82 +:10ED00009FED630AB0EE481A0A46B1EE688A80F0B9 +:10ED10000041F0EE418A10460A1A5200B2F1807F9B +:10ED200034D2484010F0004FDFED5A1A9FED5A2AB6 +:10ED30001DBFBEEE001A70EEE10A30EE420AB6EEDA +:10ED4000001A08BF70EEA10A00E040E008BF30EEF4 +:10ED5000020AB0EE682A01EE482A08EE818AC2EE65 +:10ED6000081A15E011F0004F04BF9FED4C0AF0EEB9 +:10ED7000400AD1D010F0004F19BFDFED490A9FEDD6 +:10ED8000490ADFED490A9FED490AC5E7C8EE881A2E +:10ED900021EEA11A9FED462ADFED462A41EE022A16 +:10EDA0009FED452A01EE222ADFED442A41EE022A98 +:10EDB0009FED432ABDEC048B01EE222A21EE811A3D +:10EDC00001EE020A30EE210A30EE200A70BD4FF04B +:10EDD0007F42B2EB400F28BFB2EB410F09D2F0EEF9 +:10EDE000480AB0EE680ABDEC048BBDE8704000F044 +:10EDF0000EBC40EA01035B0008BF41F0FF410BD0AD +:10EE0000B2EB400F08BFB2EB410F08D120F08040B9 +:10EE100008EE900A21F0804108EE101A18E7B2EBD4 +:10EE2000400F12BF5FEA410340F0FF4001F0004194 +:10EE30003FF40EAFB2EB410F12BF5FEA400200F0A9 +:10EE4000004041F0FF413FF403AF4A0092EA400323 +:10EE50003FF5FEAE002AACBF9FED1A0A9FED1A0ADD +:10EE600068EE808A28EE008A18EE900A18EE101AD2 +:10EE7000EEE60000DB0FC9BFDB0FC93FDB0F4940E7 +:10EE8000DB0F49C00000C9BF22AAFDB90000C93F7D +:10EE900022AAFD390060ED3EC30ACE370000000013 +:10EEA000000049C022AA7DBA0000494022AA7D3A4A +:10EEB0002DAD65BD8FB8D53D0FB511BE61C84C3EB7 +:10EEC000A8AAAABE0000804F0000802F10EE101AE2 +:10EED00008B5444A6846B2EB410F28D94FF0E640E6 +:10EEE000B0EB410F94BF00204FF0FF30009000982E +:10EEF000002861DB60EE000A10F0010F45D010F031 +:10EF0000020FDFED391A9FED391A00EEA11ADFED7D +:10EF1000381A40EE811A21EEA01AF0EE400A40EEB7 +:10EF2000010A08BFF1EE600AB0EE600A08BD314B7D +:10EF300021F0004293423CD911F0004FDFED2E0A40 +:10EF400020EE201ADFED2D0A19BF31EE601A71EEA6 +:10EF5000200A31EE201A71EE600ABDEEE01A11EEC1 +:10EF6000100A9FED271A00F0030000EEC10A9FED82 +:10EF7000251A009000EEC10A9FED231A00EEC10A87 +:10EF80009FED221A00EEC10AB1E79FED211A9FED15 +:10EF9000210A10F0020F00EE810A9FED1F1A00EE09 +:10EFA000801AB7EE000A00EE810A18BFB1EE400ADF +:10EFB00008BD00F03FFB9AE710EE100A4000B0F1E8 +:10EFC0007F4F3CBFB7EE000A08BD07D14FF00100EC +:10EFD000F1F713FCBDE8084000F01CBBBDE8084099 +:10EFE00000F012BBB61F927E336D4CB9DA82083C3A +:10EFF000A0AA2ABE490E494683F9223F0000004BD1 +:10F000000000C93F00A0FD390020A2331A61342C52 +:10F01000B93AB2BACA9F2A3DDDFFFFBE10B52DED49 +:10F02000040B86B09DED060B10EE100A10EE901A40 +:10F030008DED000B002818BF0120084320F0004090 +:10F04000C0F17F6000F1E040C00F21D19DED080BC1 +:10F0500010EE101A10EE900A8DED000B002918BF6B +:10F060000121084320F00040C0F17F6000F1E04042 +:10F07000C00F0DD129490798B1EB400F04BF069886 +:10F08000002842D00998400004BF089800283CD0CE +:10F090009DED080B53EC102B9DED060B51EC100B66 +:10F0A00000F0FAFFCDE902019DED020B40F2FF7185 +:10F0B00010EE900A8DED000B31EA105021D0079828 +:10F0C000039900F0004001F00041884219D09DED05 +:10F0D000080B8DED040B9DED020B8DED000B10EE7A +:10F0E000900A059961F31E0005909DED041B9DEDAE +:10F0F000020B51EC110B53EC102B01F07BF8CDE916 +:10F1000002019DED020B0AB010BD0120F1F775FB65 +:10F110000AB0BDE8104000F057BA00000000E0FF60 +:10F1200000B510EE101A2DED028B81B0524A6846E0 +:10F13000B2EB410F2ED94FF0E640B0EB410F94BF38 +:10F1400000204FF0FF3000900098B0EE408A002879 +:10F150006ADB10F0010F4BD068EE080A9FED471AEA +:10F160009FED470A00EE810A9FED461A10F0020F4C +:10F1700000EE801AB7EE000A00EE810A02BF01B06D +:10F18000BDEC028B00BD00BF01B0B1EE400ABDEC8A +:10F19000028B00BD3C4B21F00042934241D911F05B +:10F1A000004FDFED3A0A20EE201ADFED390A19BFD1 +:10F1B00031EE601A71EE200A31EE201A71EE600A0B +:10F1C000BDEEE01A11EE100A9FED321A00F00300B6 +:10F1D00000EEC10A9FED301A009000EEC10A9FEDCB +:10F1E0002F1A00EEC10A9FED2E1A00EEC10AABE7FE +:10F1F00028EE080A9FED2B1ADFED2B0A10F0020F04 +:10F2000040EE010A9FED291A00EE201A61EE000A75 +:10F21000B0EE480A08EE200AB6D101B0BDEC028B70 +:10F2200000BD00F007FA8FE718EE100A4000B0F1B9 +:10F230007F4F0DD218EE100AFFF7DAF9042808BF45 +:10F2400000F0F0F9B0EE480A01B0BDEC028B00BD51 +:10F2500009D10120F1F7D1FA01B0BDEC028B5DF8C4 +:10F2600004EB00F0D7B901B0B0EE480ABDEC028B58 +:10F270005DF804EB00F0C8B9B61F927EB93AB2BA95 +:10F28000CA9F2A3DDDFFFFBE490E494683F9223F52 +:10F290000000004B0000C93F00A0FD390020A23350 +:10F2A0001A61342C336D4CB9DA82083CA0AA2ABE0C +:10F2B00000B52DED048BB0EE409AF0EE609A83B06D +:10F2C00051EC190B00F0A2FF41EC180B18EE100ADC +:10F2D00018EE901A8DED008B002818BF012008430E +:10F2E00020F00040C0F17F6000F1E040C00F14D07A +:10F2F00019EE101A19EE900A8DED009B002918BF27 +:10F300000121084320F00040C0F17F6000F1E0409F +:10F31000C00F04BF0120F1F770FAB0EE480A03B045 +:10F32000F0EE680ABDEC048B00BD000000B510EEE5 +:10F33000101A2DED028B81B04D4A6846B2EB410F99 +:10F340003CD94FF0E640B0EB410F94BF00204FF0A6 +:10F35000FF3000900098B0EE408A00285FDB28EE76 +:10F36000080ADFED440A9FED441A00EE201ADFED93 +:10F37000430A40EE010A9FED421A00EE201ADFED2B +:10F38000410A10F0010F40EE010A9FED3F1A00EE16 +:10F39000201A61EE000AB0EE480A08EE200A02BF09 +:10F3A00001B0BDEC028B00BDBFEE001A01B0C1EE92 +:10F3B000000ABDEC028BB0EE600A00BD334B21F0B9 +:10F3C0000042934228D911F0004FDFED310A20EEC0 +:10F3D000201ADFED300A19BF31EE601A71EE200AF3 +:10F3E00031EE201A71EE600ABDEEE01A11EE100A3D +:10F3F0009FED291A00F0030000EEC10A9FED271AC5 +:10F40000009000EEC10A9FED261A00EEC10A9FEDA2 +:10F41000251A00EEC10A9DE700F00CF99AE718EEF4 +:10F42000100A4000B0F17F4F0DD218EE100AFFF71E +:10F43000DFF8042808BF00F0F5F8B0EE480A01B084 +:10F44000BDEC028B00BD09D10120F1F7D6F901B066 +:10F45000BDEC028B5DF804EB00F0DCB801B0B0EE5F +:10F46000480ABDEC028B5DF804EB00F0CDB800005B +:10F47000B61F927EBCE9223C0B6D063B8A76CE3CE1 +:10F48000ACB5593D35A1083E29AAAA3E490E4946C8 +:10F4900083F9223F0000004B0000C93F00A0FD3966 +:10F4A0000020A2331A61342C70B504462DED028B76 +:10F4B0004D1E00EBC500B0EE408AF0EE608A90ED84 +:10F4C000000B35F0060017D053EC182B51EC100B45 +:10F4D00000F0EAFC41EC100B6D1E04EBC50090ED52 +:10F4E000001B51EC100B53EC112B00F0DBF941EC3D +:10F4F000100B35F00600E7D1022D36D0042D1CD0BC +:10F50000062D1CBFBDEC028B70BD53EC182B51ECCB +:10F51000100B00F0C9FC94ED0A1B53EC112B00F00A +:10F52000C1F953EC182B00F0BFFC94ED081B53EC11 +:10F53000112B00F0B7F941EC100B53EC182B51ECE8 +:10F54000100B00F0B1FC94ED061B53EC112B00F0F6 +:10F55000A9F953EC182B00F0A7FC94ED040B53EC25 +:10F56000102B00F09FF941EC100B53EC182B51ECD1 +:10F57000100B00F099FC94ED021B53EC112B00F0E2 +:10F5800091F953EC182B00F08FFC94ED001B53EC19 +:10F59000112B00F087F9BDEC028B41EC100B70BD14 +:10F5A00010B553EC102B51EC100B00F07BF941EC33 +:10F5B000100B10BD10B553EC112B51EC100B00F0DB +:10F5C00071F941EC100B10BD9FED050B10B553EC1C +:10F5D000102B51EC100B00F019FA41EC100B10BD80 +:10F5E00000000000000000009FED050B10B553EC7B +:10F5F000102B51EC100B00F057FC41EC100B10BD20 +:10F60000000000000000001030EE000A704730EEED +:10F61000200A7047DFED020A80EEA00A7047000062 +:10F62000000000009FED020A20EE000A7047000073 +:10F63000000000102DE9F0014FF07F42B2EB410FC6 +:10F640009FBF4FF0FF310160BDE8F00170474FF000 +:10F65000004242EA0123C1F3C752783A551112F031 +:10F660001F0C434CCCF120067C44C1F3C752A2F1DD +:10F6700078024FEA621204EB820254F8254008BF78 +:10F68000D2E9015612D0556804FA0CF425FA06F7AF +:10F690003C43976805FA0CF527FA06F8D26807FA92 +:10F6A0000CFCF24045EA08054CEA0206A4FB034CB8 +:10F6B000A5FB0352A6FB03631D449D4234BF0126F4 +:10F6C00000261319334416B1934202D903E0934242 +:10F6D00001D2012200E00022624402F1200C9206D5 +:10F6E000DC0C42EA443200EE102A5B03DFED210A13 +:10F6F000F8EEC01A00EE103A4FEA9C1C11F0004FD1 +:10F70000B8EE400AC0F800C020EE201A00EE105AF1 +:10F71000DFED190AB8EE400A20EE200A71EE810AE8 +:10F7200070EE800A10EE902A02F500626FF30B0271 +:10F7300000EE902A70EEE11A31EEC11ADFED101AD8 +:10F7400030EE411A9FED0D0A20EE800A01EE210AEB +:10F750009FED0C1A00EE810A04BFBDE8F00170476E +:10F76000CCF180510160BDE8F001B1EE400A704774 +:10F7700074110000000000360000802C22AAFD2930 +:10F78000DB0FC92F0000C92F30380A2801D2012011 +:10F7900070470020704710B541EC100BFEF7D4FF06 +:10F7A00051EC100B10BD82B0CDE9000121F00040FA +:10F7B00001909DED000B02B051EC100B704710B59D +:10F7C00000EE100A2DED028BB1EEC08A18EE100A81 +:10F7D00020F00040C0F1FF40C00F0AD010EE100A28 +:10F7E00020F00040C0F1FF40C00F04BF0120F1F73E +:10F7F00004F818EE100ABDEC028B10BD10B50029FC +:10F800000AD00878002807D005487844F1F7D0FBE3 +:10F81000002801D0002010BD0248784410BD00002F +:10F82000421400003A14000081F00041704780F05B +:10F830000040704721F00041704720F000407047C1 +:10F8400021F0004201F00043A2F16052B2F5801FA6 +:10F8500028BFD2F17F6C0BD95FEA001C43EAC202D9 +:10F8600042EB507018BF704728BF20F0010070476E +:10F87000B2F5801FBCBF184670474FEA410C1CF51B +:10F88000001F02D2084600F053BF70B500F0B6FB6F +:10F8900000000089FFF7F6BF4FF00040A0F58000A0 +:10F8A0007047000010B591EA030F48BF83F0004392 +:10F8B00000F18085841A71EB030C05D2121943EB19 +:10F8C0000C03001B61EB0C014FEA1154A4EB135C19 +:10F8D000DFF81CE11EEA430F18BF9EEA445F00F008 +:10F8E000748021EA045123EA0E0343F48013DCF10F +:10F8F000200E32D322FA0CFE10EB0E0023FA0CFE7F +:10F9000041EB0E01CCF1200E03FA0EFE10EB0E00BF +:10F91000CCF1200E51F10001B1F5801F32D201EB84 +:10F92000045112FA0EF2BDE8104058BF7047401C57 +:10F9300038BF5FEA420218BF7047002814BF20F0AA +:10F94000010041F100014FEA410313F5001F38BFE8 +:10F950007047A1F1C04100F047BC012A43EB03020C +:10F96000ACF1200CDCF11F0E32BF4FF0000E23FA79 +:10F970000CF310EB030041EB0451B4EB115FD0D05A +:10F98000A1EB045101F58011490801EB04515FEA34 +:10F9900030000ED350F1000038BF12FA0EFE08D12D +:10F9A000BDE81040C9E7401C38BF5FEA4202CAD137 +:10F9B000C3E7BDE810404FEA410313F5001F38BF0D +:10F9C0007047A1F1C04100F00FBC9EEA445F08D02F +:10F9D00011EA5E0FBDE8104004BF01F000410020B5 +:10F9E0007047BDE8104070B500F008FB64FBBE3EF8 +:10F9F0000000E0FF491058BFC1F140415B1058BF03 +:10FA0000C3F140438B42EFF3008070472DE9C041C2 +:10FA100030B4DFF8A4C23CEA111418BF3CEA131456 +:10FA200000F0ED801CEA111481EA030544EAD57464 +:10FA300018BF1CEA131500F0C880A4EB050404F1FC +:10FA40007F7404F500344FF0004545EAC12145EAD2 +:10FA5000C32341EA505143EA52534FEAC0204FEAD0 +:10FA6000C222994208BF904200F09D804FEA136580 +:10FA70000FF24416765D4FEA134506FB05F7C7F112 +:10FA8000807706FB07F74FEAD737A7FB0368764274 +:10FA9000A7FB06CEC8F5803838BFA8F1010807FBE0 +:10FAA00008E6A6FB028C4FF0000EE6FB03CEDCF16D +:10FAB000000CCEF1004E38BFAEF1010EA6FB0C5883 +:10FAC0004FF00007E6FB0E87A1FB08C6A0FB07CEA0 +:10FAD00016EB0E064FF0000545F10005E1FB07654A +:10FAE00015F1E04E7EBFA4F580345FEA46066D4115 +:10FAF00016F1800745F100054FEA172747EA056729 +:10FB00004FEA15254FEA0666A6F1DE46B6F1805F9C +:10FB100020D9384605EBC47124F0010C01EB0C111F +:10FB2000BCF1FE6F02D8F0BCBDE8008124425CBF8E +:10FB300001F5801E9EEAC47F02D4F0BCBDE80081BE +:10FB4000244200F13980A1F1C041F0BCBDE8004180 +:10FB500000F04ABB4FEAD02040EA41504FEAD121A1 +:10FB60004FEAD22242EA43524FEAD323A7FB02864E +:10FB700007FB036605FB02661EEA0E0F58BFA6EBE5 +:10FB80000056B6EB00564FEA520E4EEAC37E18EB13 +:10FB90000E0E56EB530EBCD518EB02085E417F1CCF +:10FBA00055F10005B5E74FF480154FF000074FF011 +:10FBB00000064FF00008ACE701F1C04101F0004140 +:10FBC0004FF00000F0BCBDE800810CEA131511EA0B +:10FBD0000C1F00D00CE013EA0C1F00F026804FF041 +:10FBE000000081EA030101F00041F0BCBDE80081A2 +:10FBF000F0BCBDE8004181EA030100F0F5BAF0BCB9 +:10FC0000BDE8004170B500F0F9F900BF097EFC3E87 +:10FC100000F007B84FF0000081EA030101F0004155 +:10FC2000704781EA030100F0DFBAF0BCBDE8004193 +:10FC300022494FF000007047FFFDFBF9F7F5F4F2A1 +:10FC4000F0EEEDEBE9E8E6E4E3E1E0DEDDDBDAD877 +:10FC5000D7D5D4D3D1D0CFCDCCCBCAC8C7C6C5C4D5 +:10FC6000C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3EC +:10FC7000B2B1B0AFAEADACABAAA9A8A8A7A6A5A4D7 +:10FC8000A3A3A2A1A09F9F9E9D9C9C9B9A9999989B +:10FC90009797969595949393929191908F8F8E8E3E +:10FCA0008D8C8C8B8B8A89898888878786858584CB +:10FCB00084838382828181800000FF070000F87FB7 +:10FCC00051EA030C17D41CF5801F58BFBCF5801FE8 +:10FCD00000F10680994218BF704708BF90427047F4 +:10FCE00007D711F5801F58BF13F5801F19D499420B +:10FCF0007047894270471CF5801F08D5BCF5801FEE +:10FD0000F7D58B4218BF704708BF824270474FF447 +:10FD1000001C1CEB410F38BF1CEB430F01D28B4280 +:10FD2000704770B500F06AF9922449004FF0005115 +:10FD30004FF08053FFF75EBE4FEA1153A3F5806387 +:10FD4000D3F11E03A8BFD3F1200C08DB4FF0004213 +:10FD500042EAC12252EA505232FA03F07047094295 +:10FD60000BD4102BC4BF0020704703F5787CBCF186 +:10FD7000FF3F05D04FF0FF3070474FF00000704755 +:10FD800070B500F03BF900BF499224800020704715 +:10FD9000F0E7B0FA80F310FA03F10AD0C3F11D03C3 +:10FDA00003F580634FEA03524FEA415002EBD12141 +:10FDB00070474FF00000704751EA030C17D41CF550 +:10FDC000801F58BFBCF5801F00F10680994218BF04 +:10FDD000704708BF9042704707D711F5801F58BF82 +:10FDE00013F5801F19D499427047894270471CF55A +:10FDF000801F08D5BCF5801FF7D58B4218BF704710 +:10FE000008BF824270474FF4001C1CEB410F38BF03 +:10FE10001CEB430F01D28B42704770B500F0EEF837 +:10FE2000922449004FF080514FF00053FFF7E2BD9C +:10FE300051EA030C17D41CF5801F58BFBCF5801F76 +:10FE400000F10680994218BF704708BF9042704782 +:10FE500007D711F5801F58BF13F5801F19D4994299 +:10FE60007047894270471CF5801F08D5BCF5801F7C +:10FE7000F7D58B4218BF704708BF824270474FF4D6 +:10FE8000001C1CEB410F38BF1CEB430F01D28B420F +:10FE9000704770B500F0B2F8922449004FF000515D +:10FEA0004FF08053FFF7A6BD70B5DFF848C11CEADC +:10FEB000111E1EBF1CEA13159EEA0C0F95EA0C0FCB +:10FEC00000F06F8081EA03044EEAD47EAE4421EA5A +:10FED0004C1123EA4C1341F4801143F48013AEF12A +:10FEE0007F7EA1FB024CA0FB0365361955EB0C0588 +:10FEF000A1FB034C4CF10003A0FB021C16EB0C060B +:10FF0000654153F10003094218BF46F0010613F49E +:10FF1000007F0BD14FEA03314FEA053041EA15511A +:10FF200040EA165034036FF003020AE04FEAC3219F +:10FF30004FEAC52041EA555140EA5650F4026FF0AD +:10FF4000020202EB2E4201EB025585EACE710AD085 +:10FF50005FEA440C18BF24F0004450F1000041F166 +:10FF6000000120EAD47040F2FE7C624500D270BDF0 +:10FF7000A84214BF4FF080444FF04044002E08BF09 +:10FF80000024BEF1806FA8BFA1F1C041BDE8704060 +:10FF900080F22A8101F1C04101F000414FF00000E0 +:10FFA00070470CEA13159EEA0C0F18BF95EA0C0F68 +:10FFB00006D081EA030E4FF000000EF0004170BD44 +:10FFC00000F01CF88900013E00F007B800F009B805 +:10FFD0004FEA430C5FEA5C5C08D081EA030100F061 +:10FFE00003B94FEA410C5FEA5C5CF6D102494FF07D +:10FFF000000070470000FF070000F87F0EF1020EBE :020000040801F1 -:1000000000000000000000000000000000000000F0 -:1000100000040000180000000000000000000000C4 -:100020000A020108000000000000000000000000BB -:1000300000000000000400001800000000000000A4 -:100040000000000025020108000000000000000080 -:100050000000000000000000000400001800000084 -:1000600000000000000000005A020108000000002B -:10007000000000000000000000000000000400007C -:100080003000000000000000000000003E020108F7 -:100090000000000000000000000000000000000060 -:1000A0000004000018000000000000000000000034 -:1000B00049020108000000000000000000000000EC -:1000C0000000000000040000180000000000000014 -:1000D000000000000F020108000000000000000006 -:1000E00000000000000000000004000018000000F4 -:1000F00000000000000000007FDAEF420054E741FA -:100100008063504320C19643FC01010800000000B9 -:1001100000000000000000000000000000020000DD -:1001200018000000000000000000000000000000B7 -:100130000100000000020000A12C000801000000E6 -:100140000200000000020000212C00080200000054 -:100150000400000000020000B92C000803000000A9 -:100160000800000000020000D12C0008040000007C -:100170001000000000020000F92B0008050000003C -:1001800020000000000200005D2C000806000000B6 -:100190000000008000080000812C0008070000001B -:1001A00000800000010800008D2C000808000000FD -:1001B0008000000000020000E92C00080900000097 -:1001C00000010000010C00001D2C00080A000000C6 -:1001D0003040000001010000392C00089A99193EB6 -:1001E0000000803F00000000000000000000803F91 -:1001F0000000803F000000000000000064656661B0 -:10020000756C745461736B002C0064723136007627 -:100210006F666100636D6400616900617474695F99 -:10022000657374690067696D62616C5F6374726C99 -:1002300000636861737369735F6374726C007368E1 -:100240006F6F745F6374726C00737465705F6D6F51 -:10025000746F72004554313673005461736B5F499B -:100260006E697400C0020108000000202000000038 -:1002700020020008E002010800C00120A8040000DC -:10028000C4010008E00201082000002088AF01003E -:100290003C02000880040108A8C40120002B0000D3 -:1002A0003C0200081C00000043000000F8FFFFFFB4 -:1002B0000C0000000E0000000F0000002E000000E7 -:1002C000840300000000FA43010000000000000069 -:1002D000022B073D01010000AAAAAAAA0000000003 -:1002E000111324F44011FEF7BBB8DD098A3BDE7719 -:1002F00072BC54020108176CCF0120152F1408217D -:100300002E1B081D08111201031101011201121206 -:100310002A0207112A11050153600D9A99993ECDC1 -:10032000CCCC3E0AD7233C5B803F044ABF04112259 -:10033000401A2004C14320412DDB0FC9404029044D -:10034000A1F94022C01A10301B8040684A3D1C2988 -:10035000402B80BF4019DF0A1402DA293CC00B7A17 -:10036000449A99193E1F856BBE1CAE47A1441AC022 -:1003700004011249640922145A4CB469B0214A0696 -:100380001869C05B3F08EC920333DC42133F013A2B -:1003900001B41908111C0202010B0914C201164B09 -:1003A00005023029643EC03F9A99998829902C66AD -:1003B00066667819F82904399C1A40BC69A819089E -:1003C000390459202B20404429DC4D0AD7233D28ED -:1003D00039B83DBFDB0FC91C9960192829F04920A5 -:1003E0008960013CCBF04104295C29685BCC3DB0BD -:1003F000296C79702980CD3D0A573E203938192063 -:100400005BB443A0D920092AB04930294849F423D4 -:1004100040402B0C423C2DDB0FC9C01C4918210D5C -:10042000306F12833A600120540102015A02085AC7 -:1004300003085A0408540602025A07085A08085AC0 -:1004400009081A0507492A615B434357320319CC4F -:1004500029AC1AC004111D3F03060417112A011903 -:100460004113A5301B08D504131D312A084213E59A -:100470002F1B0811101A7904495CA169348172108C +:100000002EF0030E5EF8046B364205D4012A43EB52 +:10001000030515F5001F12D8012841EB010C1CF552 +:10002000001F0CD80ED14FEAD17C0CEB4C0C0CF11C +:10003000020C15F5001F08BF4CEBD37C04E04FF019 +:10004000080C01E04FEAD37C0CEB4C0526FA05F6D0 +:1000500006F00706B6F1040C06D20EEB860CBDE8DE +:1000600070404CF0010C6047DFE80CF0090B020215 +:100070004FF00041A1F500214FF0000070BD19467E +:100080001046012851EB010418BFD4F5001484BFB9 +:10009000002001F0004170BD70B5DFF844C13CEABA +:1000A000111418BF3CEA131500F08F8011F1004FB6 +:1000B0000CEA11141CEA131568BF45F0050518BFBA +:1000C00011EA0C1F00F0798021EA4C1123EA4C134D +:1000D00041F4801143F480132E46A5F58035AC42DF +:1000E0003DDDA4F58036801A994109D54042C1F121 +:1000F000000134BFB1F10101B1F1000185F001054A +:1001000011F4F01F08D011F4801FE8D1400041EB3A +:100110000101A4F58034F6E721F00041B1FA81F63F +:10012000202E04BFB0FA80FE0EF12006A6F10B06C9 +:10013000A4EB0644B6F1200E0CD2C6F1200E01FA53 +:1001400006F120FA0EF641EA0601CEF1200600FA89 +:1001500006F003E000FA0EF14FF00000BFE750EAAE +:10016000410E23D04FEA244EBEEB254F0FDB9942C0 +:1001700008BF904204D00AD3520043EB0303B0E718 +:100180004FEA1646B6EB144F08BF85F00105B4F5EB +:10019000803401EB041181EAC57100DB70BD01F10F +:1001A000C04101F000414FF0000070BD4FEA4571C1 +:1001B0004FF0000001F0004170BD1CEA131F09D090 +:1001C0004FF0000001F0004170BDFFF717FF00BFC6 +:1001D000EDFFFF3EBDE8704002494FF00000704760 +:1001E0000000FF070000F87F0808A0F500114FEAA3 +:1001F0003101704710B591EA030F81F000413FF5DE +:1002000059AB83F0004300F0D5B800002DE9F04170 +:1002100001F5801CBCF5001FC0F2A9804FEA115CFB +:1002200021EA0C5141F480110CF1FD0C5FEA5C0CE9 +:100230000CF5C07C01D340004941890241EA90514C +:1002400087022EA48E0EA45D0A0C04FB04F602FBAA +:1002500006F6C6F14046A4FB0662F60D46EA4226C3 +:1002600006FB06F4A4FB01235242C3F1404338BF0E +:100270005B1EA6FB02420024E6FB0324D20B42EAEB +:100280004446A6FB0623A1FB02E2A3FB07E4E3FB33 +:1002900061426442C2F1404E38BFAEF1010EA6FB8E +:1002A00004234FF00002E6FB0E32A2FB03463400AB +:1002B000E2FB6264A1FB06E6A4FB07E8E4FB6168DD +:1002C0007642C8F1405838BFA8F10108A2FB06E405 +:1002D000A3FB08E5E2FB6854A1FB05E6A7FB04E8E5 +:1002E000E1FB648618F1200556F10006A80940EAF2 +:1002F0008660B109A8F11B0808F03F08B8F10A0FA1 +:100300001CD901EB0C51BDE8F08100BFFCF5EEE813 +:10031000E2DDD8D3CFCBC7C3C0BDB9B6B4B1AEACA4 +:10032000A9A7A5A3A19F9D9B9A9896959392908F1C +:100330008D8C8B898887868584838281A0FB006869 +:1003400000FB01F208EB4208B8EB872807D5341808 +:1003500058EB0104D5D5401C51F10001D1E7341A06 +:1003600078EB0104CDD4401E71F10001C9E75FEACA +:100370004C0C5FEA9C5C0DD105D301F000414FF0BD +:100380000000BDE8F081BDE8F04170B5FFF736FE32 +:100390006DDBFFBEBDE8F04101494FF00000704742 +:1003A0000000F87F10B591EA030F48BF83F00043C7 +:1003B0003FF580AA841A71EB030C07D28CF0004C35 +:1003C000121943EB0C03001B61EB0C014FEA1154B3 +:1003D000A4EB135CDFF8A4E11EEA430F18BF9EEA0A +:1003E000445F00F0B48021EA045123EA6E035242D4 +:1003F000C3EB6E0338BF5B1EDCF1200E25D322FA5F +:100400000CFE10EB0E0043FA0CFE41EB0E01CCF19A +:10041000200E03FA0EFE10EB0E00CCF1200E51F16F +:10042000000129D401EB045112FA0EF2BDE810408C +:1004300058BF7047401C1CBFB2F1004F70470028E6 +:100440000CBF491C20F00100704712EB020E43EB79 +:10045000030218BF4FF0010E4EEA4202ACF1200C2D +:10046000DCF11E0E56D943FA0CFE10EB0E00CCF157 +:100470001E0E51F1FF31D5D50EF1010E12FA0EFE0E +:10048000404141EB010101EB445C5FEA5C5C10D947 +:1004900001EB045110EBDE7038BFBEF1004FBDE838 +:1004A000104018BF704700280CBF491C20F0010005 +:1004B000704734D24FEAD42C24F4006411F50011B3 +:1004C0001BD0B1FA81F20B3AA41AA41ED2F1200378 +:1004D000914030FA03F31943904001EBCC7101EBEA +:1004E0000451002CBDE81040A8BF704701F1C04185 +:1004F00001F000414FF000007047B0FA80F310FAAD +:1005000003F102D1BDE810407047E41A173C4805DA +:10051000C90AE2E701EB0451BDE8104070474910F9 +:100520004FEA300001EB0451BDE8104002E04FF00B +:10053000000170474A0008BF0042F8D0B2F5001F22 +:1005400028BF704701F000414FF0000070479EEA5D +:10055000445F07D011EA5E0FBDE8104004BF0021E0 +:1005600000207047BDE8104070B5FFF747FD00BFA1 +:1005700040DFF63E104683F0004170470000E0FF88 +:1005800043004FEAD30C4FEA3C0C43401FBF4007E7 +:100590000CF1605113F0FE4F70471CF0006F03D157 +:1005A0000CF00041002070470CF0004343EA50700B +:1005B00040EACC0010B500F068F800BF00000092DF +:1005C0004FEA0001FFF710BE4FF00041A1F50021F6 +:1005D0004FF00000704710B5FFF772FB0CBF012011 +:1005E000002010BD10B5FFF76BFB14BF01200020E9 +:1005F00010BD10B5FFF7E0FB8CBF0120002010BD3F +:1006000010B5FFF7D9FB2CBF0120002010BD10B59D +:10061000FFF70EFC94BF0120002010BD10B5FFF7BE +:1006200007FC34BF0120002010BD4FF07E5209E0CE +:1006300011F0004204D54042C1F1000138BF491E0B +:1006400042F07E5202F170620B0012BF20235FEA7B +:1006500000017047B1FA81FC01FA0CF1A3EB0C0325 +:1006600020FA03FC41EA0C0102EBC352C3F1200360 +:1006700010FA03FC5CEA416C42EB112018BF5FF0FA +:10068000806C28BF20F0010070470EF1020E2EF0A2 +:10069000030E5EF8044B244204D44FEA4102B2F147 +:1006A0007F4F11D84FEA4003B3F17F4F0CD80ED1E2 +:1006B0004FEAD07C0CEB4C0C0CF1020CB2F17F4FEA +:1006C00008BF4CEBD17C04E04FF0080C01E04FEA8E +:1006D000D17C0CEB4C0324FA03F404F00704B4F1CE +:1006E000040C06D20EEB840CBDE810404CF0010C5B +:1006F0006047DFE80CF0070802024FF00040A0F569 +:10070000800010BD0846420018BFD2F1807288BF39 +:1007100000F0004010BDF1EE100A4FF6FF71C0F27C +:10072000C03120EA010040F04070E1EE100A70474D +:10073000FF2141EAD050C0057047F0F795B900009D +:100740004FBB610567ACDD3F182D4454FB21E93FE9 +:100750009BF681D20B73EF3F182D4454FB21F93FD8 +:10076000E2652F227F2B7A3C075C143326A6813C5E +:10077000BDCBF07A8807703C075C143326A6913C09 +:10078000C4EB98999999C9BF711623FEC671BCBF75 +:100790006D9A74AFF2B0B3BF9AFDDE522DDEADBFDD +:1007A0002F6C6A2C44B4A2BF0D5555555555D53FF5 +:1007B000FF8300922449C23F6E204CC5CD45B73F10 +:1007C000513DD0A0660DB13FEB0D76244B7BA93F88 +:1007D00011DA22E33AAD903F000000000000000073 +:1007E000000000006E83F9A22915444ED15727FC62 +:1007F000C0DD34F5999562DB4190433CAB6351FE1B +:1008000002400000000000A00000000005400000C1 +:10081000000000C8000000000C4000000000409CE8 +:1008200000000000194000000020BCBE00000000D5 +:1008300034400000BFC91B8E00000004B54000001A +:10084000504BCFD06607E2CF010000006C410000A2 +:100850003E8251AADFEEA73401000000D942000019 +:10086000DCB5A0E23A301F97FFFFFFFFB445000060 +:10087000FD25A0C8E9A3C14FFFFFFFFFFF3F000018 +:100880000000008000000000FF3F0000000000802A +:10089000000000000000000000000000010203044E +:1008A000060708090000000001020304010000001F +:1008B00000000240100000000000024001000000A3 +:1008C0000004024010000000000802402000000068 +:1008D000000802400008000000100240080000006C +:1008E0000018024040000000001802400004000010 +:1008F000001C024000080000001C02400010000024 +:10090000001C0240C40600200000000088D0012026 +:1009100000000000FC0B01080000000000000000C7 +:1009200000000000000000000004000018000000AB +:100930000000000000000000C00B010800000000E3 +:1009400000000000000000000000000000040000A3 +:10095000180000000000000000000000C30B0108A8 +:100960000000000000000000000000000000000087 +:10097000000400001800000000000000000000005B +:10098000D90B01080000000000000000000000007A +:10099000000000000004000018000000000000003B +:1009A00000000000BC0B0108000000000000000077 +:1009B000000000000000000000040000180000001B +:1009C0000000000000000000B20B01080000000061 +:1009D0000000000000000000000000000004000013 +:1009E000180000000000000000000000CD0B01080E +:1009F00000000000000000000000000000000000F7 +:100A000000040000180000000000000000000000CA +:100A1000020C0108000000000000000000000000BF +:100A20000000000000040000300000000000000092 +:100A300000000000E60B01080000000000000000BC +:100A4000000000000000000000040000180000008A +:100A50000000000000000000F10B01080000000091 +:100A60000000000000000000000000000004000082 +:100A7000180000000000000000000000B70B010893 +:100A80000000000000000000000000000000000066 +:100A9000000400001800000000000000000000003A +:100AA00000FCF342A0F6954380F4B742FF886E4302 +:100AB000A40B01080000000000000000000000007E +:100AC000000000000002000018000000000000000C +:100AD0000000000000000000010000000002000013 +:100AE000CD2C000801000000020000000002000000 +:100AF0004D2C00080200000004000000000200006D +:100B0000E52C0008030000000800000000020000BF +:100B1000FD2C00080400000010000000000200008E +:100B2000252C000805000000200000000002000045 +:100B3000892C00080600000000000080000800006A +:100B4000AD2C000807000000008000000108000034 +:100B5000B92C00080800000080000000000200001E +:100B6000152D00080900000000010000010C000024 +:100B7000492C00080A00000030400000010100007C +:100B8000652C00089A99193E0000803F0000000083 +:100B9000000000000000803F0000803F00000000D7 +:100BA0000000000064656661756C745461736B00CD +:100BB0002C006472313600766F666100636D6400EC +:100BC000616900617474695F657374690067696D58 +:100BD00062616C5F6374726C0063686173736973E4 +:100BE0005F6374726C0073686F6F745F6374726CB0 +:100BF00000737465705F6D6F746F720045543136A9 +:100C000073005461736B5F496E697400680C01086E +:100C1000000000206000000020020008C80C01084D +:100C200000C0012028040000C4010008C80C01080D +:100C300060000020B0AE01003C020008400E010838 +:100C400028C40120D82A00003C0200081C00000033 +:100C500043000000F8FFFFFF0C0000000E00000042 +:100C60000F0000002E0000000024F400FEF7BBB8C7 +:100C7000DD098A3BDE7772BC010000000000000045 +:100C8000D13000080D310008553100080100000086 +:100C9000113000083D300008A530000802000000B7 +:100CA0000000000000000000000000000300000041 +:100CB0000000000000000000000000000100000033 +:100CC0001000000000000000412384034009022BB3 +:100CD000073DFC0B010813BC011420412F14084DE3 +:100CE0002E1B0849081112010313010112122202DE +:100CF00019192A110501576009CDCCCC3E0AD7231A +:100D00003C5B803F044ABF041122401A2004C143C7 +:100D100020413CDB0FC918A59A99993EF94022C0A1 +:100D20001A10301B8040684A3D1C29403B80BF4060 +:100D300012020A1402DA293CC00B7A449A99193E2D +:100D40001F856BBE1CAE47A1441AC0040913CC1901 +:100D5000640922145A4CB469B0214A061869C05B70 +:100D60003F08EC920333DC42191C3A01B429041CFD +:100D7000020201070914C201164B03023029643E26 +:100D8000C03F9A99998829902C6666667819F82947 +:100D900004399C1A40BC69A81908390459202B2031 +:100DA000404429DC4D0AD7233D2839B83DBFDB0F2D +:100DB000C91C9960192829F049208960013CCBF0B1 +:100DC00041042B43436069D05D6F12833A7099747C +:100DD0004910298C49281A40A85B0C42B45AC0D04B +:100DE000191C6A19F4B9402918293C29F489602989 +:100DF0007C29205BB443E4D9200928F412012D0199 +:100E0000020101085A02081B03020719085A0408C4 +:100E10003C060202085A07083A0808215A090881C4 +:100E20001A050F2932A95D33020319F029901AC05F +:100E300004111D3F03010417112A01191AAA010008 :040000050800018965 :00000001FF diff --git a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.htm b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.htm index c238a58..c9788d3 100644 --- a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.htm +++ b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.htm @@ -3,7 +3,7 @@ Static Call Graph - [Steering Wheel_Infatry\Steering Wheel_Infatry.axf]

Static Call Graph for image Steering Wheel_Infatry\Steering Wheel_Infatry.axf


-

#<CALLGRAPH># ARM Linker, 6160001: Last Updated: Wed Jan 28 11:22:43 2026 +

#<CALLGRAPH># ARM Linker, 6160001: Last Updated: Sat Feb 7 12:31:06 2026

Maximum Stack Usage = 464 bytes + Unknown(Functions without stacksize, Cycles, Untraceable Function Pointers)

Call chain for Maximum Stack Depth:

@@ -12,7 +12,7 @@ Task_vofa ⇒ VOFA_Send ⇒ VOFA_FireWater_Send ⇒ __2snprintf ⇒

Functions with no stack information

@@ -23,9 +23,9 @@ Mutually Recursive functions

  • HardFault_Handler   ⇒   HardFault_Handler
  • MemManage_Handler   ⇒   MemManage_Handler
  • NMI_Handler   ⇒   NMI_Handler
    -
  • UART_EndRxTransfer   ⇒   UART_EndRxTransfer
    +
  • UART_EndRxTransfer   ⇒   UART_EndRxTransfer
  • UsageFault_Handler   ⇒   UsageFault_Handler
    -
  • UART_EndTxTransfer   ⇒   UART_EndTxTransfer
    +
  • UART_EndTxTransfer   ⇒   UART_EndTxTransfer

    @@ -59,15 +59,15 @@ Function Pointers
  • CMD_Behavior_Handle_LEFT from cmd_behavior.o(.text.CMD_Behavior_Handle_LEFT) referenced from cmd_behavior.o(.rodata.g_behavior_configs)
  • CMD_Behavior_Handle_RIGHT from cmd_behavior.o(.text.CMD_Behavior_Handle_RIGHT) referenced from cmd_behavior.o(.rodata.g_behavior_configs)
  • CMD_Behavior_Handle_ROTOR from cmd_behavior.o(.text.CMD_Behavior_Handle_ROTOR) referenced from cmd_behavior.o(.rodata.g_behavior_configs) -
  • CMD_ET16s_GetInput from cmd_adapter.o(.text.CMD_ET16s_GetInput) referenced 2 times from cmd_adapter.o(.data.g_adapter_ET16s) -
  • CMD_ET16s_Init from cmd_adapter.o(.text.CMD_ET16s_Init) referenced 2 times from cmd_adapter.o(.data.g_adapter_ET16s) -
  • CMD_ET16s_IsOnline from cmd_adapter.o(.text.CMD_ET16s_IsOnline) referenced 2 times from cmd_adapter.o(.data.g_adapter_ET16s) -
  • CMD_PC_BuildChassisCmd from cmd_1.o(.text.CMD_PC_BuildChassisCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) -
  • CMD_PC_BuildGimbalCmd from cmd_1.o(.text.CMD_PC_BuildGimbalCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) -
  • CMD_PC_BuildShootCmd from cmd_1.o(.text.CMD_PC_BuildShootCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) -
  • CMD_RC_BuildChassisCmd from cmd_1.o(.text.CMD_RC_BuildChassisCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) -
  • CMD_RC_BuildGimbalCmd from cmd_1.o(.text.CMD_RC_BuildGimbalCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) -
  • CMD_RC_BuildShootCmd from cmd_1.o(.text.CMD_RC_BuildShootCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) +
  • CMD_ET16s_GetInput from cmd_adapter.o(.text.CMD_ET16s_GetInput) referenced 2 times from cmd_adapter.o(.data.g_adapter_ET16s) +
  • CMD_ET16s_Init from cmd_adapter.o(.text.CMD_ET16s_Init) referenced 2 times from cmd_adapter.o(.data.g_adapter_ET16s) +
  • CMD_ET16s_IsOnline from cmd_adapter.o(.text.CMD_ET16s_IsOnline) referenced 2 times from cmd_adapter.o(.data.g_adapter_ET16s) +
  • CMD_PC_BuildChassisCmd from cmd_1.o(.text.CMD_PC_BuildChassisCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) +
  • CMD_PC_BuildGimbalCmd from cmd_1.o(.text.CMD_PC_BuildGimbalCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) +
  • CMD_PC_BuildShootCmd from cmd_1.o(.text.CMD_PC_BuildShootCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) +
  • CMD_RC_BuildChassisCmd from cmd_1.o(.text.CMD_RC_BuildChassisCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) +
  • CMD_RC_BuildGimbalCmd from cmd_1.o(.text.CMD_RC_BuildGimbalCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers) +
  • CMD_RC_BuildShootCmd from cmd_1.o(.text.CMD_RC_BuildShootCmd) referenced 2 times from cmd_1.o(.data.sourceHandlers)
  • DCMI_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET)
  • DMA1_Stream0_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET)
  • DMA1_Stream1_IRQHandler from stm32f4xx_it.o(.text.DMA1_Stream1_IRQHandler) referenced from startup_stm32f407xx.o(RESET) @@ -142,10 +142,10 @@ Function Pointers
  • SysTick_Handler from stm32f4xx_it.o(.text.SysTick_Handler) referenced from startup_stm32f407xx.o(RESET)
  • SystemInit from system_stm32f4xx.o(.text.SystemInit) referenced from startup_stm32f407xx.o(.text)
  • TAMP_STAMP_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET) -
  • TIM1_BRK_TIM9_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET) +
  • TIM1_BRK_TIM9_IRQHandler from stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) referenced from startup_stm32f407xx.o(RESET)
  • TIM1_CC_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET)
  • TIM1_TRG_COM_TIM11_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET) -
  • TIM1_UP_TIM10_IRQHandler from stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) referenced from startup_stm32f407xx.o(RESET) +
  • TIM1_UP_TIM10_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET)
  • TIM2_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET)
  • TIM3_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET)
  • TIM4_IRQHandler from startup_stm32f407xx.o(.text) referenced from startup_stm32f407xx.o(RESET) @@ -208,13 +208,13 @@ Global Symbols

    [Calls]
    • >>   __rt_entry
    -

    __scatterload_rt2_thumb_only (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) +

    __scatterload_rt2_thumb_only (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) -

    __scatterload_null (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) +

    __scatterload_null (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) -

    __decompress (Thumb, 90 bytes, Stack size unknown bytes, __dczerorl2.o(!!dczerorl2), UNUSED) +

    __decompress (Thumb, 90 bytes, Stack size unknown bytes, __dczerorl2.o(!!dczerorl2), UNUSED) -

    __decompress1 (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(!!dczerorl2), UNUSED) +

    __decompress1 (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(!!dczerorl2), UNUSED)

    __scatterload_copy (Thumb, 26 bytes, Stack size unknown bytes, __scatter_copy.o(!!handler_copy), UNUSED)

    [Calls]

    • >>   __scatterload_copy @@ -222,7 +222,7 @@ Global Symbols
      [Called By]
      • >>   __scatterload_copy
      -

      __scatterload_zeroinit (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED) +

      __scatterload_zeroinit (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED)

      _printf_f (Thumb, 0 bytes, Stack size unknown bytes, _printf_f.o(.ARM.Collect$$_printf_percent$$00000003))

      [Stack]

      • Max Depth = 324 + Unknown Stack Size @@ -231,8 +231,8 @@ Global Symbols
        [Calls]
        • >>   _printf_fp_dec
        -

        _printf_percent (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000)) -

        [Called By]

        • >>   __printf +

          _printf_percent (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000)) +

          [Called By]

          • >>   __printf

          _printf_u (Thumb, 0 bytes, Stack size unknown bytes, _printf_u.o(.ARM.Collect$$_printf_percent$$0000000A)) @@ -256,127 +256,134 @@ Global Symbols
          [Calls]

          • >>   _printf_string
          -

          _printf_percent_end (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017)) +

          _printf_percent_end (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017)) -

          __rt_lib_init (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000)) -

          [Called By]

          • >>   __rt_entry_li +

            __rt_lib_init (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000)) +

            [Called By]

            • >>   __rt_entry_li

            __rt_lib_init_fp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000001))

            [Calls]

            • >>   _fp_init
            -

            __rt_lib_init_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000A)) +

            __rt_lib_init_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000A)) -

            __rt_lib_init_lc_common (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000F)) -

            [Calls]

            • >>   __rt_locale +

              __rt_lib_init_preinit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004)) + +

              __rt_lib_init_rand_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000D)) +

              [Stack]

              • Max Depth = 8 + Unknown Stack Size +
              • Call Chain = __rt_lib_init_rand_2 ⇒ _rand_init ⇒ srand +
              +
              [Calls]
              • >>   _rand_init
              -

              __rt_lib_init_preinit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004)) +

              __rt_lib_init_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C)) -

              __rt_lib_init_rand_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E)) +

              __rt_lib_init_lc_common (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000F)) +

              [Calls]

              • >>   __rt_locale +
              -

              __rt_lib_init_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C)) +

              __rt_lib_init_rand_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E)) -

              __rt_lib_init_lc_collate_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000011)) +

              __rt_lib_init_lc_collate_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000011)) -

              __rt_lib_init_lc_ctype_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013)) +

              __rt_lib_init_lc_ctype_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013)) -

              __rt_lib_init_lc_monetary_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015)) +

              __rt_lib_init_lc_monetary_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015)) -

              __rt_lib_init_lc_numeric_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000016)) +

              __rt_lib_init_lc_numeric_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000016))

              [Stack]

              • Max Depth = 16 + Unknown Stack Size
              • Call Chain = __rt_lib_init_lc_numeric_2 ⇒ _get_lc_numeric ⇒ strcmp
              -
              [Calls]
              • >>   _get_lc_numeric +
                [Calls]
                • >>   _get_lc_numeric
                -

                __rt_lib_init_alloca_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E)) +

                __rt_lib_init_alloca_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E)) -

                __rt_lib_init_argv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002C)) +

                __rt_lib_init_argv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002C)) -

                __rt_lib_init_atexit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B)) +

                __rt_lib_init_atexit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B)) -

                __rt_lib_init_clock_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021)) +

                __rt_lib_init_clock_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021)) -

                __rt_lib_init_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032)) +

                __rt_lib_init_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032)) -

                __rt_lib_init_exceptions_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030)) +

                __rt_lib_init_exceptions_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030)) -

                __rt_lib_init_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F)) +

                __rt_lib_init_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F)) -

                __rt_lib_init_getenv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023)) +

                __rt_lib_init_getenv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023)) -

                __rt_lib_init_lc_numeric_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017)) +

                __rt_lib_init_lc_numeric_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017)) -

                __rt_lib_init_lc_time_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019)) +

                __rt_lib_init_lc_time_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019)) -

                __rt_lib_init_return (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000033)) +

                __rt_lib_init_return (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000033)) -

                __rt_lib_init_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D)) +

                __rt_lib_init_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D)) -

                __rt_lib_init_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025)) +

                __rt_lib_init_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025)) -

                __rt_lib_shutdown (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000)) -

                [Called By]

                • >>   __rt_exit_ls +

                  __rt_lib_shutdown (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000)) +

                  [Called By]

                  • >>   __rt_exit_ls
                  -

                  __rt_lib_shutdown_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)) +

                  __rt_lib_shutdown_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)) -

                  __rt_lib_shutdown_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000007)) +

                  __rt_lib_shutdown_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000007)) -

                  __rt_lib_shutdown_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)) +

                  __rt_lib_shutdown_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)) -

                  __rt_lib_shutdown_return (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000010)) +

                  __rt_lib_shutdown_return (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000010)) -

                  __rt_lib_shutdown_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A)) +

                  __rt_lib_shutdown_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A)) -

                  __rt_lib_shutdown_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)) +

                  __rt_lib_shutdown_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)) -

                  __rt_lib_shutdown_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)) +

                  __rt_lib_shutdown_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C))

                  __rt_entry (Thumb, 0 bytes, Stack size unknown bytes, __rtentry.o(.ARM.Collect$$rtentry$$00000000))

                  [Called By]

                  • >>   __main
                  • >>   __scatterload_rt2
                  -

                  __rt_entry_presh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002)) +

                  __rt_entry_presh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002)) -

                  __rt_entry_sh (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004)) +

                  __rt_entry_sh (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004))

                  [Stack]

                  • Max Depth = 8 + Unknown Stack Size
                  • Call Chain = __rt_entry_sh ⇒ __user_setup_stackheap
                  -
                  [Calls]
                  • >>   __user_setup_stackheap +
                    [Calls]
                    • >>   __user_setup_stackheap
                    -

                    __rt_entry_li (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)) -

                    [Calls]

                    • >>   __rt_lib_init +

                      __rt_entry_li (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)) +

                      [Calls]

                      • >>   __rt_lib_init
                      -

                      __rt_entry_postsh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009)) +

                      __rt_entry_postsh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009)) -

                      __rt_entry_main (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)) +

                      __rt_entry_main (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D))

                      [Stack]

                      • Max Depth = 192 + Unknown Stack Size
                      • Call Chain = __rt_entry_main ⇒ main ⇒ MX_FREERTOS_Init ⇒ osThreadNew ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                      -
                      [Calls]
                      • >>   main -
                      • >>   exit +
                        [Calls]
                        • >>   main +
                        • >>   exit
                        -

                        __rt_entry_postli_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)) +

                        __rt_entry_postli_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)) -

                        __rt_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000)) -

                        [Called By]

                        • >>   exit +

                          __rt_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000)) +

                          [Called By]

                          • >>   exit
                          -

                          __rt_exit_ls (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000003)) -

                          [Calls]

                          • >>   __rt_lib_shutdown +

                            __rt_exit_ls (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000003)) +

                            [Calls]

                            • >>   __rt_lib_shutdown
                            -

                            __rt_exit_prels_1 (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002)) +

                            __rt_exit_prels_1 (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002)) -

                            __rt_exit_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004)) -

                            [Calls]

                            • >>   _sys_exit +

                              __rt_exit_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004)) +

                              [Calls]

                              • >>   _sys_exit

                              Reset_Handler (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text)) @@ -521,15 +528,15 @@ Global Symbols

                              TAMP_STAMP_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text))
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET)
                              -

                              TIM1_BRK_TIM9_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text)) -
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET) -

                              TIM1_CC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text))
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET)

                              TIM1_TRG_COM_TIM11_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text))
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET)
                              +

                              TIM1_UP_TIM10_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text)) +
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET) +

                              TIM2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text))
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET)
                              @@ -572,195 +579,214 @@ Global Symbols

                              WWDG_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f407xx.o(.text))
                              [Address Reference Count : 1]

                              • startup_stm32f407xx.o(RESET)
                              -

                              __user_initial_stackheap (Thumb, 0 bytes, Stack size unknown bytes, startup_stm32f407xx.o(.text)) -

                              [Called By]

                              • >>   __user_setup_stackheap +

                                __user_initial_stackheap (Thumb, 0 bytes, Stack size unknown bytes, startup_stm32f407xx.o(.text)) +

                                [Called By]

                                • >>   __user_setup_stackheap
                                -

                                __aeabi_uldivmod (Thumb, 0 bytes, Stack size 48 bytes, lludivv7m.o(.text)) +

                                __aeabi_uldivmod (Thumb, 0 bytes, Stack size 48 bytes, lludivv7m.o(.text))

                                [Stack]

                                • Max Depth = 48
                                • Call Chain = __aeabi_uldivmod
                                -
                                [Called By]
                                • >>   HAL_RCC_GetSysClockFreq -
                                • >>   UART_SetConfig +
                                  [Called By]
                                  • >>   HAL_RCC_GetSysClockFreq +
                                  • >>   UART_SetConfig
                                  -

                                  _ll_udiv (Thumb, 240 bytes, Stack size 48 bytes, lludivv7m.o(.text), UNUSED) +

                                  _ll_udiv (Thumb, 240 bytes, Stack size 48 bytes, lludivv7m.o(.text), UNUSED) -

                                  __2sprintf (Thumb, 38 bytes, Stack size 32 bytes, __2sprintf.o(.text)) +

                                  __2sprintf (Thumb, 38 bytes, Stack size 32 bytes, __2sprintf.o(.text))

                                  [Stack]

                                  • Max Depth = 128 + Unknown Stack Size
                                  • Call Chain = __2sprintf ⇒ _printf_char_common ⇒ __printf

                                  [Calls]
                                  • >>   _sputc -
                                  • >>   _printf_char_common +
                                  • >>   _printf_char_common
                                  -
                                  [Called By]
                                  • >>   VOFA_Send +
                                    [Called By]
                                    • >>   VOFA_Send
                                    -

                                    __2snprintf (Thumb, 50 bytes, Stack size 40 bytes, __2snprintf.o(.text)) +

                                    __2snprintf (Thumb, 50 bytes, Stack size 40 bytes, __2snprintf.o(.text))

                                    [Stack]

                                    • Max Depth = 136 + Unknown Stack Size
                                    • Call Chain = __2snprintf ⇒ _printf_char_common ⇒ __printf

                                    [Calls]
                                    • >>   _sputc -
                                    • >>   _printf_char_common +
                                    • >>   _printf_char_common
                                    -
                                    [Called By]
                                    • >>   VOFA_FireWater_Send +
                                      [Called By]
                                      • >>   VOFA_FireWater_Send
                                      -

                                      _printf_str (Thumb, 82 bytes, Stack size 16 bytes, _printf_str.o(.text)) +

                                      _printf_str (Thumb, 82 bytes, Stack size 16 bytes, _printf_str.o(.text))

                                      [Stack]

                                      • Max Depth = 16
                                      • Call Chain = _printf_str
                                      -
                                      [Called By]
                                      • >>   _printf_cs_common +
                                        [Called By]
                                        • >>   _printf_cs_common

                                        _printf_int_dec (Thumb, 104 bytes, Stack size 24 bytes, _printf_dec.o(.text))

                                        [Stack]

                                        • Max Depth = 56
                                        • Call Chain = _printf_int_dec ⇒ _printf_int_common
                                        -
                                        [Calls]
                                        • >>   _printf_int_common +
                                          [Calls]
                                          • >>   _printf_int_common

                                          [Called By]
                                          • >>   _printf_u
                                          -

                                          __printf (Thumb, 270 bytes, Stack size 32 bytes, __printf_wp.o(.text)) +

                                          __printf (Thumb, 270 bytes, Stack size 32 bytes, __printf_wp.o(.text))

                                          [Stack]

                                          • Max Depth = 32 + Unknown Stack Size
                                          • Call Chain = __printf
                                          -
                                          [Calls]
                                          • >>   _printf_percent -
                                          • >>   _is_digit +
                                            [Calls]
                                            • >>   _printf_percent +
                                            • >>   _is_digit
                                            -
                                            [Called By]
                                            • >>   _printf_char_common +
                                              [Called By]
                                              • >>   _printf_char_common
                                              -

                                              strlen (Thumb, 62 bytes, Stack size 8 bytes, strlen.o(.text)) +

                                              srand (Thumb, 42 bytes, Stack size 8 bytes, rand.o(.text)) +

                                              [Stack]

                                              • Max Depth = 8
                                              • Call Chain = srand +
                                              +
                                              [Called By]
                                              • >>   _rand_init +
                                              • >>   Chassis_SetMode +
                                              + +

                                              _rand_init (Thumb, 4 bytes, Stack size 0 bytes, rand.o(.text)) +

                                              [Stack]

                                              • Max Depth = 8
                                              • Call Chain = _rand_init ⇒ srand +
                                              +
                                              [Calls]
                                              • >>   srand +
                                              +
                                              [Called By]
                                              • >>   __rt_lib_init_rand_2 +
                                              + +

                                              strlen (Thumb, 62 bytes, Stack size 8 bytes, strlen.o(.text))

                                              [Stack]

                                              • Max Depth = 8
                                              • Call Chain = strlen
                                              -
                                              [Called By]
                                              • >>   VOFA_Send -
                                              • >>   VOFA_RawData_Send -
                                              • >>   VOFA_FireWater_Send +
                                                [Called By]
                                                • >>   VOFA_Send +
                                                • >>   VOFA_RawData_Send +
                                                • >>   VOFA_FireWater_Send
                                                -

                                                __aeabi_memcpy (Thumb, 0 bytes, Stack size 0 bytes, rt_memcpy_v6.o(.text)) -

                                                [Called By]

                                                • >>   prvCopyDataToQueue -
                                                • >>   prvCopyDataFromQueue -
                                                • >>   BSP_CAN_Transmit +

                                                  __aeabi_memcpy (Thumb, 0 bytes, Stack size 0 bytes, rt_memcpy_v6.o(.text)) +

                                                  [Called By]

                                                  • >>   prvCopyDataToQueue +
                                                  • >>   prvCopyDataFromQueue +
                                                  • >>   BSP_CAN_Transmit
                                                  • >>   BSP_CAN_RxFifo1Callback
                                                  • >>   BSP_CAN_RxFifo0Callback
                                                  -

                                                  __rt_memcpy (Thumb, 138 bytes, Stack size 0 bytes, rt_memcpy_v6.o(.text), UNUSED) -

                                                  [Calls]

                                                  • >>   __aeabi_memcpy4 +

                                                    __rt_memcpy (Thumb, 138 bytes, Stack size 0 bytes, rt_memcpy_v6.o(.text), UNUSED) +

                                                    [Calls]

                                                    • >>   __aeabi_memcpy4
                                                    -

                                                    _memcpy_lastbytes (Thumb, 0 bytes, Stack size unknown bytes, rt_memcpy_v6.o(.text), UNUSED) +

                                                    _memcpy_lastbytes (Thumb, 0 bytes, Stack size unknown bytes, rt_memcpy_v6.o(.text), UNUSED) -

                                                    __aeabi_memcpy4 (Thumb, 0 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text)) +

                                                    __aeabi_memcpy4 (Thumb, 0 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text))

                                                    [Stack]

                                                    • Max Depth = 8
                                                    • Call Chain = __aeabi_memcpy4
                                                    -
                                                    [Called By]
                                                    • >>   __rt_memcpy -
                                                    • >>   VOFA_JustFloat_Send +
                                                      [Called By]
                                                      • >>   __rt_memcpy +
                                                      • >>   VOFA_JustFloat_Send
                                                      -

                                                      __aeabi_memcpy8 (Thumb, 0 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text)) +

                                                      __aeabi_memcpy8 (Thumb, 0 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text))

                                                      [Stack]

                                                      • Max Depth = 8
                                                      • Call Chain = __aeabi_memcpy8
                                                      -
                                                      [Called By]
                                                      • >>   Shoot_UpdateFeedback +
                                                        [Called By]
                                                        • >>   Shoot_UpdateFeedback
                                                        -

                                                        __rt_memcpy_w (Thumb, 100 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text), UNUSED) +

                                                        __rt_memcpy_w (Thumb, 100 bytes, Stack size 8 bytes, rt_memcpy_w.o(.text), UNUSED) -

                                                        _memcpy_lastbytes_aligned (Thumb, 0 bytes, Stack size unknown bytes, rt_memcpy_w.o(.text), UNUSED) +

                                                        _memcpy_lastbytes_aligned (Thumb, 0 bytes, Stack size unknown bytes, rt_memcpy_w.o(.text), UNUSED) -

                                                        __aeabi_memset4 (Thumb, 16 bytes, Stack size 0 bytes, aeabi_memset4.o(.text)) +

                                                        __aeabi_memset4 (Thumb, 16 bytes, Stack size 0 bytes, aeabi_memset4.o(.text))

                                                        [Stack]

                                                        • Max Depth = 4
                                                        • Call Chain = __aeabi_memset4 ⇒ _memset_w
                                                        -
                                                        [Calls]
                                                        • >>   _memset_w +
                                                          [Calls]
                                                          • >>   _memset_w
                                                          -
                                                          [Called By]
                                                          • >>   prvInitialiseNewTask +
                                                            [Called By]
                                                            • >>   prvInitialiseNewTask
                                                            -

                                                            __aeabi_memset8 (Thumb, 0 bytes, Stack size 0 bytes, aeabi_memset4.o(.text), UNUSED) +

                                                            __aeabi_memset8 (Thumb, 0 bytes, Stack size 0 bytes, aeabi_memset4.o(.text), UNUSED) -

                                                            __aeabi_memclr4 (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text)) -

                                                            [Called By]

                                                            • >>   SystemClock_Config -
                                                            • >>   BSP_CAN_Init -
                                                            • >>   CMD_Init -
                                                            • >>   MOTOR_DM_CreateCANManager -
                                                            • >>   MOTOR_RM_CreateCANManager +

                                                              __aeabi_memclr4 (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text)) +

                                                              [Called By]

                                                              • >>   SystemClock_Config +
                                                              • >>   BSP_CAN_Init +
                                                              • >>   CMD_Init +
                                                              • >>   MOTOR_DM_CreateCANManager +
                                                              • >>   MOTOR_RM_CreateCANManager
                                                              -

                                                              __aeabi_memclr8 (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text)) -

                                                              [Called By]

                                                              • >>   MOTOR_DM_Register -
                                                              • >>   MOTOR_RM_Register +

                                                                __aeabi_memclr8 (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text)) +

                                                                [Called By]

                                                                • >>   MOTOR_DM_Register +
                                                                • >>   MOTOR_RM_Register
                                                                -

                                                                __rt_memclr_w (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text), UNUSED) +

                                                                __rt_memclr_w (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text), UNUSED) -

                                                                _memset_w (Thumb, 74 bytes, Stack size 4 bytes, rt_memclr_w.o(.text)) +

                                                                _memset_w (Thumb, 74 bytes, Stack size 4 bytes, rt_memclr_w.o(.text))

                                                                [Stack]

                                                                • Max Depth = 4
                                                                • Call Chain = _memset_w
                                                                -
                                                                [Called By]
                                                                • >>   __aeabi_memset4 +
                                                                  [Called By]
                                                                  • >>   __aeabi_memset4
                                                                  -

                                                                  __use_two_region_memory (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) +

                                                                  __use_two_region_memory (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) -

                                                                  __rt_heap_escrow$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) +

                                                                  __rt_heap_escrow$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) -

                                                                  __rt_heap_expand$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) +

                                                                  __rt_heap_expand$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) -

                                                                  __read_errno (Thumb, 10 bytes, Stack size 8 bytes, _rserrno.o(.text), UNUSED) -

                                                                  [Calls]

                                                                  • >>   __aeabi_errno_addr +

                                                                    __read_errno (Thumb, 10 bytes, Stack size 8 bytes, _rserrno.o(.text), UNUSED) +

                                                                    [Calls]

                                                                    • >>   __aeabi_errno_addr
                                                                    -

                                                                    __set_errno (Thumb, 12 bytes, Stack size 8 bytes, _rserrno.o(.text)) +

                                                                    __set_errno (Thumb, 12 bytes, Stack size 8 bytes, _rserrno.o(.text))

                                                                    [Stack]

                                                                    • Max Depth = 8
                                                                    • Call Chain = __set_errno
                                                                    -
                                                                    [Calls]
                                                                    • >>   __aeabi_errno_addr +
                                                                      [Calls]
                                                                      • >>   __aeabi_errno_addr
                                                                      -
                                                                      [Called By]
                                                                      • >>   sqrtf -
                                                                      • >>   __hardfp_tanf -
                                                                      • >>   __hardfp_atan2f -
                                                                      • >>   __hardfp_atan2 -
                                                                      • >>   __hardfp_asinf +
                                                                        [Called By]
                                                                        • >>   sqrtf +
                                                                        • >>   __hardfp_tanf +
                                                                        • >>   __hardfp_sqrt +
                                                                        • >>   __hardfp_sinf +
                                                                        • >>   __hardfp_fmod +
                                                                        • >>   __hardfp_cosf +
                                                                        • >>   __hardfp_atan2f +
                                                                        • >>   __hardfp_atan2 +
                                                                        • >>   __hardfp_asinf
                                                                        -

                                                                        _printf_int_common (Thumb, 178 bytes, Stack size 32 bytes, _printf_intcommon.o(.text)) +

                                                                        _printf_int_common (Thumb, 178 bytes, Stack size 32 bytes, _printf_intcommon.o(.text))

                                                                        [Stack]

                                                                        • Max Depth = 32
                                                                        • Call Chain = _printf_int_common

                                                                        [Called By]
                                                                        • >>   _printf_int_dec
                                                                        -

                                                                        _printf_fp_dec_real (Thumb, 620 bytes, Stack size 104 bytes, _printf_fp_dec.o(.text)) +

                                                                        _printf_fp_dec_real (Thumb, 620 bytes, Stack size 104 bytes, _printf_fp_dec.o(.text))

                                                                        [Stack]

                                                                        • Max Depth = 324
                                                                        • Call Chain = _printf_fp_dec_real ⇒ _fp_digits ⇒ _btod_etento ⇒ _btod_emul ⇒ _e2e
                                                                        -
                                                                        [Calls]
                                                                        • >>   __ARM_fpclassify -
                                                                        • >>   _printf_fp_infnan -
                                                                        • >>   __rt_locale -
                                                                        • >>   _fp_digits +
                                                                          [Calls]
                                                                          • >>   __ARM_fpclassify +
                                                                          • >>   _printf_fp_infnan +
                                                                          • >>   __rt_locale +
                                                                          • >>   _fp_digits

                                                                          [Called By]
                                                                          • >>   _printf_fp_dec
                                                                          -

                                                                          _printf_char_common (Thumb, 32 bytes, Stack size 64 bytes, _printf_char_common.o(.text)) +

                                                                          _printf_char_common (Thumb, 32 bytes, Stack size 64 bytes, _printf_char_common.o(.text))

                                                                          [Stack]

                                                                          • Max Depth = 96 + Unknown Stack Size
                                                                          • Call Chain = _printf_char_common ⇒ __printf
                                                                          -
                                                                          [Calls]
                                                                          • >>   __printf +
                                                                            [Calls]
                                                                            • >>   __printf
                                                                            -
                                                                            [Called By]
                                                                            • >>   __2snprintf -
                                                                            • >>   __2sprintf +
                                                                              [Called By]
                                                                              • >>   __2snprintf +
                                                                              • >>   __2sprintf

                                                                              _sputc (Thumb, 10 bytes, Stack size 0 bytes, _sputc.o(.text)) -

                                                                              [Called By]

                                                                              • >>   __2snprintf -
                                                                              • >>   __2sprintf +

                                                                                [Called By]
                                                                                • >>   __2snprintf +
                                                                                • >>   __2sprintf

                                                                                [Address Reference Count : 1]
                                                                                • __2sprintf.o(.text)

                                                                                _snputc (Thumb, 16 bytes, Stack size 0 bytes, _snputc.o(.text))
                                                                                [Address Reference Count : 1]

                                                                                • __2snprintf.o(.text)
                                                                                -

                                                                                _printf_cs_common (Thumb, 20 bytes, Stack size 8 bytes, _printf_char.o(.text)) +

                                                                                _printf_cs_common (Thumb, 20 bytes, Stack size 8 bytes, _printf_char.o(.text))

                                                                                [Stack]

                                                                                • Max Depth = 24
                                                                                • Call Chain = _printf_cs_common ⇒ _printf_str
                                                                                -
                                                                                [Calls]
                                                                                • >>   _printf_str +
                                                                                  [Calls]
                                                                                  • >>   _printf_str

                                                                                  [Called By]
                                                                                  • >>   _printf_string
                                                                                  • >>   _printf_char @@ -769,7 +795,7 @@ Global Symbols

                                                                                    _printf_char (Thumb, 16 bytes, Stack size 0 bytes, _printf_char.o(.text))

                                                                                    [Stack]

                                                                                    • Max Depth = 24
                                                                                    • Call Chain = _printf_char ⇒ _printf_cs_common ⇒ _printf_str
                                                                                    -
                                                                                    [Calls]
                                                                                    • >>   _printf_cs_common +
                                                                                      [Calls]
                                                                                      • >>   _printf_cs_common

                                                                                      [Called By]
                                                                                      • >>   _printf_c
                                                                                      @@ -777,442 +803,439 @@ Global Symbols

                                                                                      _printf_string (Thumb, 8 bytes, Stack size 0 bytes, _printf_char.o(.text))

                                                                                      [Stack]

                                                                                      • Max Depth = 24
                                                                                      • Call Chain = _printf_string ⇒ _printf_cs_common ⇒ _printf_str
                                                                                      -
                                                                                      [Calls]
                                                                                      • >>   _printf_cs_common +
                                                                                        [Calls]
                                                                                        • >>   _printf_cs_common

                                                                                        [Called By]
                                                                                        • >>   _printf_s
                                                                                        -

                                                                                        __rt_locale (Thumb, 8 bytes, Stack size 0 bytes, rt_locale_intlibspace.o(.text)) -

                                                                                        [Called By]

                                                                                        • >>   __rt_lib_init_lc_common -
                                                                                        • >>   _printf_fp_dec_real +

                                                                                          __rt_locale (Thumb, 8 bytes, Stack size 0 bytes, rt_locale_intlibspace.o(.text)) +

                                                                                          [Called By]

                                                                                          • >>   __rt_lib_init_lc_common +
                                                                                          • >>   _printf_fp_dec_real
                                                                                          -

                                                                                          __aeabi_errno_addr (Thumb, 8 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text)) -

                                                                                          [Called By]

                                                                                          • >>   __set_errno -
                                                                                          • >>   __read_errno +

                                                                                            __aeabi_errno_addr (Thumb, 8 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text)) +

                                                                                            [Called By]

                                                                                            • >>   __set_errno +
                                                                                            • >>   __read_errno
                                                                                            -

                                                                                            __errno$intlibspace (Thumb, 0 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text), UNUSED) +

                                                                                            __errno$intlibspace (Thumb, 0 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text), UNUSED) -

                                                                                            __rt_errno_addr$intlibspace (Thumb, 0 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text), UNUSED) +

                                                                                            __rt_errno_addr$intlibspace (Thumb, 0 bytes, Stack size 0 bytes, rt_errno_addr_intlibspace.o(.text), UNUSED) -

                                                                                            _ll_udiv10 (Thumb, 138 bytes, Stack size 12 bytes, lludiv10.o(.text)) +

                                                                                            _ll_udiv10 (Thumb, 138 bytes, Stack size 12 bytes, lludiv10.o(.text))

                                                                                            [Stack]

                                                                                            • Max Depth = 12
                                                                                            • Call Chain = _ll_udiv10
                                                                                            -
                                                                                            [Called By]
                                                                                            • >>   _fp_digits +
                                                                                              [Called By]
                                                                                              • >>   _fp_digits
                                                                                              -

                                                                                              _printf_fp_infnan (Thumb, 112 bytes, Stack size 24 bytes, _printf_fp_infnan.o(.text)) +

                                                                                              _printf_fp_infnan (Thumb, 112 bytes, Stack size 24 bytes, _printf_fp_infnan.o(.text))

                                                                                              [Stack]

                                                                                              • Max Depth = 24
                                                                                              • Call Chain = _printf_fp_infnan
                                                                                              -
                                                                                              [Called By]
                                                                                              • >>   _printf_fp_dec_real +
                                                                                                [Called By]
                                                                                                • >>   _printf_fp_dec_real
                                                                                                -

                                                                                                _btod_etento (Thumb, 224 bytes, Stack size 72 bytes, bigflt0.o(.text)) +

                                                                                                _btod_etento (Thumb, 224 bytes, Stack size 72 bytes, bigflt0.o(.text))

                                                                                                [Stack]

                                                                                                • Max Depth = 124
                                                                                                • Call Chain = _btod_etento ⇒ _btod_emul ⇒ _e2e
                                                                                                -
                                                                                                [Calls]
                                                                                                • >>   _btod_emul -
                                                                                                • >>   _btod_ediv +
                                                                                                  [Calls]
                                                                                                  • >>   _btod_emul +
                                                                                                  • >>   _btod_ediv
                                                                                                  -
                                                                                                  [Called By]
                                                                                                  • >>   _fp_digits +
                                                                                                    [Called By]
                                                                                                    • >>   _fp_digits
                                                                                                    -

                                                                                                    __user_libspace (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) +

                                                                                                    __user_libspace (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) -

                                                                                                    __user_perproc_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text)) -

                                                                                                    [Called By]

                                                                                                    • >>   __user_setup_stackheap +

                                                                                                      __user_perproc_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text)) +

                                                                                                      [Called By]

                                                                                                      • >>   __user_setup_stackheap
                                                                                                      -

                                                                                                      __user_perthread_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) +

                                                                                                      __user_perthread_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) -

                                                                                                      __user_setup_stackheap (Thumb, 74 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text)) +

                                                                                                      __user_setup_stackheap (Thumb, 74 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text))

                                                                                                      [Stack]

                                                                                                      • Max Depth = 8 + Unknown Stack Size
                                                                                                      • Call Chain = __user_setup_stackheap
                                                                                                      -
                                                                                                      [Calls]
                                                                                                      • >>   __user_initial_stackheap -
                                                                                                      • >>   __user_perproc_libspace +
                                                                                                        [Calls]
                                                                                                        • >>   __user_initial_stackheap +
                                                                                                        • >>   __user_perproc_libspace
                                                                                                        -
                                                                                                        [Called By]
                                                                                                        • >>   __rt_entry_sh +
                                                                                                          [Called By]
                                                                                                          • >>   __rt_entry_sh
                                                                                                          -

                                                                                                          exit (Thumb, 18 bytes, Stack size 8 bytes, exit.o(.text)) +

                                                                                                          exit (Thumb, 18 bytes, Stack size 8 bytes, exit.o(.text))

                                                                                                          [Stack]

                                                                                                          • Max Depth = 8 + Unknown Stack Size
                                                                                                          • Call Chain = exit
                                                                                                          -
                                                                                                          [Calls]
                                                                                                          • >>   __rt_exit +
                                                                                                            [Calls]
                                                                                                            • >>   __rt_exit
                                                                                                            -
                                                                                                            [Called By]
                                                                                                            • >>   __rt_entry_main +
                                                                                                              [Called By]
                                                                                                              • >>   __rt_entry_main
                                                                                                              -

                                                                                                              strcmp (Thumb, 124 bytes, Stack size 8 bytes, strcmpv7em.o(.text)) +

                                                                                                              strcmp (Thumb, 124 bytes, Stack size 8 bytes, strcmpv7em.o(.text))

                                                                                                              [Stack]

                                                                                                              • Max Depth = 8
                                                                                                              • Call Chain = strcmp
                                                                                                              -
                                                                                                              [Called By]
                                                                                                              • >>   _get_lc_numeric +
                                                                                                                [Called By]
                                                                                                                • >>   _get_lc_numeric
                                                                                                                -

                                                                                                                _sys_exit (Thumb, 8 bytes, Stack size 0 bytes, sys_exit.o(.text)) -

                                                                                                                [Called By]

                                                                                                                • >>   __rt_exit_exit +

                                                                                                                  _sys_exit (Thumb, 8 bytes, Stack size 0 bytes, sys_exit.o(.text)) +

                                                                                                                  [Called By]

                                                                                                                  • >>   __rt_exit_exit
                                                                                                                  -

                                                                                                                  __I$use$semihosting (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED) +

                                                                                                                  __I$use$semihosting (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED) -

                                                                                                                  __use_no_semihosting_swi (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED) +

                                                                                                                  __use_no_semihosting_swi (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED) -

                                                                                                                  __semihosting_library_function (Thumb, 0 bytes, Stack size unknown bytes, indicate_semi.o(.text), UNUSED) +

                                                                                                                  __semihosting_library_function (Thumb, 0 bytes, Stack size unknown bytes, indicate_semi.o(.text), UNUSED) -

                                                                                                                  AHRS_GetEulr (Thumb, 220 bytes, Stack size 24 bytes, ahrs.o(.text.AHRS_GetEulr)) +

                                                                                                                  AHRS_GetEulr (Thumb, 220 bytes, Stack size 24 bytes, ahrs.o(.text.AHRS_GetEulr))

                                                                                                                  [Stack]

                                                                                                                  • Max Depth = 64
                                                                                                                  • Call Chain = AHRS_GetEulr ⇒ __hardfp_atan2f ⇒ __set_errno
                                                                                                                  -
                                                                                                                  [Calls]
                                                                                                                  • >>   copysignf -
                                                                                                                  • >>   __hardfp_atan2f -
                                                                                                                  • >>   __hardfp_asinf +
                                                                                                                    [Calls]
                                                                                                                    • >>   copysignf +
                                                                                                                    • >>   __hardfp_atan2f +
                                                                                                                    • >>   __hardfp_asinf

                                                                                                                    [Called By]
                                                                                                                    • >>   Task_atti_esti
                                                                                                                    -

                                                                                                                    AHRS_Init (Thumb, 388 bytes, Stack size 24 bytes, ahrs.o(.text.AHRS_Init)) +

                                                                                                                    AHRS_Init (Thumb, 388 bytes, Stack size 24 bytes, ahrs.o(.text.AHRS_Init))

                                                                                                                    [Stack]

                                                                                                                    • Max Depth = 192
                                                                                                                    • Call Chain = AHRS_Init ⇒ __hardfp_atan2 ⇒ atan ⇒ __hardfp_atan ⇒ __kernel_poly ⇒ __aeabi_dmul
                                                                                                                    -
                                                                                                                    [Calls]
                                                                                                                    • >>   __aeabi_d2f -
                                                                                                                    • >>   __hardfp_atan2 -
                                                                                                                    • >>   __aeabi_f2d +
                                                                                                                      [Calls]
                                                                                                                      • >>   __aeabi_d2f +
                                                                                                                      • >>   __hardfp_atan2 +
                                                                                                                      • >>   __aeabi_f2d

                                                                                                                      [Called By]
                                                                                                                      • >>   Task_atti_esti
                                                                                                                      -

                                                                                                                      AHRS_ResetEulr (Thumb, 10 bytes, Stack size 0 bytes, ahrs.o(.text.AHRS_ResetEulr)) -

                                                                                                                      [Called By]

                                                                                                                      • >>   Gimbal_SetMode +

                                                                                                                        AHRS_ResetEulr (Thumb, 10 bytes, Stack size 0 bytes, ahrs.o(.text.AHRS_ResetEulr)) +

                                                                                                                        [Called By]

                                                                                                                        • >>   Gimbal_SetMode
                                                                                                                        -

                                                                                                                        AHRS_Update (Thumb, 1422 bytes, Stack size 136 bytes, ahrs.o(.text.AHRS_Update)) +

                                                                                                                        AHRS_Update (Thumb, 1422 bytes, Stack size 136 bytes, ahrs.o(.text.AHRS_Update))

                                                                                                                        [Stack]

                                                                                                                        • Max Depth = 216
                                                                                                                        • Call Chain = AHRS_Update ⇒ AHRS_UpdateIMU
                                                                                                                        -
                                                                                                                        [Calls]
                                                                                                                        • >>   InvSqrt -
                                                                                                                        • >>   AHRS_UpdateIMU +
                                                                                                                          [Calls]
                                                                                                                          • >>   InvSqrt +
                                                                                                                          • >>   AHRS_UpdateIMU

                                                                                                                          [Called By]
                                                                                                                          • >>   Task_atti_esti
                                                                                                                          -

                                                                                                                          AbsClip (Thumb, 34 bytes, Stack size 0 bytes, user_math.o(.text.AbsClip)) -

                                                                                                                          [Called By]

                                                                                                                          • >>   PID_Calc +

                                                                                                                            AbsClip (Thumb, 34 bytes, Stack size 0 bytes, user_math.o(.text.AbsClip)) +

                                                                                                                            [Called By]

                                                                                                                            • >>   PID_Calc
                                                                                                                            -

                                                                                                                            BMI088_AcclStartDmaRecv (Thumb, 24 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_AcclStartDmaRecv)) +

                                                                                                                            BMI088_AcclStartDmaRecv (Thumb, 24 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_AcclStartDmaRecv))

                                                                                                                            [Stack]

                                                                                                                            • Max Depth = 168
                                                                                                                            • Call Chain = BMI088_AcclStartDmaRecv ⇒ BMI_Read ⇒ BSP_SPI_Receive ⇒ HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                            -
                                                                                                                            [Calls]
                                                                                                                            • >>   BMI_Read +
                                                                                                                              [Calls]
                                                                                                                              • >>   BMI_Read

                                                                                                                              [Called By]
                                                                                                                              • >>   Task_atti_esti
                                                                                                                              -

                                                                                                                              BMI088_AcclWaitDmaCplt (Thumb, 16 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_AcclWaitDmaCplt)) +

                                                                                                                              BMI088_AcclWaitDmaCplt (Thumb, 16 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_AcclWaitDmaCplt))

                                                                                                                              [Stack]

                                                                                                                              • Max Depth = 112
                                                                                                                              • Call Chain = BMI088_AcclWaitDmaCplt ⇒ osThreadFlagsWait ⇒ xTaskNotifyWait ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                              -
                                                                                                                              [Calls]
                                                                                                                              • >>   osThreadFlagsWait +
                                                                                                                                [Calls]
                                                                                                                                • >>   osThreadFlagsWait

                                                                                                                                [Called By]
                                                                                                                                • >>   Task_atti_esti
                                                                                                                                -

                                                                                                                                BMI088_GetUpdateFreq (Thumb, 12 bytes, Stack size 0 bytes, bmi088.o(.text.BMI088_GetUpdateFreq)) +

                                                                                                                                BMI088_GetUpdateFreq (Thumb, 12 bytes, Stack size 0 bytes, bmi088.o(.text.BMI088_GetUpdateFreq))

                                                                                                                                [Called By]

                                                                                                                                • >>   Task_atti_esti
                                                                                                                                -

                                                                                                                                BMI088_GyroStartDmaRecv (Thumb, 26 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_GyroStartDmaRecv)) +

                                                                                                                                BMI088_GyroStartDmaRecv (Thumb, 26 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_GyroStartDmaRecv))

                                                                                                                                [Stack]

                                                                                                                                • Max Depth = 168
                                                                                                                                • Call Chain = BMI088_GyroStartDmaRecv ⇒ BMI_Read ⇒ BSP_SPI_Receive ⇒ HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                -
                                                                                                                                [Calls]
                                                                                                                                • >>   BMI_Read +
                                                                                                                                  [Calls]
                                                                                                                                  • >>   BMI_Read

                                                                                                                                  [Called By]
                                                                                                                                  • >>   Task_atti_esti
                                                                                                                                  -

                                                                                                                                  BMI088_GyroWaitDmaCplt (Thumb, 16 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_GyroWaitDmaCplt)) +

                                                                                                                                  BMI088_GyroWaitDmaCplt (Thumb, 16 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_GyroWaitDmaCplt))

                                                                                                                                  [Stack]

                                                                                                                                  • Max Depth = 112
                                                                                                                                  • Call Chain = BMI088_GyroWaitDmaCplt ⇒ osThreadFlagsWait ⇒ xTaskNotifyWait ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                  -
                                                                                                                                  [Calls]
                                                                                                                                  • >>   osThreadFlagsWait +
                                                                                                                                    [Calls]
                                                                                                                                    • >>   osThreadFlagsWait

                                                                                                                                    [Called By]
                                                                                                                                    • >>   Task_atti_esti
                                                                                                                                    -

                                                                                                                                    BMI088_Init (Thumb, 322 bytes, Stack size 24 bytes, bmi088.o(.text.BMI088_Init)) +

                                                                                                                                    BMI088_Init (Thumb, 322 bytes, Stack size 24 bytes, bmi088.o(.text.BMI088_Init))

                                                                                                                                    [Stack]

                                                                                                                                    • Max Depth = 192
                                                                                                                                    • Call Chain = BMI088_Init ⇒ BMI_ReadSingle ⇒ BSP_SPI_Receive ⇒ HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                    -
                                                                                                                                    [Calls]
                                                                                                                                    • >>   osThreadGetId -
                                                                                                                                    • >>   BMI_WriteSingle -
                                                                                                                                    • >>   BMI_ReadSingle -
                                                                                                                                    • >>   BSP_TIME_Delay -
                                                                                                                                    • >>   BSP_SPI_RegisterCallback -
                                                                                                                                    • >>   BSP_GPIO_RegisterCallback -
                                                                                                                                    • >>   BSP_GPIO_EnableIRQ -
                                                                                                                                    • >>   BSP_GPIO_DisableIRQ +
                                                                                                                                      [Calls]
                                                                                                                                      • >>   osThreadGetId +
                                                                                                                                      • >>   BMI_WriteSingle +
                                                                                                                                      • >>   BMI_ReadSingle +
                                                                                                                                      • >>   BSP_TIME_Delay +
                                                                                                                                      • >>   BSP_SPI_RegisterCallback +
                                                                                                                                      • >>   BSP_GPIO_RegisterCallback +
                                                                                                                                      • >>   BSP_GPIO_EnableIRQ +
                                                                                                                                      • >>   BSP_GPIO_DisableIRQ

                                                                                                                                      [Called By]
                                                                                                                                      • >>   Task_atti_esti
                                                                                                                                      -

                                                                                                                                      BMI088_ParseAccl (Thumb, 148 bytes, Stack size 0 bytes, bmi088.o(.text.BMI088_ParseAccl)) +

                                                                                                                                      BMI088_ParseAccl (Thumb, 148 bytes, Stack size 0 bytes, bmi088.o(.text.BMI088_ParseAccl))

                                                                                                                                      [Called By]

                                                                                                                                      • >>   Task_atti_esti
                                                                                                                                      -

                                                                                                                                      BMI088_ParseGyro (Thumb, 132 bytes, Stack size 0 bytes, bmi088.o(.text.BMI088_ParseGyro)) +

                                                                                                                                      BMI088_ParseGyro (Thumb, 132 bytes, Stack size 0 bytes, bmi088.o(.text.BMI088_ParseGyro))

                                                                                                                                      [Called By]

                                                                                                                                      • >>   Task_atti_esti
                                                                                                                                      -

                                                                                                                                      BMI088_WaitNew (Thumb, 16 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_WaitNew)) +

                                                                                                                                      BMI088_WaitNew (Thumb, 16 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_WaitNew))

                                                                                                                                      [Stack]

                                                                                                                                      • Max Depth = 112
                                                                                                                                      • Call Chain = BMI088_WaitNew ⇒ osThreadFlagsWait ⇒ xTaskNotifyWait ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                      -
                                                                                                                                      [Calls]
                                                                                                                                      • >>   osThreadFlagsWait +
                                                                                                                                        [Calls]
                                                                                                                                        • >>   osThreadFlagsWait

                                                                                                                                        [Called By]
                                                                                                                                        • >>   Task_atti_esti
                                                                                                                                        -

                                                                                                                                        BSP_CAN_GetHandle (Thumb, 38 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_GetHandle)) -

                                                                                                                                        [Called By]

                                                                                                                                        • >>   BSP_CAN_Transmit +

                                                                                                                                          BSP_CAN_GetHandle (Thumb, 38 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_GetHandle)) +

                                                                                                                                          [Called By]

                                                                                                                                          • >>   BSP_CAN_Transmit
                                                                                                                                          • >>   BSP_CAN_TxCompleteCallback
                                                                                                                                          • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                          • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                          -

                                                                                                                                          BSP_CAN_GetMessage (Thumb, 128 bytes, Stack size 24 bytes, can_1.o(.text.BSP_CAN_GetMessage)) +

                                                                                                                                          BSP_CAN_GetMessage (Thumb, 128 bytes, Stack size 24 bytes, can_1.o(.text.BSP_CAN_GetMessage))

                                                                                                                                          [Stack]

                                                                                                                                          • Max Depth = 184
                                                                                                                                          • Call Chain = BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                          -
                                                                                                                                          [Calls]
                                                                                                                                          • >>   BSP_CAN_FindQueue -
                                                                                                                                          • >>   osMutexRelease -
                                                                                                                                          • >>   osMutexAcquire -
                                                                                                                                          • >>   osMessageQueueGet +
                                                                                                                                            [Calls]
                                                                                                                                            • >>   BSP_CAN_FindQueue +
                                                                                                                                            • >>   osMutexRelease +
                                                                                                                                            • >>   osMutexAcquire +
                                                                                                                                            • >>   osMessageQueueGet
                                                                                                                                            -
                                                                                                                                            [Called By]
                                                                                                                                            • >>   MOTOR_DM_Update -
                                                                                                                                            • >>   MOTOR_RM_Update +
                                                                                                                                              [Called By]
                                                                                                                                              • >>   MOTOR_DM_Update +
                                                                                                                                              • >>   MOTOR_RM_Update
                                                                                                                                              -

                                                                                                                                              BSP_CAN_Init (Thumb, 308 bytes, Stack size 72 bytes, can_1.o(.text.BSP_CAN_Init)) +

                                                                                                                                              BSP_CAN_Init (Thumb, 308 bytes, Stack size 72 bytes, can_1.o(.text.BSP_CAN_Init))

                                                                                                                                              [Stack]

                                                                                                                                              • Max Depth = 240 + Unknown Stack Size
                                                                                                                                              • Call Chain = BSP_CAN_Init ⇒ osMutexNew ⇒ xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                              -
                                                                                                                                              [Calls]
                                                                                                                                              • >>   HAL_CAN_Start -
                                                                                                                                              • >>   HAL_CAN_ConfigFilter -
                                                                                                                                              • >>   HAL_CAN_ActivateNotification -
                                                                                                                                              • >>   BSP_CAN_RegisterCallback -
                                                                                                                                              • >>   BSP_CAN_TxQueueInit -
                                                                                                                                              • >>   osMutexNew -
                                                                                                                                              • >>   __aeabi_memclr4 +
                                                                                                                                                [Calls]
                                                                                                                                                • >>   HAL_CAN_Start +
                                                                                                                                                • >>   HAL_CAN_ConfigFilter +
                                                                                                                                                • >>   HAL_CAN_ActivateNotification +
                                                                                                                                                • >>   BSP_CAN_RegisterCallback +
                                                                                                                                                • >>   BSP_CAN_TxQueueInit +
                                                                                                                                                • >>   osMutexNew +
                                                                                                                                                • >>   __aeabi_memclr4
                                                                                                                                                -
                                                                                                                                                [Called By]
                                                                                                                                                • >>   chassis_init -
                                                                                                                                                • >>   Shoot_Init -
                                                                                                                                                • >>   Gimbal_Init +
                                                                                                                                                  [Called By]
                                                                                                                                                  • >>   chassis_init +
                                                                                                                                                  • >>   Shoot_Init +
                                                                                                                                                  • >>   Gimbal_Init
                                                                                                                                                  -

                                                                                                                                                  BSP_CAN_ParseId (Thumb, 20 bytes, Stack size 8 bytes, can_1.o(.text.BSP_CAN_ParseId)) +

                                                                                                                                                  BSP_CAN_ParseId (Thumb, 20 bytes, Stack size 8 bytes, can_1.o(.text.BSP_CAN_ParseId))

                                                                                                                                                  [Stack]

                                                                                                                                                  • Max Depth = 8
                                                                                                                                                  • Call Chain = BSP_CAN_ParseId

                                                                                                                                                  [Called By]
                                                                                                                                                  • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                                  • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                                  -

                                                                                                                                                  BSP_CAN_RegisterCallback (Thumb, 68 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_RegisterCallback)) -

                                                                                                                                                  [Called By]

                                                                                                                                                  • >>   BSP_CAN_Init +

                                                                                                                                                    BSP_CAN_RegisterCallback (Thumb, 68 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_RegisterCallback)) +

                                                                                                                                                    [Called By]

                                                                                                                                                    • >>   BSP_CAN_Init
                                                                                                                                                    -

                                                                                                                                                    BSP_CAN_RegisterId (Thumb, 30 bytes, Stack size 8 bytes, can_1.o(.text.BSP_CAN_RegisterId)) +

                                                                                                                                                    BSP_CAN_RegisterId (Thumb, 30 bytes, Stack size 8 bytes, can_1.o(.text.BSP_CAN_RegisterId))

                                                                                                                                                    [Stack]

                                                                                                                                                    • Max Depth = 200
                                                                                                                                                    • Call Chain = BSP_CAN_RegisterId ⇒ BSP_CAN_CreateIdQueue ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                    -
                                                                                                                                                    [Calls]
                                                                                                                                                    • >>   BSP_CAN_CreateIdQueue +
                                                                                                                                                      [Calls]
                                                                                                                                                      • >>   BSP_CAN_CreateIdQueue
                                                                                                                                                      -
                                                                                                                                                      [Called By]
                                                                                                                                                      • >>   MOTOR_DM_Register -
                                                                                                                                                      • >>   MOTOR_RM_Register +
                                                                                                                                                        [Called By]
                                                                                                                                                        • >>   MOTOR_DM_Register +
                                                                                                                                                        • >>   MOTOR_RM_Register
                                                                                                                                                        -

                                                                                                                                                        BSP_CAN_Transmit (Thumb, 226 bytes, Stack size 64 bytes, can_1.o(.text.BSP_CAN_Transmit)) +

                                                                                                                                                        BSP_CAN_Transmit (Thumb, 226 bytes, Stack size 64 bytes, can_1.o(.text.BSP_CAN_Transmit))

                                                                                                                                                        [Stack]

                                                                                                                                                        • Max Depth = 96
                                                                                                                                                        • Call Chain = BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                        -
                                                                                                                                                        [Calls]
                                                                                                                                                        • >>   HAL_CAN_GetTxMailboxesFreeLevel -
                                                                                                                                                        • >>   HAL_CAN_AddTxMessage -
                                                                                                                                                        • >>   BSP_CAN_GetHandle -
                                                                                                                                                        • >>   BSP_CAN_TxQueuePush -
                                                                                                                                                        • >>   __aeabi_memcpy +
                                                                                                                                                          [Calls]
                                                                                                                                                          • >>   HAL_CAN_GetTxMailboxesFreeLevel +
                                                                                                                                                          • >>   HAL_CAN_AddTxMessage +
                                                                                                                                                          • >>   BSP_CAN_GetHandle +
                                                                                                                                                          • >>   BSP_CAN_TxQueuePush +
                                                                                                                                                          • >>   __aeabi_memcpy
                                                                                                                                                          -
                                                                                                                                                          [Called By]
                                                                                                                                                          • >>   BSP_CAN_TransmitStdDataFrame +
                                                                                                                                                            [Called By]
                                                                                                                                                            • >>   BSP_CAN_TransmitStdDataFrame
                                                                                                                                                            -

                                                                                                                                                            BSP_CAN_TransmitStdDataFrame (Thumb, 40 bytes, Stack size 16 bytes, can_1.o(.text.BSP_CAN_TransmitStdDataFrame)) +

                                                                                                                                                            BSP_CAN_TransmitStdDataFrame (Thumb, 40 bytes, Stack size 16 bytes, can_1.o(.text.BSP_CAN_TransmitStdDataFrame))

                                                                                                                                                            [Stack]

                                                                                                                                                            • Max Depth = 112
                                                                                                                                                            • Call Chain = BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                            -
                                                                                                                                                            [Calls]
                                                                                                                                                            • >>   BSP_CAN_Transmit +
                                                                                                                                                              [Calls]
                                                                                                                                                              • >>   BSP_CAN_Transmit
                                                                                                                                                              -
                                                                                                                                                              [Called By]
                                                                                                                                                              • >>   MOTOR_DM_Enable -
                                                                                                                                                              • >>   MOTOR_DM_SendMITCmd -
                                                                                                                                                              • >>   MOTOR_RM_Ctrl +
                                                                                                                                                                [Called By]
                                                                                                                                                                • >>   MOTOR_DM_Enable +
                                                                                                                                                                • >>   MOTOR_DM_SendMITCmd +
                                                                                                                                                                • >>   MOTOR_RM_Ctrl
                                                                                                                                                                -

                                                                                                                                                                BSP_Free (Thumb, 8 bytes, Stack size 8 bytes, mm.o(.text.BSP_Free)) +

                                                                                                                                                                BSP_Free (Thumb, 8 bytes, Stack size 8 bytes, mm.o(.text.BSP_Free))

                                                                                                                                                                [Stack]

                                                                                                                                                                • Max Depth = 104
                                                                                                                                                                • Call Chain = BSP_Free ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                -
                                                                                                                                                                [Calls]
                                                                                                                                                                • >>   vPortFree +
                                                                                                                                                                  [Calls]
                                                                                                                                                                  • >>   vPortFree
                                                                                                                                                                  -
                                                                                                                                                                  [Called By]
                                                                                                                                                                  • >>   BSP_CAN_CreateIdQueue -
                                                                                                                                                                  • >>   MOTOR_DM_Register -
                                                                                                                                                                  • >>   MOTOR_RM_Register +
                                                                                                                                                                    [Called By]
                                                                                                                                                                    • >>   BSP_CAN_CreateIdQueue +
                                                                                                                                                                    • >>   MOTOR_DM_Register +
                                                                                                                                                                    • >>   MOTOR_RM_Register
                                                                                                                                                                    -

                                                                                                                                                                    BSP_GPIO_DisableIRQ (Thumb, 52 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_DisableIRQ)) +

                                                                                                                                                                    BSP_GPIO_DisableIRQ (Thumb, 50 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_DisableIRQ))

                                                                                                                                                                    [Stack]

                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                    • Call Chain = BSP_GPIO_DisableIRQ ⇒ HAL_NVIC_DisableIRQ
                                                                                                                                                                    -
                                                                                                                                                                    [Calls]
                                                                                                                                                                    • >>   HAL_NVIC_DisableIRQ +
                                                                                                                                                                      [Calls]
                                                                                                                                                                      • >>   HAL_NVIC_DisableIRQ
                                                                                                                                                                      -
                                                                                                                                                                      [Called By]
                                                                                                                                                                      • >>   BMI088_Init +
                                                                                                                                                                        [Called By]
                                                                                                                                                                        • >>   BMI088_Init
                                                                                                                                                                        -

                                                                                                                                                                        BSP_GPIO_EnableIRQ (Thumb, 52 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_EnableIRQ)) +

                                                                                                                                                                        BSP_GPIO_EnableIRQ (Thumb, 50 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_EnableIRQ))

                                                                                                                                                                        [Stack]

                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                        • Call Chain = BSP_GPIO_EnableIRQ ⇒ HAL_NVIC_EnableIRQ
                                                                                                                                                                        -
                                                                                                                                                                        [Calls]
                                                                                                                                                                        • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                          [Calls]
                                                                                                                                                                          • >>   HAL_NVIC_EnableIRQ
                                                                                                                                                                          -
                                                                                                                                                                          [Called By]
                                                                                                                                                                          • >>   BMI088_Init +
                                                                                                                                                                            [Called By]
                                                                                                                                                                            • >>   BMI088_Init
                                                                                                                                                                            -

                                                                                                                                                                            BSP_GPIO_ReadPin (Thumb, 44 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_ReadPin)) +

                                                                                                                                                                            BSP_GPIO_ReadPin (Thumb, 44 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_ReadPin))

                                                                                                                                                                            [Stack]

                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                            • Call Chain = BSP_GPIO_ReadPin
                                                                                                                                                                            -
                                                                                                                                                                            [Calls]
                                                                                                                                                                            • >>   HAL_GPIO_ReadPin +
                                                                                                                                                                              [Calls]
                                                                                                                                                                              • >>   HAL_GPIO_ReadPin

                                                                                                                                                                              [Called By]
                                                                                                                                                                              • >>   BMI088_RxCpltCallback
                                                                                                                                                                              -

                                                                                                                                                                              BSP_GPIO_RegisterCallback (Thumb, 74 bytes, Stack size 0 bytes, gpio_1.o(.text.BSP_GPIO_RegisterCallback)) -

                                                                                                                                                                              [Called By]

                                                                                                                                                                              • >>   BMI088_Init +

                                                                                                                                                                                BSP_GPIO_RegisterCallback (Thumb, 74 bytes, Stack size 0 bytes, gpio_1.o(.text.BSP_GPIO_RegisterCallback)) +

                                                                                                                                                                                [Called By]

                                                                                                                                                                                • >>   BMI088_Init
                                                                                                                                                                                -

                                                                                                                                                                                BSP_GPIO_WritePin (Thumb, 48 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_WritePin)) +

                                                                                                                                                                                BSP_GPIO_WritePin (Thumb, 48 bytes, Stack size 8 bytes, gpio_1.o(.text.BSP_GPIO_WritePin))

                                                                                                                                                                                [Stack]

                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                • Call Chain = BSP_GPIO_WritePin
                                                                                                                                                                                -
                                                                                                                                                                                [Calls]
                                                                                                                                                                                • >>   HAL_GPIO_WritePin +
                                                                                                                                                                                  [Calls]
                                                                                                                                                                                  • >>   HAL_GPIO_WritePin
                                                                                                                                                                                  -
                                                                                                                                                                                  [Called By]
                                                                                                                                                                                  • >>   BMI_WriteSingle -
                                                                                                                                                                                  • >>   BMI_ReadSingle -
                                                                                                                                                                                  • >>   BMI_Read +
                                                                                                                                                                                    [Called By]
                                                                                                                                                                                    • >>   BMI_WriteSingle +
                                                                                                                                                                                    • >>   BMI_ReadSingle +
                                                                                                                                                                                    • >>   BMI_Read
                                                                                                                                                                                    • >>   BMI088_RxCpltCallback -
                                                                                                                                                                                    • >>   Motor_Step_Ctrl
                                                                                                                                                                                    -

                                                                                                                                                                                    BSP_Malloc (Thumb, 8 bytes, Stack size 8 bytes, mm.o(.text.BSP_Malloc)) +

                                                                                                                                                                                    BSP_Malloc (Thumb, 8 bytes, Stack size 8 bytes, mm.o(.text.BSP_Malloc))

                                                                                                                                                                                    [Stack]

                                                                                                                                                                                    • Max Depth = 120
                                                                                                                                                                                    • Call Chain = BSP_Malloc ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                    -
                                                                                                                                                                                    [Calls]
                                                                                                                                                                                    • >>   pvPortMalloc +
                                                                                                                                                                                      [Calls]
                                                                                                                                                                                      • >>   pvPortMalloc
                                                                                                                                                                                      -
                                                                                                                                                                                      [Called By]
                                                                                                                                                                                      • >>   BSP_CAN_CreateIdQueue -
                                                                                                                                                                                      • >>   MOTOR_DM_Register -
                                                                                                                                                                                      • >>   MOTOR_DM_CreateCANManager -
                                                                                                                                                                                      • >>   MOTOR_RM_Register -
                                                                                                                                                                                      • >>   MOTOR_RM_CreateCANManager +
                                                                                                                                                                                        [Called By]
                                                                                                                                                                                        • >>   BSP_CAN_CreateIdQueue +
                                                                                                                                                                                        • >>   MOTOR_DM_Register +
                                                                                                                                                                                        • >>   MOTOR_DM_CreateCANManager +
                                                                                                                                                                                        • >>   MOTOR_RM_Register +
                                                                                                                                                                                        • >>   MOTOR_RM_CreateCANManager
                                                                                                                                                                                        -

                                                                                                                                                                                        BSP_PWM_SetComp (Thumb, 116 bytes, Stack size 0 bytes, pwm.o(.text.BSP_PWM_SetComp)) +

                                                                                                                                                                                        BSP_PWM_SetComp (Thumb, 96 bytes, Stack size 0 bytes, pwm.o(.text.BSP_PWM_SetComp))

                                                                                                                                                                                        [Called By]

                                                                                                                                                                                        • >>   Task_atti_esti -
                                                                                                                                                                                        • >>   Motor_Step_Ctrl
                                                                                                                                                                                        -

                                                                                                                                                                                        BSP_PWM_Start (Thumb, 44 bytes, Stack size 8 bytes, pwm.o(.text.BSP_PWM_Start)) +

                                                                                                                                                                                        BSP_PWM_Start (Thumb, 44 bytes, Stack size 8 bytes, pwm.o(.text.BSP_PWM_Start))

                                                                                                                                                                                        [Stack]

                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                        • Call Chain = BSP_PWM_Start ⇒ HAL_TIM_PWM_Start ⇒ TIM_CCxChannelCmd
                                                                                                                                                                                        -
                                                                                                                                                                                        [Calls]
                                                                                                                                                                                        • >>   HAL_TIM_PWM_Start +
                                                                                                                                                                                          [Calls]
                                                                                                                                                                                          • >>   HAL_TIM_PWM_Start

                                                                                                                                                                                          [Called By]
                                                                                                                                                                                          • >>   Task_atti_esti -
                                                                                                                                                                                          • >>   Motor_Step_Init +
                                                                                                                                                                                          • >>   Motor_Step_Init
                                                                                                                                                                                          -

                                                                                                                                                                                          BSP_SPI_GetHandle (Thumb, 18 bytes, Stack size 0 bytes, spi_1.o(.text.BSP_SPI_GetHandle)) -

                                                                                                                                                                                          [Called By]

                                                                                                                                                                                          • >>   BSP_SPI_Transmit -
                                                                                                                                                                                          • >>   BSP_SPI_Receive +

                                                                                                                                                                                            BSP_SPI_GetHandle (Thumb, 18 bytes, Stack size 0 bytes, spi_1.o(.text.BSP_SPI_GetHandle)) +

                                                                                                                                                                                            [Called By]

                                                                                                                                                                                            • >>   BSP_SPI_Transmit +
                                                                                                                                                                                            • >>   BSP_SPI_Receive
                                                                                                                                                                                            -

                                                                                                                                                                                            BSP_SPI_Receive (Thumb, 52 bytes, Stack size 16 bytes, spi_1.o(.text.BSP_SPI_Receive)) +

                                                                                                                                                                                            BSP_SPI_Receive (Thumb, 52 bytes, Stack size 16 bytes, spi_1.o(.text.BSP_SPI_Receive))

                                                                                                                                                                                            [Stack]

                                                                                                                                                                                            • Max Depth = 144
                                                                                                                                                                                            • Call Chain = BSP_SPI_Receive ⇒ HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                            -
                                                                                                                                                                                            [Calls]
                                                                                                                                                                                            • >>   HAL_SPI_Receive_DMA -
                                                                                                                                                                                            • >>   HAL_SPI_Receive -
                                                                                                                                                                                            • >>   BSP_SPI_GetHandle +
                                                                                                                                                                                              [Calls]
                                                                                                                                                                                              • >>   HAL_SPI_Receive_DMA +
                                                                                                                                                                                              • >>   HAL_SPI_Receive +
                                                                                                                                                                                              • >>   BSP_SPI_GetHandle
                                                                                                                                                                                              -
                                                                                                                                                                                              [Called By]
                                                                                                                                                                                              • >>   BMI_ReadSingle -
                                                                                                                                                                                              • >>   BMI_Read +
                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                • >>   BMI_ReadSingle +
                                                                                                                                                                                                • >>   BMI_Read
                                                                                                                                                                                                -

                                                                                                                                                                                                BSP_SPI_RegisterCallback (Thumb, 30 bytes, Stack size 0 bytes, spi_1.o(.text.BSP_SPI_RegisterCallback)) -

                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                • >>   BMI088_Init +

                                                                                                                                                                                                  BSP_SPI_RegisterCallback (Thumb, 30 bytes, Stack size 0 bytes, spi_1.o(.text.BSP_SPI_RegisterCallback)) +

                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                  • >>   BMI088_Init
                                                                                                                                                                                                  -

                                                                                                                                                                                                  BSP_SPI_Transmit (Thumb, 52 bytes, Stack size 16 bytes, spi_1.o(.text.BSP_SPI_Transmit)) +

                                                                                                                                                                                                  BSP_SPI_Transmit (Thumb, 52 bytes, Stack size 16 bytes, spi_1.o(.text.BSP_SPI_Transmit))

                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                  • Max Depth = 112
                                                                                                                                                                                                  • Call Chain = BSP_SPI_Transmit ⇒ HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                  -
                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                  • >>   HAL_SPI_Transmit_DMA -
                                                                                                                                                                                                  • >>   HAL_SPI_Transmit -
                                                                                                                                                                                                  • >>   BSP_SPI_GetHandle +
                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                    • >>   HAL_SPI_Transmit_DMA +
                                                                                                                                                                                                    • >>   HAL_SPI_Transmit +
                                                                                                                                                                                                    • >>   BSP_SPI_GetHandle
                                                                                                                                                                                                    -
                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                    • >>   BMI_WriteSingle -
                                                                                                                                                                                                    • >>   BMI_ReadSingle -
                                                                                                                                                                                                    • >>   BMI_Read +
                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                      • >>   BMI_WriteSingle +
                                                                                                                                                                                                      • >>   BMI_ReadSingle +
                                                                                                                                                                                                      • >>   BMI_Read
                                                                                                                                                                                                      -

                                                                                                                                                                                                      BSP_TIME_Delay (Thumb, 88 bytes, Stack size 16 bytes, time.o(.text.BSP_TIME_Delay_ms)) +

                                                                                                                                                                                                      BSP_TIME_Delay (Thumb, 88 bytes, Stack size 16 bytes, time.o(.text.BSP_TIME_Delay_ms))

                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                      • Max Depth = 112
                                                                                                                                                                                                      • Call Chain = BSP_TIME_Delay ⇒ osDelay ⇒ vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                      -
                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                      • >>   HAL_Delay -
                                                                                                                                                                                                      • >>   osKernelGetTickFreq -
                                                                                                                                                                                                      • >>   osKernelGetState -
                                                                                                                                                                                                      • >>   osDelay +
                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                        • >>   HAL_Delay +
                                                                                                                                                                                                        • >>   osKernelGetTickFreq +
                                                                                                                                                                                                        • >>   osKernelGetState +
                                                                                                                                                                                                        • >>   osDelay
                                                                                                                                                                                                        -
                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                        • >>   BMI_WriteSingle -
                                                                                                                                                                                                        • >>   BMI_ReadSingle -
                                                                                                                                                                                                        • >>   BMI088_Init +
                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                          • >>   BMI_WriteSingle +
                                                                                                                                                                                                          • >>   BMI_ReadSingle +
                                                                                                                                                                                                          • >>   BMI088_Init
                                                                                                                                                                                                          -

                                                                                                                                                                                                          BSP_TIME_Delay_ms (Thumb, 88 bytes, Stack size 16 bytes, time.o(.text.BSP_TIME_Delay_ms), UNUSED) +

                                                                                                                                                                                                          BSP_TIME_Delay_ms (Thumb, 88 bytes, Stack size 16 bytes, time.o(.text.BSP_TIME_Delay_ms), UNUSED) -

                                                                                                                                                                                                          BSP_TIME_Get (Thumb, 80 bytes, Stack size 24 bytes, time.o(.text.BSP_TIME_Get_us)) +

                                                                                                                                                                                                          BSP_TIME_Get (Thumb, 80 bytes, Stack size 24 bytes, time.o(.text.BSP_TIME_Get_us))

                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                          • Call Chain = BSP_TIME_Get
                                                                                                                                                                                                          -
                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                          • >>   osKernelGetTickFreq -
                                                                                                                                                                                                          • >>   xTaskGetTickCount +
                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                            • >>   osKernelGetTickFreq +
                                                                                                                                                                                                            • >>   xTaskGetTickCount
                                                                                                                                                                                                            -
                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                            • >>   MOTOR_DM_Update -
                                                                                                                                                                                                            • >>   MOTOR_RM_Update +
                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                              • >>   MOTOR_DM_Update +
                                                                                                                                                                                                              • >>   MOTOR_RM_Update
                                                                                                                                                                                                              -

                                                                                                                                                                                                              BSP_TIME_Get_us (Thumb, 80 bytes, Stack size 24 bytes, time.o(.text.BSP_TIME_Get_us)) +

                                                                                                                                                                                                              BSP_TIME_Get_us (Thumb, 80 bytes, Stack size 24 bytes, time.o(.text.BSP_TIME_Get_us))

                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                              • Max Depth = 24
                                                                                                                                                                                                              • Call Chain = BSP_TIME_Get_us
                                                                                                                                                                                                              -
                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                              • >>   CMD_GenerateCommands -
                                                                                                                                                                                                              • >>   Shoot_Control -
                                                                                                                                                                                                              • >>   Gimbal_Control +
                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                • >>   CMD_GenerateCommands +
                                                                                                                                                                                                                • >>   Gimbal_Control
                                                                                                                                                                                                                -

                                                                                                                                                                                                                BSP_UART_GetHandle (Thumb, 16 bytes, Stack size 0 bytes, uart.o(.text.BSP_UART_GetHandle)) -

                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                • >>   BSP_UART_Transmit -
                                                                                                                                                                                                                • >>   REMOTE_StartDmaRecv +

                                                                                                                                                                                                                  BSP_UART_GetHandle (Thumb, 16 bytes, Stack size 0 bytes, uart.o(.text.BSP_UART_GetHandle)) +

                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                  • >>   BSP_UART_Transmit +
                                                                                                                                                                                                                  • >>   REMOTE_StartDmaRecv
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  BSP_UART_IRQHandler (Thumb, 58 bytes, Stack size 16 bytes, uart.o(.text.BSP_UART_IRQHandler)) +

                                                                                                                                                                                                                  BSP_UART_IRQHandler (Thumb, 58 bytes, Stack size 16 bytes, uart.o(.text.BSP_UART_IRQHandler))

                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                  • Call Chain = BSP_UART_IRQHandler
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                  • >>   UART_Get +
                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                    • >>   UART_Get

                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                    • >>   USART6_IRQHandler
                                                                                                                                                                                                                    • >>   USART3_IRQHandler
                                                                                                                                                                                                                    • >>   USART1_IRQHandler
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    BSP_UART_RegisterCallback (Thumb, 50 bytes, Stack size 0 bytes, uart.o(.text.BSP_UART_RegisterCallback)) -

                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                    • >>   DR16_Init -
                                                                                                                                                                                                                    • >>   REMOTE_Init +

                                                                                                                                                                                                                      BSP_UART_RegisterCallback (Thumb, 50 bytes, Stack size 0 bytes, uart.o(.text.BSP_UART_RegisterCallback)) +

                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                      • >>   DR16_Init +
                                                                                                                                                                                                                      • >>   REMOTE_Init
                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      BSP_UART_Transmit (Thumb, 64 bytes, Stack size 16 bytes, uart.o(.text.BSP_UART_Transmit)) +

                                                                                                                                                                                                                      BSP_UART_Transmit (Thumb, 64 bytes, Stack size 16 bytes, uart.o(.text.BSP_UART_Transmit))

                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                      • Max Depth = 56
                                                                                                                                                                                                                      • Call Chain = BSP_UART_Transmit ⇒ HAL_UART_Transmit_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                      • >>   HAL_UART_Transmit_IT -
                                                                                                                                                                                                                      • >>   HAL_UART_Transmit_DMA -
                                                                                                                                                                                                                      • >>   BSP_UART_GetHandle +
                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                        • >>   HAL_UART_Transmit_IT +
                                                                                                                                                                                                                        • >>   HAL_UART_Transmit_DMA +
                                                                                                                                                                                                                        • >>   BSP_UART_GetHandle
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                        • >>   VOFA_RawData_Send -
                                                                                                                                                                                                                        • >>   VOFA_JustFloat_Send -
                                                                                                                                                                                                                        • >>   VOFA_FireWater_Send +
                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                          • >>   VOFA_RawData_Send +
                                                                                                                                                                                                                          • >>   VOFA_JustFloat_Send +
                                                                                                                                                                                                                          • >>   VOFA_FireWater_Send

                                                                                                                                                                                                                          BusFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_it.o(.text.BusFault_Handler)) @@ -1225,69 +1248,69 @@ Global Symbols

                                                                                                                                                                                                                          CAN1_RX0_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.CAN1_RX0_IRQHandler))

                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                          • Max Depth = 56
                                                                                                                                                                                                                          • Call Chain = CAN1_RX0_IRQHandler ⇒ HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                          • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                            • >>   HAL_CAN_IRQHandler

                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                            • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                            CAN1_RX1_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler))

                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                            • Max Depth = 56
                                                                                                                                                                                                                            • Call Chain = CAN1_RX1_IRQHandler ⇒ HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                            • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                              • >>   HAL_CAN_IRQHandler

                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                              • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                              CAN1_TX_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.CAN1_TX_IRQHandler))

                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                              • Max Depth = 56
                                                                                                                                                                                                                              • Call Chain = CAN1_TX_IRQHandler ⇒ HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                              • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler

                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                CAN2_RX0_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.CAN2_RX0_IRQHandler))

                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                • Max Depth = 56
                                                                                                                                                                                                                                • Call Chain = CAN2_RX0_IRQHandler ⇒ HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler

                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                  • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                  CAN2_RX1_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.CAN2_RX1_IRQHandler))

                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                  • Max Depth = 56
                                                                                                                                                                                                                                  • Call Chain = CAN2_RX1_IRQHandler ⇒ HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                    • >>   HAL_CAN_IRQHandler

                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                    • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                    CAN2_TX_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.CAN2_TX_IRQHandler))

                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                    • Call Chain = CAN2_TX_IRQHandler ⇒ HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                    • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                      • >>   HAL_CAN_IRQHandler

                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                      • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      CMD_Adapter_GetInput (Thumb, 52 bytes, Stack size 8 bytes, cmd_adapter.o(.text.CMD_Adapter_GetInput)) +

                                                                                                                                                                                                                                      CMD_Adapter_GetInput (Thumb, 52 bytes, Stack size 8 bytes, cmd_adapter.o(.text.CMD_Adapter_GetInput))

                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                      • Call Chain = CMD_Adapter_GetInput
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                      • >>   CMD_UpdateInput +
                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                        • >>   CMD_UpdateInput
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        CMD_Adapter_InitAll (Thumb, 58 bytes, Stack size 16 bytes, cmd_adapter.o(.text.CMD_Adapter_InitAll)) +

                                                                                                                                                                                                                                        CMD_Adapter_InitAll (Thumb, 58 bytes, Stack size 16 bytes, cmd_adapter.o(.text.CMD_Adapter_InitAll))

                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                        • Call Chain = CMD_Adapter_InitAll
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                        • >>   CMD_Adapter_Register +
                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                          • >>   CMD_Adapter_Register
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                          • >>   CMD_Init +
                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                            • >>   CMD_Init
                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            CMD_Adapter_Register (Thumb, 32 bytes, Stack size 0 bytes, cmd_adapter.o(.text.CMD_Adapter_Register)) -

                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                            • >>   CMD_Adapter_InitAll +

                                                                                                                                                                                                                                              CMD_Adapter_Register (Thumb, 32 bytes, Stack size 0 bytes, cmd_adapter.o(.text.CMD_Adapter_Register)) +

                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                              • >>   CMD_Adapter_InitAll
                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              CMD_Arbitrate (Thumb, 96 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_Arbitrate)) +

                                                                                                                                                                                                                                              CMD_Arbitrate (Thumb, 96 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_Arbitrate))

                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                              • Max Depth = 48
                                                                                                                                                                                                                                              • Call Chain = CMD_Arbitrate ⇒ CMD_Behavior_ProcessAll ⇒ CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                              • >>   CMD_Behavior_ProcessAll +
                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                • >>   CMD_Behavior_ProcessAll
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                • >>   CMD_Update +
                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                  • >>   CMD_Update

                                                                                                                                                                                                                                                  CMD_Behavior_Handle_ACCELERATE (Thumb, 36 bytes, Stack size 0 bytes, cmd_behavior.o(.text.CMD_Behavior_Handle_ACCELERATE)) @@ -1323,97 +1346,146 @@ Global Symbols

                                                                                                                                                                                                                                                  CMD_Behavior_Handle_ROTOR (Thumb, 18 bytes, Stack size 0 bytes, cmd_behavior.o(.text.CMD_Behavior_Handle_ROTOR))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • cmd_behavior.o(.rodata.g_behavior_configs)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  CMD_Behavior_Init (Thumb, 4 bytes, Stack size 0 bytes, cmd_behavior.o(.text.CMD_Behavior_Init)) -

                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                  • >>   CMD_Init +

                                                                                                                                                                                                                                                    CMD_Behavior_Init (Thumb, 4 bytes, Stack size 0 bytes, cmd_behavior.o(.text.CMD_Behavior_Init)) +

                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                    • >>   CMD_Init
                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    CMD_Behavior_IsTriggered (Thumb, 204 bytes, Stack size 8 bytes, cmd_behavior.o(.text.CMD_Behavior_IsTriggered)) +

                                                                                                                                                                                                                                                    CMD_Behavior_IsTriggered (Thumb, 204 bytes, Stack size 8 bytes, cmd_behavior.o(.text.CMD_Behavior_IsTriggered))

                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                    • Call Chain = CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                    • >>   CMD_Behavior_ProcessAll +
                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                      • >>   CMD_Behavior_ProcessAll
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      CMD_Behavior_ProcessAll (Thumb, 82 bytes, Stack size 32 bytes, cmd_behavior.o(.text.CMD_Behavior_ProcessAll)) +

                                                                                                                                                                                                                                                      CMD_Behavior_ProcessAll (Thumb, 82 bytes, Stack size 32 bytes, cmd_behavior.o(.text.CMD_Behavior_ProcessAll))

                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                      • Max Depth = 40
                                                                                                                                                                                                                                                      • Call Chain = CMD_Behavior_ProcessAll ⇒ CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                      • >>   CMD_Behavior_IsTriggered +
                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                        • >>   CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                        • >>   CMD_Arbitrate -
                                                                                                                                                                                                                                                        • >>   CMD_PC_BuildShootCmd -
                                                                                                                                                                                                                                                        • >>   CMD_PC_BuildGimbalCmd -
                                                                                                                                                                                                                                                        • >>   CMD_PC_BuildChassisCmd +
                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                          • >>   CMD_Arbitrate +
                                                                                                                                                                                                                                                          • >>   CMD_PC_BuildShootCmd +
                                                                                                                                                                                                                                                          • >>   CMD_PC_BuildGimbalCmd +
                                                                                                                                                                                                                                                          • >>   CMD_PC_BuildChassisCmd
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          CMD_ET16s_GetInput (Thumb, 244 bytes, Stack size 24 bytes, cmd_adapter.o(.text.CMD_ET16s_GetInput)) +

                                                                                                                                                                                                                                                          CMD_ET16s_GetInput (Thumb, 244 bytes, Stack size 24 bytes, cmd_adapter.o(.text.CMD_ET16s_GetInput))

                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                          • Call Chain = CMD_ET16s_GetInput

                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                          • cmd_adapter.o(.data.g_adapter_ET16s)
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          CMD_ET16s_Init (Thumb, 8 bytes, Stack size 8 bytes, cmd_adapter.o(.text.CMD_ET16s_Init)) +

                                                                                                                                                                                                                                                          CMD_ET16s_Init (Thumb, 8 bytes, Stack size 8 bytes, cmd_adapter.o(.text.CMD_ET16s_Init))

                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                          • Call Chain = CMD_ET16s_Init ⇒ REMOTE_Init ⇒ osThreadGetId
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                          • >>   REMOTE_Init +
                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                            • >>   REMOTE_Init

                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                            • cmd_adapter.o(.data.g_adapter_ET16s)
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            CMD_ET16s_IsOnline (Thumb, 6 bytes, Stack size 0 bytes, cmd_adapter.o(.text.CMD_ET16s_IsOnline)) +

                                                                                                                                                                                                                                                            CMD_ET16s_IsOnline (Thumb, 6 bytes, Stack size 0 bytes, cmd_adapter.o(.text.CMD_ET16s_IsOnline))
                                                                                                                                                                                                                                                            [Address Reference Count : 1]

                                                                                                                                                                                                                                                            • cmd_adapter.o(.data.g_adapter_ET16s)
                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            CMD_GenerateCommands (Thumb, 152 bytes, Stack size 24 bytes, cmd_1.o(.text.CMD_GenerateCommands)) +

                                                                                                                                                                                                                                                            CMD_GenerateCommands (Thumb, 152 bytes, Stack size 24 bytes, cmd_1.o(.text.CMD_GenerateCommands))

                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                            • Max Depth = 48
                                                                                                                                                                                                                                                            • Call Chain = CMD_GenerateCommands ⇒ BSP_TIME_Get_us
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                            • >>   BSP_TIME_Get_us -
                                                                                                                                                                                                                                                            • >>   CMD_SetOfflineMode -
                                                                                                                                                                                                                                                            • >>   __aeabi_ul2f +
                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                              • >>   BSP_TIME_Get_us +
                                                                                                                                                                                                                                                              • >>   CMD_SetOfflineMode +
                                                                                                                                                                                                                                                              • >>   __aeabi_ul2f
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                              • >>   CMD_Update +
                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                • >>   CMD_Update
                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                CMD_Init (Thumb, 40 bytes, Stack size 16 bytes, cmd_1.o(.text.CMD_Init)) +

                                                                                                                                                                                                                                                                CMD_Init (Thumb, 40 bytes, Stack size 16 bytes, cmd_1.o(.text.CMD_Init))

                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                • Max Depth = 32 + Unknown Stack Size
                                                                                                                                                                                                                                                                • Call Chain = CMD_Init ⇒ CMD_Adapter_InitAll
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                • >>   __aeabi_memclr4 -
                                                                                                                                                                                                                                                                • >>   CMD_Behavior_Init -
                                                                                                                                                                                                                                                                • >>   CMD_Adapter_InitAll +
                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                  • >>   __aeabi_memclr4 +
                                                                                                                                                                                                                                                                  • >>   CMD_Behavior_Init +
                                                                                                                                                                                                                                                                  • >>   CMD_Adapter_InitAll

                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                  • >>   Task_cmd
                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  CMD_Update (Thumb, 28 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_Update)) +

                                                                                                                                                                                                                                                                  CMD_Update (Thumb, 28 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_Update))

                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                  • Max Depth = 64
                                                                                                                                                                                                                                                                  • Call Chain = CMD_Update ⇒ CMD_UpdateInput ⇒ CMD_Adapter_GetInput
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                  • >>   CMD_UpdateInput -
                                                                                                                                                                                                                                                                  • >>   CMD_GenerateCommands -
                                                                                                                                                                                                                                                                  • >>   CMD_Arbitrate +
                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                    • >>   CMD_UpdateInput +
                                                                                                                                                                                                                                                                    • >>   CMD_GenerateCommands +
                                                                                                                                                                                                                                                                    • >>   CMD_Arbitrate

                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                    • >>   Task_cmd
                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    CMD_UpdateInput (Thumb, 104 bytes, Stack size 48 bytes, cmd_1.o(.text.CMD_UpdateInput)) +

                                                                                                                                                                                                                                                                    CMD_UpdateInput (Thumb, 104 bytes, Stack size 48 bytes, cmd_1.o(.text.CMD_UpdateInput))

                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                                                    • Call Chain = CMD_UpdateInput ⇒ CMD_Adapter_GetInput
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                    • >>   CMD_Adapter_GetInput +
                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                      • >>   CMD_Adapter_GetInput
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                      • >>   CMD_Update +
                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                        • >>   CMD_Update
                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                        CircleAdd (Thumb, 58 bytes, Stack size 0 bytes, user_math.o(.text.CircleAdd)) -

                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                        • >>   Shoot_CaluTargetAngle -
                                                                                                                                                                                                                                                                        • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                          Chassis_Control (Thumb, 568 bytes, Stack size 48 bytes, chassis.o(.text.Chassis_Control)) +

                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                          • Max Depth = 304
                                                                                                                                                                                                                                                                          • Call Chain = Chassis_Control ⇒ Chassis_speed_calculate ⇒ __hardfp_atan2 ⇒ atan ⇒ __hardfp_atan ⇒ __kernel_poly ⇒ __aeabi_dmul +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                          • >>   PID_Calc +
                                                                                                                                                                                                                                                                          • >>   LowPassFilter2p_Apply +
                                                                                                                                                                                                                                                                          • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                          • >>   Chassis_SetMode +
                                                                                                                                                                                                                                                                          • >>   Chassis_CalcWz +
                                                                                                                                                                                                                                                                          • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                          • >>   __hardfp_cosf +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                          • >>   Task_chassis_ctrl
                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          CircleError (Thumb, 60 bytes, Stack size 0 bytes, user_math.o(.text.CircleError)) -

                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                          • >>   PID_Calc -
                                                                                                                                                                                                                                                                          • >>   Shoot_CaluTargetAngle -
                                                                                                                                                                                                                                                                          • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                            Chassis_Setoutput (Thumb, 106 bytes, Stack size 24 bytes, chassis.o(.text.Chassis_Setoutput)) +

                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                            • Max Depth = 168
                                                                                                                                                                                                                                                                            • Call Chain = Chassis_Setoutput ⇒ MOTOR_RM_Ctrl ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_SetOutput +
                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_Ctrl +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                            • >>   Task_chassis_ctrl
                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Clip (Thumb, 38 bytes, Stack size 0 bytes, user_math.o(.text.Clip)) -

                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                            • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                              Chassis_speed_calculate (Thumb, 1520 bytes, Stack size 88 bytes, chassis.o(.text.Chassis_speed_calculate)) +

                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                              • Max Depth = 256
                                                                                                                                                                                                                                                                              • Call Chain = Chassis_speed_calculate ⇒ __hardfp_atan2 ⇒ atan ⇒ __hardfp_atan ⇒ __kernel_poly ⇒ __aeabi_dmul +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                              • >>   __aeabi_dcmpge +
                                                                                                                                                                                                                                                                              • >>   __aeabi_dsub +
                                                                                                                                                                                                                                                                              • >>   __aeabi_dadd +
                                                                                                                                                                                                                                                                              • >>   __aeabi_d2f +
                                                                                                                                                                                                                                                                              • >>   __hardfp_sqrt +
                                                                                                                                                                                                                                                                              • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                              • >>   __aeabi_f2d +
                                                                                                                                                                                                                                                                              • >>   __aeabi_dmul +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                              • >>   Chassis_Control
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Config_GetRobotParam (Thumb, 10 bytes, Stack size 0 bytes, config.o(.text.Config_GetRobotParam)) +

                                                                                                                                                                                                                                                                              Chassis_update (Thumb, 420 bytes, Stack size 72 bytes, chassis.o(.text.Chassis_update)) +

                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                              • Max Depth = 320
                                                                                                                                                                                                                                                                              • Call Chain = Chassis_update ⇒ MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                              • >>   __aeabi_d2f +
                                                                                                                                                                                                                                                                              • >>   motor_add_anagle +
                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_Update +
                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_GetMotor +
                                                                                                                                                                                                                                                                              • >>   __hardfp_fmod +
                                                                                                                                                                                                                                                                              • >>   __aeabi_f2d +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                              • >>   Task_chassis_ctrl +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              CircleAdd (Thumb, 58 bytes, Stack size 0 bytes, user_math.o(.text.CircleAdd)) +

                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                              • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              CircleError (Thumb, 60 bytes, Stack size 0 bytes, user_math.o(.text.CircleError)) +

                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                              • >>   PID_Calc +
                                                                                                                                                                                                                                                                              • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              Clip (Thumb, 38 bytes, Stack size 0 bytes, user_math.o(.text.Clip)) +

                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                              • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                              Config_GetRobotParam (Thumb, 10 bytes, Stack size 0 bytes, config.o(.text.Config_GetRobotParam))

                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                              • >>   Task_shoot_ctrl
                                                                                                                                                                                                                                                                              • >>   Task_chassis_ctrl
                                                                                                                                                                                                                                                                              • >>   Task_gimbal_ctrl @@ -1423,43 +1495,43 @@ Global Symbols

                                                                                                                                                                                                                                                                                DMA1_Stream1_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.DMA1_Stream1_IRQHandler))

                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                • Max Depth = 32
                                                                                                                                                                                                                                                                                • Call Chain = DMA1_Stream1_IRQHandler ⇒ HAL_DMA_IRQHandler
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                • >>   HAL_DMA_IRQHandler +
                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                  • >>   HAL_DMA_IRQHandler

                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                  • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                  DMA2_Stream1_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.DMA2_Stream1_IRQHandler))

                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                  • Max Depth = 32
                                                                                                                                                                                                                                                                                  • Call Chain = DMA2_Stream1_IRQHandler ⇒ HAL_DMA_IRQHandler
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                  • >>   HAL_DMA_IRQHandler +
                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                    • >>   HAL_DMA_IRQHandler

                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                    • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                    DMA2_Stream2_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.DMA2_Stream2_IRQHandler))

                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                    • Max Depth = 32
                                                                                                                                                                                                                                                                                    • Call Chain = DMA2_Stream2_IRQHandler ⇒ HAL_DMA_IRQHandler
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                    • >>   HAL_DMA_IRQHandler +
                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                      • >>   HAL_DMA_IRQHandler

                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                      • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                      DMA2_Stream3_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.DMA2_Stream3_IRQHandler))

                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                      • Max Depth = 32
                                                                                                                                                                                                                                                                                      • Call Chain = DMA2_Stream3_IRQHandler ⇒ HAL_DMA_IRQHandler
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                      • >>   HAL_DMA_IRQHandler +
                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                        • >>   HAL_DMA_IRQHandler

                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                        • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                        DMA2_Stream6_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.DMA2_Stream6_IRQHandler))

                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                        • Max Depth = 32
                                                                                                                                                                                                                                                                                        • Call Chain = DMA2_Stream6_IRQHandler ⇒ HAL_DMA_IRQHandler
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                        • >>   HAL_DMA_IRQHandler +
                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                          • >>   HAL_DMA_IRQHandler

                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                          • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          DR16_Init (Thumb, 70 bytes, Stack size 8 bytes, dr16.o(.text.DR16_Init)) +

                                                                                                                                                                                                                                                                                          DR16_Init (Thumb, 70 bytes, Stack size 8 bytes, dr16.o(.text.DR16_Init))

                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                          • Max Depth = 16
                                                                                                                                                                                                                                                                                          • Call Chain = DR16_Init ⇒ osThreadGetId
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                          • >>   osThreadGetId -
                                                                                                                                                                                                                                                                                          • >>   BSP_UART_RegisterCallback +
                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                            • >>   osThreadGetId +
                                                                                                                                                                                                                                                                                            • >>   BSP_UART_RegisterCallback

                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                            • >>   Task_dr16
                                                                                                                                                                                                                                                                                            @@ -1467,198 +1539,198 @@ Global Symbols

                                                                                                                                                                                                                                                                                            DebugMon_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_it.o(.text.DebugMon_Handler))
                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                            • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            ET16S_ParseRC (Thumb, 146 bytes, Stack size 16 bytes, et16s.o(.text.ET16S_ParseRC)) +

                                                                                                                                                                                                                                                                                            ET16S_ParseRC (Thumb, 146 bytes, Stack size 16 bytes, et16s.o(.text.ET16S_ParseRC))

                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                            • Max Depth = 96
                                                                                                                                                                                                                                                                                            • Call Chain = ET16S_ParseRC ⇒ ET16s_ParseRaw ⇒ __aeabi_f2d
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                            • >>   Keymap -
                                                                                                                                                                                                                                                                                            • >>   ET16s_ParseRaw +
                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                              • >>   Keymap +
                                                                                                                                                                                                                                                                                              • >>   ET16s_ParseRaw

                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                              • >>   Task_ET16s
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              ET16s_HandleOffline (Thumb, 54 bytes, Stack size 0 bytes, et16s.o(.text.ET16s_HandleOffline)) +

                                                                                                                                                                                                                                                                                              ET16s_HandleOffline (Thumb, 54 bytes, Stack size 0 bytes, et16s.o(.text.ET16s_HandleOffline))

                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                              • >>   Task_ET16s
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              ET16s_ParseRaw (Thumb, 616 bytes, Stack size 64 bytes, et16s.o(.text.ET16s_ParseRaw)) +

                                                                                                                                                                                                                                                                                              ET16s_ParseRaw (Thumb, 616 bytes, Stack size 64 bytes, et16s.o(.text.ET16s_ParseRaw))

                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                              • Max Depth = 80
                                                                                                                                                                                                                                                                                              • Call Chain = ET16s_ParseRaw ⇒ __aeabi_f2d
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                              • >>   map_fp32 -
                                                                                                                                                                                                                                                                                              • >>   __aeabi_dcmple -
                                                                                                                                                                                                                                                                                              • >>   __aeabi_dcmpgt -
                                                                                                                                                                                                                                                                                              • >>   __aeabi_f2d +
                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                • >>   map_fp32 +
                                                                                                                                                                                                                                                                                                • >>   __aeabi_dcmple +
                                                                                                                                                                                                                                                                                                • >>   __aeabi_dcmpgt +
                                                                                                                                                                                                                                                                                                • >>   __aeabi_f2d
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                • >>   ET16S_ParseRC +
                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                  • >>   ET16S_ParseRC

                                                                                                                                                                                                                                                                                                  EXTI0_IRQHandler (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.EXTI0_IRQHandler))

                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                  • Max Depth = 32
                                                                                                                                                                                                                                                                                                  • Call Chain = EXTI0_IRQHandler ⇒ HAL_GPIO_EXTI_IRQHandler ⇒ HAL_GPIO_EXTI_Callback
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                  • >>   HAL_GPIO_EXTI_IRQHandler +
                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                    • >>   HAL_GPIO_EXTI_IRQHandler

                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                    • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                                    EXTI3_IRQHandler (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.EXTI3_IRQHandler))

                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                    • Max Depth = 32
                                                                                                                                                                                                                                                                                                    • Call Chain = EXTI3_IRQHandler ⇒ HAL_GPIO_EXTI_IRQHandler ⇒ HAL_GPIO_EXTI_Callback
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                    • >>   HAL_GPIO_EXTI_IRQHandler +
                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                      • >>   HAL_GPIO_EXTI_IRQHandler

                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                      • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                                      EXTI4_IRQHandler (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.EXTI4_IRQHandler))

                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                      • Max Depth = 32
                                                                                                                                                                                                                                                                                                      • Call Chain = EXTI4_IRQHandler ⇒ HAL_GPIO_EXTI_IRQHandler ⇒ HAL_GPIO_EXTI_Callback
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                      • >>   HAL_GPIO_EXTI_IRQHandler +
                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                        • >>   HAL_GPIO_EXTI_IRQHandler

                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                        • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                                        EXTI9_5_IRQHandler (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.EXTI9_5_IRQHandler))

                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                        • Max Depth = 32
                                                                                                                                                                                                                                                                                                        • Call Chain = EXTI9_5_IRQHandler ⇒ HAL_GPIO_EXTI_IRQHandler ⇒ HAL_GPIO_EXTI_Callback
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                        • >>   HAL_GPIO_EXTI_IRQHandler +
                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                          • >>   HAL_GPIO_EXTI_IRQHandler

                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                          • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          Error_Handler (Thumb, 6 bytes, Stack size 0 bytes, main.o(.text.Error_Handler)) -

                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_MspInit -
                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_MspInit -
                                                                                                                                                                                                                                                                                                          • >>   SystemClock_Config -
                                                                                                                                                                                                                                                                                                          • >>   MX_USART6_UART_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_USART3_UART_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_USART2_UART_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_USART1_UART_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_TIM8_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_TIM10_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_SPI1_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_I2C2_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_I2C1_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_CAN2_Init -
                                                                                                                                                                                                                                                                                                          • >>   MX_CAN1_Init +

                                                                                                                                                                                                                                                                                                            Error_Handler (Thumb, 6 bytes, Stack size 0 bytes, main.o(.text.Error_Handler)) +

                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_MspInit +
                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_MspInit +
                                                                                                                                                                                                                                                                                                            • >>   SystemClock_Config +
                                                                                                                                                                                                                                                                                                            • >>   MX_USART6_UART_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_USART3_UART_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_USART2_UART_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_USART1_UART_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_TIM1_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_TIM10_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_SPI1_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_I2C2_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_I2C1_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_CAN2_Init +
                                                                                                                                                                                                                                                                                                            • >>   MX_CAN1_Init
                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            Gimbal_Control (Thumb, 928 bytes, Stack size 72 bytes, gimbal.o(.text.Gimbal_Control)) +

                                                                                                                                                                                                                                                                                                            Gimbal_Control (Thumb, 928 bytes, Stack size 72 bytes, gimbal.o(.text.Gimbal_Control))

                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                            • Max Depth = 168
                                                                                                                                                                                                                                                                                                            • Call Chain = Gimbal_Control ⇒ PID_Calc ⇒ LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                            • >>   Clip -
                                                                                                                                                                                                                                                                                                            • >>   CircleAdd -
                                                                                                                                                                                                                                                                                                            • >>   PID_Calc -
                                                                                                                                                                                                                                                                                                            • >>   CircleError -
                                                                                                                                                                                                                                                                                                            • >>   LowPassFilter2p_Apply -
                                                                                                                                                                                                                                                                                                            • >>   BSP_TIME_Get_us -
                                                                                                                                                                                                                                                                                                            • >>   major_yaw_Control -
                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Control_mode -
                                                                                                                                                                                                                                                                                                            • >>   motor_imu_offset -
                                                                                                                                                                                                                                                                                                            • >>   Gimbal_SetMode -
                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ul2f +
                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                              • >>   Clip +
                                                                                                                                                                                                                                                                                                              • >>   CircleAdd +
                                                                                                                                                                                                                                                                                                              • >>   PID_Calc +
                                                                                                                                                                                                                                                                                                              • >>   CircleError +
                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Apply +
                                                                                                                                                                                                                                                                                                              • >>   BSP_TIME_Get_us +
                                                                                                                                                                                                                                                                                                              • >>   major_yaw_Control +
                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Control_mode +
                                                                                                                                                                                                                                                                                                              • >>   motor_imu_offset +
                                                                                                                                                                                                                                                                                                              • >>   Gimbal_SetMode +
                                                                                                                                                                                                                                                                                                              • >>   __aeabi_ul2f

                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                              • >>   Task_gimbal_ctrl
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Gimbal_Control_mode (Thumb, 88 bytes, Stack size 0 bytes, gimbal.o(.text.Gimbal_Control_mode)) -

                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                                                                Gimbal_Control_mode (Thumb, 88 bytes, Stack size 0 bytes, gimbal.o(.text.Gimbal_Control_mode)) +

                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                Gimbal_Init (Thumb, 342 bytes, Stack size 16 bytes, gimbal.o(.text.Gimbal_Init)) +

                                                                                                                                                                                                                                                                                                                Gimbal_Init (Thumb, 342 bytes, Stack size 16 bytes, gimbal.o(.text.Gimbal_Init))

                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                • Max Depth = 256 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                • Call Chain = Gimbal_Init ⇒ BSP_CAN_Init ⇒ osMutexNew ⇒ xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                • >>   LowPassFilter2p_Init -
                                                                                                                                                                                                                                                                                                                • >>   BSP_CAN_Init -
                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_Register -
                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_Enable -
                                                                                                                                                                                                                                                                                                                • >>   MOTOR_RM_Register +
                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                  • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                  • >>   LowPassFilter2p_Init +
                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_Init +
                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_Register +
                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_Enable +
                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_RM_Register

                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                  • >>   Task_gimbal_ctrl
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Gimbal_Output (Thumb, 284 bytes, Stack size 8 bytes, gimbal.o(.text.Gimbal_Output)) +

                                                                                                                                                                                                                                                                                                                  Gimbal_Output (Thumb, 284 bytes, Stack size 8 bytes, gimbal.o(.text.Gimbal_Output))

                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                  • Max Depth = 192
                                                                                                                                                                                                                                                                                                                  • Call Chain = Gimbal_Output ⇒ MOTOR_DM_MITCtrl ⇒ MOTOR_DM_SendMITCmd ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_MITCtrl -
                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_RM_SetOutput -
                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_RM_Ctrl +
                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_MITCtrl +
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_SetOutput +
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Ctrl

                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                    • >>   Task_gimbal_ctrl
                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    Gimbal_UpdateFeedback (Thumb, 286 bytes, Stack size 8 bytes, gimbal.o(.text.Gimbal_UpdateFeedback)) +

                                                                                                                                                                                                                                                                                                                    Gimbal_UpdateFeedback (Thumb, 286 bytes, Stack size 8 bytes, gimbal.o(.text.Gimbal_UpdateFeedback))

                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                    • Max Depth = 256
                                                                                                                                                                                                                                                                                                                    • Call Chain = Gimbal_UpdateFeedback ⇒ MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_Update -
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_GetMotor -
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Update -
                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_GetMotor +
                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_Update +
                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_GetMotor +
                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_Update +
                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_GetMotor

                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                      • >>   Task_gimbal_ctrl
                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                      Gimbal_UpdateIMU (Thumb, 78 bytes, Stack size 8 bytes, gimbal.o(.text.Gimbal_UpdateIMU)) +

                                                                                                                                                                                                                                                                                                                      Gimbal_UpdateIMU (Thumb, 78 bytes, Stack size 8 bytes, gimbal.o(.text.Gimbal_UpdateIMU))

                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                      • Call Chain = Gimbal_UpdateIMU
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_Direction +
                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                        • >>   Gimbal_Direction

                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                        • >>   Task_gimbal_ctrl
                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        HAL_CAN_ActivateNotification (Thumb, 38 bytes, Stack size 0 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_ActivateNotification)) -

                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_Init +

                                                                                                                                                                                                                                                                                                                          HAL_CAN_ActivateNotification (Thumb, 38 bytes, Stack size 0 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_ActivateNotification)) +

                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_Init
                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          HAL_CAN_AddTxMessage (Thumb, 146 bytes, Stack size 8 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_AddTxMessage)) +

                                                                                                                                                                                                                                                                                                                          HAL_CAN_AddTxMessage (Thumb, 146 bytes, Stack size 8 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_AddTxMessage))

                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_CAN_AddTxMessage
                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_Transmit +
                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_Transmit
                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_TxCompleteCallback
                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                            HAL_CAN_ConfigFilter (Thumb, 222 bytes, Stack size 16 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_ConfigFilter)) +

                                                                                                                                                                                                                                                                                                                            HAL_CAN_ConfigFilter (Thumb, 222 bytes, Stack size 16 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_ConfigFilter))

                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_CAN_ConfigFilter
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_Init +
                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                              • >>   BSP_CAN_Init
                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                              HAL_CAN_ErrorCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_ErrorCallback)) +

                                                                                                                                                                                                                                                                                                                              HAL_CAN_ErrorCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_ErrorCallback))

                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_CAN_ErrorCallback
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                              • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  HAL_CAN_GetRxFifoFillLevel (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxFifoFillLevel)) +

                                                                                                                                                                                                                                                                                                                                  HAL_CAN_GetRxFifoFillLevel (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxFifoFillLevel))

                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  HAL_CAN_GetRxMessage (Thumb, 292 bytes, Stack size 8 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxMessage)) +

                                                                                                                                                                                                                                                                                                                                  HAL_CAN_GetRxMessage (Thumb, 292 bytes, Stack size 8 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxMessage))

                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_CAN_GetRxMessage

                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  HAL_CAN_GetTxMailboxesFreeLevel (Thumb, 40 bytes, Stack size 0 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_GetTxMailboxesFreeLevel)) -

                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_Transmit +

                                                                                                                                                                                                                                                                                                                                    HAL_CAN_GetTxMailboxesFreeLevel (Thumb, 40 bytes, Stack size 0 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_GetTxMailboxesFreeLevel)) +

                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_Transmit
                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_TxCompleteCallback
                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                    HAL_CAN_IRQHandler (Thumb, 570 bytes, Stack size 40 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_IRQHandler)) +

                                                                                                                                                                                                                                                                                                                                    HAL_CAN_IRQHandler (Thumb, 570 bytes, Stack size 40 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_IRQHandler))

                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                    • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_CAN_IRQHandler ⇒ HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_WakeUpFromRxMsgCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_TxMailbox2CompleteCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_TxMailbox2AbortCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_TxMailbox1CompleteCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_TxMailbox1AbortCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_TxMailbox0CompleteCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_TxMailbox0AbortCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_SleepCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_RxFifo1MsgPendingCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_RxFifo1FullCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_RxFifo0MsgPendingCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_RxFifo0FullCallback -
                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_WakeUpFromRxMsgCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_TxMailbox2CompleteCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_TxMailbox2AbortCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_TxMailbox1CompleteCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_TxMailbox1AbortCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_TxMailbox0CompleteCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_TxMailbox0AbortCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_SleepCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_RxFifo1MsgPendingCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_RxFifo1FullCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_RxFifo0MsgPendingCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_RxFifo0FullCallback +
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_ErrorCallback

                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                      • >>   CAN2_TX_IRQHandler
                                                                                                                                                                                                                                                                                                                                      • >>   CAN2_RX1_IRQHandler @@ -1668,143 +1740,143 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                      • >>   CAN1_RX0_IRQHandler
                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      HAL_CAN_Init (Thumb, 244 bytes, Stack size 16 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_Init)) +

                                                                                                                                                                                                                                                                                                                                      HAL_CAN_Init (Thumb, 244 bytes, Stack size 16 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_Init))

                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                      • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_CAN_Init ⇒ HAL_CAN_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_MspInit +
                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                        • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_MspInit
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                        • >>   MX_CAN2_Init -
                                                                                                                                                                                                                                                                                                                                        • >>   MX_CAN1_Init +
                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                          • >>   MX_CAN2_Init +
                                                                                                                                                                                                                                                                                                                                          • >>   MX_CAN1_Init
                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                          HAL_CAN_MspInit (Thumb, 330 bytes, Stack size 40 bytes, can.o(.text.HAL_CAN_MspInit)) +

                                                                                                                                                                                                                                                                                                                                          HAL_CAN_MspInit (Thumb, 328 bytes, Stack size 40 bytes, can.o(.text.HAL_CAN_MspInit))

                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                          • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_CAN_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_SetPriority -
                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_EnableIRQ -
                                                                                                                                                                                                                                                                                                                                          • >>   HAL_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                            • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                            • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                            • >>   HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_Init +
                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_Init
                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                              HAL_CAN_RxFifo0FullCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo0FullCallback)) +

                                                                                                                                                                                                                                                                                                                                              HAL_CAN_RxFifo0FullCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo0FullCallback))

                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_CAN_RxFifo0FullCallback
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                              • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                  HAL_CAN_RxFifo0MsgPendingCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo0MsgPendingCallback)) +

                                                                                                                                                                                                                                                                                                                                                  HAL_CAN_RxFifo0MsgPendingCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo0MsgPendingCallback))

                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_CAN_RxFifo0MsgPendingCallback
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                  • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                    • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      HAL_CAN_RxFifo1FullCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo1FullCallback)) +

                                                                                                                                                                                                                                                                                                                                                      HAL_CAN_RxFifo1FullCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo1FullCallback))

                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_CAN_RxFifo1FullCallback
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                      • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                        • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                          HAL_CAN_RxFifo1MsgPendingCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo1MsgPendingCallback)) +

                                                                                                                                                                                                                                                                                                                                                          HAL_CAN_RxFifo1MsgPendingCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_RxFifo1MsgPendingCallback))

                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_CAN_RxFifo1MsgPendingCallback
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                          • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                            • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                              HAL_CAN_SleepCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_SleepCallback)) +

                                                                                                                                                                                                                                                                                                                                                              HAL_CAN_SleepCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_SleepCallback))

                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_CAN_SleepCallback
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                              • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  HAL_CAN_Start (Thumb, 90 bytes, Stack size 16 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_Start)) +

                                                                                                                                                                                                                                                                                                                                                                  HAL_CAN_Start (Thumb, 90 bytes, Stack size 16 bytes, stm32f4xx_hal_can.o(.text.HAL_CAN_Start))

                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_CAN_Start
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_Init
                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                      HAL_CAN_TxMailbox0AbortCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox0AbortCallback)) +

                                                                                                                                                                                                                                                                                                                                                                      HAL_CAN_TxMailbox0AbortCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox0AbortCallback))

                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_CAN_TxMailbox0AbortCallback
                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                      • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                        • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                          HAL_CAN_TxMailbox0CompleteCallback (Thumb, 34 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox0CompleteCallback)) +

                                                                                                                                                                                                                                                                                                                                                                          HAL_CAN_TxMailbox0CompleteCallback (Thumb, 34 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox0CompleteCallback))

                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_CAN_TxMailbox0CompleteCallback
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                          • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                            • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                              HAL_CAN_TxMailbox1AbortCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox1AbortCallback)) +

                                                                                                                                                                                                                                                                                                                                                                              HAL_CAN_TxMailbox1AbortCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox1AbortCallback))

                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_CAN_TxMailbox1AbortCallback
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                              • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                  HAL_CAN_TxMailbox1CompleteCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox1CompleteCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                  HAL_CAN_TxMailbox1CompleteCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox1CompleteCallback))

                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_CAN_TxMailbox1CompleteCallback
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                  • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                    • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                      HAL_CAN_TxMailbox2AbortCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox2AbortCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                      HAL_CAN_TxMailbox2AbortCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox2AbortCallback))

                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_CAN_TxMailbox2AbortCallback
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                      • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                        • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                          HAL_CAN_TxMailbox2CompleteCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox2CompleteCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                          HAL_CAN_TxMailbox2CompleteCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_TxMailbox2CompleteCallback))

                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_CAN_TxMailbox2CompleteCallback
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                          • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                            • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                              HAL_CAN_WakeUpFromRxMsgCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_WakeUpFromRxMsgCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                              HAL_CAN_WakeUpFromRxMsgCallback (Thumb, 36 bytes, Stack size 8 bytes, can_1.o(.text.HAL_CAN_WakeUpFromRxMsgCallback))

                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_CAN_WakeUpFromRxMsgCallback
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                              • >>   CAN_Get +
                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                • >>   CAN_Get
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                  HAL_DMA_Abort (Thumb, 128 bytes, Stack size 16 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort)) +

                                                                                                                                                                                                                                                                                                                                                                                                  HAL_DMA_Abort (Thumb, 128 bytes, Stack size 16 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort))

                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_DMA_Abort
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                      HAL_DMA_Abort_IT (Thumb, 36 bytes, Stack size 0 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort_IT)) -

                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                        HAL_DMA_Abort_IT (Thumb, 36 bytes, Stack size 0 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort_IT)) +

                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        HAL_DMA_IRQHandler (Thumb, 396 bytes, Stack size 24 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_IRQHandler)) +

                                                                                                                                                                                                                                                                                                                                                                                                        HAL_DMA_IRQHandler (Thumb, 396 bytes, Stack size 24 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_DMA_IRQHandler

                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   DMA2_Stream6_IRQHandler @@ -1814,47 +1886,47 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   DMA1_Stream1_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        HAL_DMA_Init (Thumb, 206 bytes, Stack size 24 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                        HAL_DMA_Init (Thumb, 206 bytes, Stack size 24 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Init))

                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_DMA_Init
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   DMA_CheckFifoParam -
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   DMA_CalcBaseAndBitshift -
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   DMA_CheckFifoParam +
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   DMA_CalcBaseAndBitshift +
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_MspInit
                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                            HAL_DMA_Start_IT (Thumb, 98 bytes, Stack size 16 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Start_IT)) +

                                                                                                                                                                                                                                                                                                                                                                                                            HAL_DMA_Start_IT (Thumb, 98 bytes, Stack size 16 bytes, stm32f4xx_hal_dma.o(.text.HAL_DMA_Start_IT))

                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   DMA_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_Start_Receive_DMA -
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UART_Transmit_DMA -
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_Transmit_DMA -
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TransmitReceive_DMA -
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_Receive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   UART_Start_Receive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_Transmit_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_Transmit_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_TransmitReceive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_Receive_DMA
                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                HAL_Delay (Thumb, 40 bytes, Stack size 16 bytes, stm32f4xx_hal.o(.text.HAL_Delay)) +

                                                                                                                                                                                                                                                                                                                                                                                                                HAL_Delay (Thumb, 40 bytes, Stack size 16 bytes, stm32f4xx_hal.o(.text.HAL_Delay))

                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_Delay
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_TIME_Delay +
                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_TIME_Delay
                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_GPIO_EXTI_Callback (Thumb, 44 bytes, Stack size 16 bytes, gpio_1.o(.text.HAL_GPIO_EXTI_Callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_GPIO_EXTI_Callback (Thumb, 44 bytes, Stack size 16 bytes, gpio_1.o(.text.HAL_GPIO_EXTI_Callback))

                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_GPIO_EXTI_Callback
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GPIO_EXTI_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GPIO_EXTI_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_GPIO_EXTI_IRQHandler (Thumb, 26 bytes, Stack size 8 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_GPIO_EXTI_IRQHandler (Thumb, 26 bytes, Stack size 8 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_GPIO_EXTI_IRQHandler ⇒ HAL_GPIO_EXTI_Callback
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GPIO_EXTI_Callback +
                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_GPIO_EXTI_Callback

                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   EXTI9_5_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   EXTI4_IRQHandler @@ -1862,38 +1934,39 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   EXTI0_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_GPIO_Init (Thumb, 410 bytes, Stack size 48 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_GPIO_Init (Thumb, 410 bytes, Stack size 48 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_MspPostInit -
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_SPI_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_I2C_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MX_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_MspPostInit +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_Base_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_I2C_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_CAN_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MX_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_GPIO_ReadPin (Thumb, 10 bytes, Stack size 0 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_ReadPin)) -

                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_GPIO_ReadPin +

                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_GPIO_ReadPin (Thumb, 10 bytes, Stack size 0 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_ReadPin)) +

                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_GPIO_ReadPin
                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_GPIO_WritePin (Thumb, 10 bytes, Stack size 0 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_WritePin)) -

                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MX_GPIO_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_GPIO_WritePin +

                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_GPIO_WritePin (Thumb, 10 bytes, Stack size 0 bytes, stm32f4xx_hal_gpio.o(.text.HAL_GPIO_WritePin)) +

                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_GPIO_WritePin
                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_GetTick (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_hal.o(.text.HAL_GetTick)) -

                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_Delay -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_DMA_Abort -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_Start -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_DMA_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_RCC_OscConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_RCC_ClockConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TransmitReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_Receive -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SPI_WaitFlagStateUntilTimeout +

                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_GetTick (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_hal.o(.text.HAL_GetTick)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_Delay +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_DMA_Abort +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_Start +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_DMA_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_RCC_OscConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_RCC_ClockConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_TransmitReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_DMATransmitReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_DMATransmitCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_DMAReceiveCplt @@ -1901,153 +1974,153 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_I2C_Init (Thumb, 408 bytes, Stack size 24 bytes, stm32f4xx_hal_i2c.o(.text.HAL_I2C_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_I2C_Init (Thumb, 408 bytes, Stack size 24 bytes, stm32f4xx_hal_i2c.o(.text.HAL_I2C_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_I2C_Init ⇒ HAL_I2C_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_RCC_GetPCLK1Freq -
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_I2C_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_RCC_GetPCLK1Freq +
                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_I2C_MspInit
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_I2C2_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_I2C1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MX_I2C2_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MX_I2C1_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_I2C_MspInit (Thumb, 216 bytes, Stack size 40 bytes, i2c.o(.text.HAL_I2C_MspInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_I2C_MspInit (Thumb, 216 bytes, Stack size 40 bytes, i2c.o(.text.HAL_I2C_MspInit))

                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_I2C_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_I2C_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_I2C_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_IncTick (Thumb, 26 bytes, Stack size 0 bytes, stm32f4xx_hal.o(.text.HAL_IncTick)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_IncTick (Thumb, 26 bytes, Stack size 0 bytes, stm32f4xx_hal.o(.text.HAL_IncTick))

                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SysTick_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_Init (Thumb, 54 bytes, Stack size 8 bytes, stm32f4xx_hal.o(.text.HAL_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_Init (Thumb, 54 bytes, Stack size 8 bytes, stm32f4xx_hal.o(.text.HAL_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_Init ⇒ HAL_InitTick ⇒ HAL_SYSTICK_Config ⇒ SysTick_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_NVIC_SetPriorityGrouping -
                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_InitTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_SetPriorityGrouping +
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_InitTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_MspInit
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_InitTick (Thumb, 80 bytes, Stack size 16 bytes, stm32f4xx_hal.o(.text.HAL_InitTick)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_InitTick (Thumb, 80 bytes, Stack size 16 bytes, stm32f4xx_hal.o(.text.HAL_InitTick))

                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_InitTick ⇒ HAL_SYSTICK_Config ⇒ SysTick_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SYSTICK_Config -
                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SYSTICK_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_RCC_ClockConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_RCC_ClockConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_MspInit (Thumb, 70 bytes, Stack size 16 bytes, stm32f4xx_hal_msp.o(.text.HAL_MspInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_MspInit (Thumb, 70 bytes, Stack size 16 bytes, stm32f4xx_hal_msp.o(.text.HAL_MspInit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_MspInit ⇒ HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_NVIC_DisableIRQ (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_NVIC_DisableIRQ (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ))

                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_NVIC_DisableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __NVIC_DisableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __NVIC_DisableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_GPIO_DisableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_GPIO_DisableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_NVIC_EnableIRQ (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_NVIC_EnableIRQ (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ))

                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_NVIC_EnableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __NVIC_EnableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_Base_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_CAN_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MX_GPIO_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MX_DMA_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_GPIO_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_Base_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MX_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MX_DMA_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_GPIO_EnableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_NVIC_SetPriority (Thumb, 30 bytes, Stack size 16 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_NVIC_SetPriority (Thumb, 30 bytes, Stack size 16 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority))

                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __NVIC_SetPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __NVIC_GetPriorityGrouping -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   NVIC_EncodePriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __NVIC_GetPriorityGrouping +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   NVIC_EncodePriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_InitTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UART_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_Base_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_GPIO_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_DMA_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_InitTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_Base_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_DMA_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_NVIC_SetPriorityGrouping (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_NVIC_SetPriorityGrouping (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_NVIC_SetPriorityGrouping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __NVIC_SetPriorityGrouping +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __NVIC_SetPriorityGrouping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_RCC_ClockConfig (Thumb, 352 bytes, Stack size 24 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_ClockConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_RCC_ClockConfig (Thumb, 352 bytes, Stack size 24 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_ClockConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_RCC_ClockConfig ⇒ HAL_RCC_GetSysClockFreq ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_RCC_GetSysClockFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_InitTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_RCC_GetSysClockFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_InitTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SystemClock_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SystemClock_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_RCC_GetHCLKFreq (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_RCC_GetPCLK2Freq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_RCC_GetPCLK1Freq +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_RCC_GetHCLKFreq (Thumb, 12 bytes, Stack size 0 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_RCC_GetPCLK2Freq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_RCC_GetPCLK1Freq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_RCC_GetPCLK1Freq (Thumb, 34 bytes, Stack size 8 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_RCC_GetPCLK1Freq (Thumb, 34 bytes, Stack size 8 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_RCC_GetPCLK1Freq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_RCC_GetHCLKFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_RCC_GetHCLKFreq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_I2C_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_I2C_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_RCC_GetPCLK2Freq (Thumb, 34 bytes, Stack size 8 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_RCC_GetPCLK2Freq (Thumb, 34 bytes, Stack size 8 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_RCC_GetPCLK2Freq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_RCC_GetHCLKFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_RCC_GetHCLKFreq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   UART_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   UART_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_RCC_GetSysClockFreq (Thumb, 104 bytes, Stack size 8 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_RCC_GetSysClockFreq (Thumb, 104 bytes, Stack size 8 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_RCC_GetSysClockFreq ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_uldivmod +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_RCC_ClockConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_RCC_ClockConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_RCC_OscConfig (Thumb, 840 bytes, Stack size 32 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_OscConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_RCC_OscConfig (Thumb, 840 bytes, Stack size 32 bytes, stm32f4xx_hal_rcc.o(.text.HAL_RCC_OscConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_RCC_OscConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SystemClock_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SystemClock_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_SPI_ErrorCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_ErrorCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_SPI_ErrorCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_ErrorCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_SPI_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_DMATransmitReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_DMATransmitCplt @@ -2055,368 +2128,369 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_DMAError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_SPI_Init (Thumb, 180 bytes, Stack size 16 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_SPI_Init (Thumb, 180 bytes, Stack size 16 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_SPI_Init ⇒ HAL_SPI_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_MspInit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_SPI1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_SPI1_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_SPI_MspInit (Thumb, 302 bytes, Stack size 64 bytes, spi.o(.text.HAL_SPI_MspInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_SPI_MspInit (Thumb, 302 bytes, Stack size 64 bytes, spi.o(.text.HAL_SPI_MspInit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_SPI_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_DMA_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_GPIO_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_DMA_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_SPI_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_SPI_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_SPI_Receive (Thumb, 370 bytes, Stack size 32 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_SPI_Receive (Thumb, 370 bytes, Stack size 32 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_SPI_TransmitReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SPI_EndRxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_TransmitReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_EndRxTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_SPI_Receive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_SPI_Receive_DMA (Thumb, 236 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_SPI_Receive_DMA (Thumb, 236 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_SPI_Receive_DMA ⇒ HAL_SPI_TransmitReceive_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_DMA_Start_IT -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_SPI_TransmitReceive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_DMA_Start_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_TransmitReceive_DMA
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_SPI_Receive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_SPI_RxCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_RxCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_SPI_RxCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_RxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_SPI_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SPI_DMAReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_SPI_RxHalfCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_RxHalfCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_SPI_RxHalfCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_RxHalfCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_SPI_RxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_DMAHalfReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_SPI_Transmit (Thumb, 394 bytes, Stack size 32 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_SPI_Transmit (Thumb, 394 bytes, Stack size 32 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_SPI_Transmit ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_EndRxTxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SPI_EndRxTxTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_SPI_Transmit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_SPI_TransmitReceive (Thumb, 504 bytes, Stack size 32 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_SPI_TransmitReceive (Thumb, 504 bytes, Stack size 32 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SPI_EndRxTxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_EndRxTxTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_SPI_Receive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_SPI_TransmitReceive_DMA (Thumb, 292 bytes, Stack size 16 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_SPI_TransmitReceive_DMA (Thumb, 292 bytes, Stack size 16 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_SPI_TransmitReceive_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_DMA_Start_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_DMA_Start_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_Receive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_Receive_DMA
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_SPI_Transmit_DMA (Thumb, 204 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_SPI_Transmit_DMA (Thumb, 204 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_SPI_Transmit_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_DMA_Start_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_DMA_Start_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_SPI_Transmit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_SPI_TxCpltCallback (Thumb, 32 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_SPI_TxCpltCallback (Thumb, 32 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_SPI_TxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SPI_DMATransmitCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_SPI_TxHalfCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxHalfCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_SPI_TxHalfCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxHalfCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_SPI_TxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SPI_DMAHalfTransmitCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_SPI_TxRxCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxRxCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_SPI_TxRxCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxRxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_SPI_TxRxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_DMATransmitReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_SPI_TxRxHalfCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxRxHalfCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_SPI_TxRxHalfCpltCallback (Thumb, 34 bytes, Stack size 8 bytes, spi_1.o(.text.HAL_SPI_TxRxHalfCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_SPI_TxRxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SPI_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SPI_DMAHalfTransmitReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_SYSTICK_Config (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_SYSTICK_Config)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_SYSTICK_Config (Thumb, 8 bytes, Stack size 8 bytes, stm32f4xx_hal_cortex.o(.text.HAL_SYSTICK_Config))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_SYSTICK_Config ⇒ SysTick_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SysTick_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SysTick_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_InitTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_InitTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_TIMEx_BreakCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_TIMEx_BreakCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_TIMEx_CommutCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIMEx_CommutCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIMEx_ConfigBreakDeadTime (Thumb, 76 bytes, Stack size 16 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIMEx_ConfigBreakDeadTime (Thumb, 76 bytes, Stack size 16 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_TIMEx_ConfigBreakDeadTime
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_TIM8_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_TIM1_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_TIMEx_MasterConfigSynchronization (Thumb, 184 bytes, Stack size 8 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_TIMEx_MasterConfigSynchronization (Thumb, 184 bytes, Stack size 8 bytes, stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = HAL_TIMEx_MasterConfigSynchronization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_TIM8_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MX_TIM1_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_TIM_Base_Init (Thumb, 90 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_TIM_Base_Init ⇒ HAL_TIM_Base_MspInit ⇒ HAL_NVIC_SetPriority +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_TIM_Base_Init (Thumb, 90 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_TIM_Base_Init ⇒ HAL_TIM_Base_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_Base_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   TIM_Base_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_Base_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   TIM_Base_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MX_TIM8_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MX_TIM10_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MX_TIM1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MX_TIM10_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_TIM_Base_MspInit (Thumb, 114 bytes, Stack size 16 bytes, tim.o(.text.HAL_TIM_Base_MspInit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_TIM_Base_MspInit ⇒ HAL_NVIC_SetPriority +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_TIM_Base_MspInit (Thumb, 180 bytes, Stack size 32 bytes, tim.o(.text.HAL_TIM_Base_MspInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_TIM_Base_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_NVIC_SetPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_Base_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_Base_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIM_ConfigClockSource (Thumb, 222 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIM_ConfigClockSource (Thumb, 222 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_TIM_ConfigClockSource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_ETR_SetConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_TI2_ConfigInputStage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_TI1_ConfigInputStage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_ITRx_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_ETR_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_TI2_ConfigInputStage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_TI1_ConfigInputStage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_ITRx_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_TIM8_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MX_TIM1_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_TIM_IC_CaptureCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_TIM_IC_CaptureCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_TIM_IRQHandler (Thumb, 308 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_TIM_IRQHandler (Thumb, 308 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_TriggerCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_PeriodElapsedCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_PWM_PulseFinishedCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_OC_DelayElapsedCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_IC_CaptureCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIMEx_CommutCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIMEx_BreakCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_TriggerCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_PeriodElapsedCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_PWM_PulseFinishedCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_OC_DelayElapsedCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_IC_CaptureCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIMEx_CommutCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIMEx_BreakCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   TIM1_UP_TIM10_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   TIM1_BRK_TIM9_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_TIM_MspPostInit (Thumb, 154 bytes, Stack size 32 bytes, tim.o(.text.HAL_TIM_MspPostInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_TIM_MspPostInit (Thumb, 164 bytes, Stack size 32 bytes, tim.o(.text.HAL_TIM_MspPostInit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_TIM_MspPostInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MX_TIM8_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MX_TIM10_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_TIM1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_TIM10_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_TIM_OC_DelayElapsedCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIM_OC_DelayElapsedCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIM_PWM_ConfigChannel (Thumb, 152 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIM_PWM_ConfigChannel (Thumb, 152 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_TIM_PWM_ConfigChannel ⇒ TIM_OC2_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_OC2_SetConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_OC4_SetConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_OC3_SetConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TIM_OC1_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_OC2_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_OC4_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_OC3_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TIM_OC1_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_TIM8_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MX_TIM10_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MX_TIM1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MX_TIM10_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_TIM_PWM_Init (Thumb, 90 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_TIM_PWM_Init (Thumb, 90 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_TIM_PWM_Init ⇒ TIM_Base_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   TIM_Base_SetConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_PWM_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   TIM_Base_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_PWM_MspInit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MX_TIM8_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MX_TIM10_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MX_TIM1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MX_TIM10_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_TIM_PWM_MspInit (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_PWM_Init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_TIM_PWM_MspInit (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_PWM_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_TIM_PWM_PulseFinishedCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_TIM_PWM_PulseFinishedCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_TIM_PWM_Start (Thumb, 290 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Start)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_TIM_PWM_Start (Thumb, 290 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Start))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_TIM_PWM_Start ⇒ TIM_CCxChannelCmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   TIM_CCxChannelCmd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   TIM_CCxChannelCmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_PWM_Start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_PWM_Start
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_TIM_PeriodElapsedCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_TIM_PeriodElapsedCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_TIM_TriggerCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_TriggerCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_TIM_TriggerCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.HAL_TIM_TriggerCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_UARTEx_RxEventCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.HAL_UARTEx_RxEventCallback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_IRQHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   UART_Receive_IT +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_UARTEx_RxEventCallback (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.HAL_UARTEx_RxEventCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_Receive_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_DMARxHalfCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_DMAReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_UART_ErrorCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_ErrorCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HAL_UART_ErrorCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_ErrorCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = HAL_UART_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_Get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_DMAError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_DMAAbortOnError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_UART_IRQHandler (Thumb, 602 bytes, Stack size 24 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HAL_UART_IRQHandler (Thumb, 602 bytes, Stack size 24 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = HAL_UART_IRQHandler ⇒ UART_Receive_IT ⇒ HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_DMA_Abort_IT -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_DMA_Abort -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UARTEx_RxEventCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_Transmit_IT -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_Receive_IT -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_EndTransmit_IT -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_EndRxTransfer -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_DMA_Abort_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_DMA_Abort +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UARTEx_RxEventCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_Transmit_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_Receive_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_EndTransmit_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_EndRxTransfer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   USART6_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   USART3_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   USART1_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_UART_Init (Thumb, 96 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_UART_Init (Thumb, 96 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_MspInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_SetConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UART_MspInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART6_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART3_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART2_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART1_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART6_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART3_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART2_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART1_UART_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_UART_MspInit (Thumb, 730 bytes, Stack size 56 bytes, usart.o(.text.HAL_UART_MspInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HAL_UART_MspInit (Thumb, 730 bytes, Stack size 56 bytes, usart.o(.text.HAL_UART_MspInit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = HAL_UART_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_DMA_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_NVIC_SetPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_NVIC_EnableIRQ -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_GPIO_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_DMA_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_UART_Receive_DMA (Thumb, 44 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Receive_DMA)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_UART_Receive_DMA (Thumb, 44 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Receive_DMA))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_UART_Receive_DMA ⇒ UART_Start_Receive_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   UART_Start_Receive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_Start_Receive_DMA
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   REMOTE_StartDmaRecv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   REMOTE_StartDmaRecv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_UART_RxCpltCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_RxCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_UART_RxCpltCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_RxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_Get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_Receive_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_Receive_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_DMAReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_UART_RxHalfCpltCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_RxHalfCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HAL_UART_RxHalfCpltCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_RxHalfCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = HAL_UART_RxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_DMARxHalfCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_UART_Transmit_DMA (Thumb, 140 bytes, Stack size 16 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HAL_UART_Transmit_DMA (Thumb, 140 bytes, Stack size 16 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = HAL_UART_Transmit_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_DMA_Start_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_DMA_Start_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_UART_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_UART_Transmit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HAL_UART_Transmit_IT (Thumb, 56 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_IT)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_UART_Transmit +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_UART_Transmit_IT (Thumb, 56 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_IT)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_UART_Transmit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_UART_TxCpltCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_TxCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HAL_UART_TxCpltCallback (Thumb, 38 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_TxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = HAL_UART_TxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   UART_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_Get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_EndTransmit_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_EndTransmit_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_DMATransmitCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_UART_TxHalfCpltCallback (Thumb, 36 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_TxHalfCpltCallback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HAL_UART_TxHalfCpltCallback (Thumb, 36 bytes, Stack size 8 bytes, uart.o(.text.HAL_UART_TxHalfCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = HAL_UART_TxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_Get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_DMATxHalfCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -2428,305 +2502,297 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InvSqrt (Thumb, 66 bytes, Stack size 0 bytes, user_math.o(.text.InvSqrt)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   AHRS_Update -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   AHRS_UpdateIMU +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InvSqrt (Thumb, 66 bytes, Stack size 0 bytes, user_math.o(.text.InvSqrt)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_UpdateIMU
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Keymap (Thumb, 36 bytes, Stack size 0 bytes, et16s.o(.text.Keymap)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   ET16S_ParseRC +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Keymap (Thumb, 36 bytes, Stack size 0 bytes, et16s.o(.text.Keymap)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   ET16S_ParseRC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LowPassFilter2p_Apply (Thumb, 124 bytes, Stack size 40 bytes, filter.o(.text.LowPassFilter2p_Apply)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LowPassFilter2p_Apply (Thumb, 124 bytes, Stack size 40 bytes, filter.o(.text.LowPassFilter2p_Apply))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_isinff +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_isinff
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Calc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   PID_Calc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   LowPassFilter2p_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Shoot_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LowPassFilter2p_Init (Thumb, 164 bytes, Stack size 8 bytes, filter.o(.text.LowPassFilter2p_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LowPassFilter2p_Init (Thumb, 164 bytes, Stack size 8 bytes, filter.o(.text.LowPassFilter2p_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 44
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = LowPassFilter2p_Init ⇒ __hardfp_tanf ⇒ __mathlib_rredf2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_tanf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   chassis_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Shoot_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Gimbal_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   chassis_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Shoot_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LowPassFilter2p_Reset (Thumb, 92 bytes, Stack size 24 bytes, filter.o(.text.LowPassFilter2p_Reset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LowPassFilter2p_Reset (Thumb, 92 bytes, Stack size 24 bytes, filter.o(.text.LowPassFilter2p_Reset))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = LowPassFilter2p_Reset ⇒ LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   LowPassFilter2p_Apply -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __ARM_isfinitef +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   LowPassFilter2p_Apply +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __ARM_isfinitef
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   PID_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Shoot_ResetCalu -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_SetMode +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   PID_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Gimbal_SetMode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_DM_Enable (Thumb, 70 bytes, Stack size 24 bytes, motor_dm.o(.text.MOTOR_DM_Enable)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_DM_Enable (Thumb, 70 bytes, Stack size 24 bytes, motor_dm.o(.text.MOTOR_DM_Enable))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 136
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MOTOR_DM_Enable ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_TransmitStdDataFrame -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_DM_GetMotor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_TransmitStdDataFrame +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_DM_GetMotor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Gimbal_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_DM_GetMotor (Thumb, 88 bytes, Stack size 24 bytes, motor_dm.o(.text.MOTOR_DM_GetMotor)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_DM_GetMotor (Thumb, 88 bytes, Stack size 24 bytes, motor_dm.o(.text.MOTOR_DM_GetMotor))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = MOTOR_DM_GetMotor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_DM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_DM_GetCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_DM_MITCtrl -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_DM_Enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Gimbal_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_MITCtrl +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_Enable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_DM_MITCtrl (Thumb, 46 bytes, Stack size 8 bytes, motor_dm.o(.text.MOTOR_DM_MITCtrl)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_DM_MITCtrl (Thumb, 46 bytes, Stack size 8 bytes, motor_dm.o(.text.MOTOR_DM_MITCtrl))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 184
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MOTOR_DM_MITCtrl ⇒ MOTOR_DM_SendMITCmd ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_GetMotor -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_SendMITCmd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_GetMotor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_SendMITCmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Gimbal_Output +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MOTOR_DM_Register (Thumb, 164 bytes, Stack size 16 bytes, motor_dm.o(.text.MOTOR_DM_Register)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MOTOR_DM_Register (Thumb, 164 bytes, Stack size 16 bytes, motor_dm.o(.text.MOTOR_DM_Register))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 216 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = MOTOR_DM_Register ⇒ BSP_CAN_RegisterId ⇒ BSP_CAN_CreateIdQueue ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_Malloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_Free -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_RegisterId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memclr8 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_GetCANManager -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_CreateCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_Malloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_Free +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_RegisterId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memclr8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_CreateCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Gimbal_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_DM_Update (Thumb, 160 bytes, Stack size 48 bytes, motor_dm.o(.text.MOTOR_DM_Update)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_DM_Update (Thumb, 160 bytes, Stack size 48 bytes, motor_dm.o(.text.MOTOR_DM_Update))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 232
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MOTOR_DM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_TIME_Get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_GetMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_DM_ParseFeedbackFrame -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_DM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_TIME_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_GetMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_DM_ParseFeedbackFrame +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_DM_GetCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Gimbal_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_UpdateFeedback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_RM_Ctrl (Thumb, 216 bytes, Stack size 32 bytes, motor_rm.o(.text.MOTOR_RM_Ctrl)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_RM_Ctrl (Thumb, 216 bytes, Stack size 32 bytes, motor_rm.o(.text.MOTOR_RM_Ctrl))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 144
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = MOTOR_RM_Ctrl ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_TransmitStdDataFrame -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_CAN_TransmitStdDataFrame +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_GetCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Output +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_Setoutput +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Gimbal_Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_RM_GetMotor (Thumb, 80 bytes, Stack size 24 bytes, motor_rm.o(.text.MOTOR_RM_GetMotor)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_RM_GetMotor (Thumb, 80 bytes, Stack size 24 bytes, motor_rm.o(.text.MOTOR_RM_GetMotor))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MOTOR_RM_GetMotor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_RM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_RM_GetCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Shoot_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Gimbal_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_RM_SetOutput +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Shoot_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_SetOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MOTOR_RM_Register (Thumb, 166 bytes, Stack size 16 bytes, motor_rm.o(.text.MOTOR_RM_Register)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MOTOR_RM_Register (Thumb, 166 bytes, Stack size 16 bytes, motor_rm.o(.text.MOTOR_RM_Register))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 216 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = MOTOR_RM_Register ⇒ BSP_CAN_RegisterId ⇒ BSP_CAN_CreateIdQueue ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_Malloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_Free -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_RegisterId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memclr8 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_GetCANManager -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_CreateCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_Malloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_Free +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_RegisterId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memclr8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_CreateCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   chassis_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Shoot_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   chassis_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Shoot_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Gimbal_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_RM_Relax (Thumb, 16 bytes, Stack size 8 bytes, motor_rm.o(.text.MOTOR_RM_Relax)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MOTOR_RM_Relax ⇒ MOTOR_RM_SetOutput ⇒ MOTOR_RM_GetMotor -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_SetOutput -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_RM_SetOutput (Thumb, 158 bytes, Stack size 32 bytes, motor_rm.o(.text.MOTOR_RM_SetOutput)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_RM_SetOutput (Thumb, 158 bytes, Stack size 32 bytes, motor_rm.o(.text.MOTOR_RM_SetOutput))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MOTOR_RM_SetOutput ⇒ MOTOR_RM_GetMotor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_GetMotor -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_GetLogicalIndex -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_GetLSB -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_RM_GetMotor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_RM_GetLogicalIndex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_RM_GetLSB +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_RM_GetCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Gimbal_Output -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_RM_Relax +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_Setoutput +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_RM_Update (Thumb, 198 bytes, Stack size 64 bytes, motor_rm.o(.text.MOTOR_RM_Update)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_RM_Update (Thumb, 198 bytes, Stack size 64 bytes, motor_rm.o(.text.MOTOR_RM_Update))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 248
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_TIME_Get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_GetMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Motor_RM_Decode -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_GetCANManager +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_TIME_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_CAN_GetMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Motor_RM_Decode +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_GetCANManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Shoot_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Gimbal_UpdateFeedback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_CAN1_Init (Thumb, 64 bytes, Stack size 8 bytes, can.o(.text.MX_CAN1_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_CAN1_Init (Thumb, 68 bytes, Stack size 8 bytes, can.o(.text.MX_CAN1_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MX_CAN1_Init ⇒ HAL_CAN_Init ⇒ HAL_CAN_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_CAN_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MX_CAN2_Init (Thumb, 64 bytes, Stack size 8 bytes, can.o(.text.MX_CAN2_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MX_CAN2_Init (Thumb, 68 bytes, Stack size 8 bytes, can.o(.text.MX_CAN2_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = MX_CAN2_Init ⇒ HAL_CAN_Init ⇒ HAL_CAN_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_DMA_Init (Thumb, 138 bytes, Stack size 16 bytes, dma.o(.text.MX_DMA_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_DMA_Init (Thumb, 138 bytes, Stack size 16 bytes, dma.o(.text.MX_DMA_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MX_DMA_Init ⇒ HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_NVIC_SetPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_EnableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MX_FREERTOS_Init (Thumb, 58 bytes, Stack size 8 bytes, freertos.o(.text.MX_FREERTOS_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MX_FREERTOS_Init (Thumb, 58 bytes, Stack size 8 bytes, freertos.o(.text.MX_FREERTOS_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 192
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = MX_FREERTOS_Init ⇒ osThreadNew ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osThreadNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osThreadNew
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_GPIO_Init (Thumb, 484 bytes, Stack size 64 bytes, gpio.o(.text.MX_GPIO_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_GPIO_Init (Thumb, 514 bytes, Stack size 64 bytes, gpio.o(.text.MX_GPIO_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MX_GPIO_Init ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_NVIC_SetPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_NVIC_EnableIRQ -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_GPIO_WritePin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_EnableIRQ +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GPIO_WritePin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MX_I2C1_Init (Thumb, 62 bytes, Stack size 8 bytes, i2c.o(.text.MX_I2C1_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MX_I2C1_Init (Thumb, 62 bytes, Stack size 8 bytes, i2c.o(.text.MX_I2C1_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = MX_I2C1_Init ⇒ HAL_I2C_Init ⇒ HAL_I2C_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_I2C_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_I2C_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_I2C2_Init (Thumb, 62 bytes, Stack size 8 bytes, i2c.o(.text.MX_I2C2_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_I2C2_Init (Thumb, 62 bytes, Stack size 8 bytes, i2c.o(.text.MX_I2C2_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MX_I2C2_Init ⇒ HAL_I2C_Init ⇒ HAL_I2C_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_I2C_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_I2C_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MX_SPI1_Init (Thumb, 78 bytes, Stack size 16 bytes, spi.o(.text.MX_SPI1_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MX_SPI1_Init (Thumb, 78 bytes, Stack size 16 bytes, spi.o(.text.MX_SPI1_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 144
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = MX_SPI1_Init ⇒ HAL_SPI_Init ⇒ HAL_SPI_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_TIM10_Init (Thumb, 136 bytes, Stack size 40 bytes, tim.o(.text.MX_TIM10_Init)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MX_TIM10_Init ⇒ HAL_TIM_MspPostInit ⇒ HAL_GPIO_Init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MX_TIM10_Init (Thumb, 136 bytes, Stack size 40 bytes, tim.o(.text.MX_TIM10_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = MX_TIM10_Init ⇒ HAL_TIM_Base_Init ⇒ HAL_TIM_Base_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_PWM_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_PWM_ConfigChannel -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_MspPostInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_Base_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_PWM_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_PWM_ConfigChannel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_MspPostInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_Base_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MX_TIM8_Init (Thumb, 270 bytes, Stack size 96 bytes, tim.o(.text.MX_TIM8_Init)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 176
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = MX_TIM8_Init ⇒ HAL_TIM_MspPostInit ⇒ HAL_GPIO_Init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_TIM1_Init (Thumb, 268 bytes, Stack size 96 bytes, tim.o(.text.MX_TIM1_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 184
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MX_TIM1_Init ⇒ HAL_TIM_Base_Init ⇒ HAL_TIM_Base_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_PWM_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_PWM_ConfigChannel -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_MspPostInit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_ConfigClockSource -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIM_Base_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIMEx_MasterConfigSynchronization -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_TIMEx_ConfigBreakDeadTime -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_PWM_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_PWM_ConfigChannel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_MspPostInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_ConfigClockSource +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_Base_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIMEx_MasterConfigSynchronization +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIMEx_ConfigBreakDeadTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MX_USART1_UART_Init (Thumb, 56 bytes, Stack size 8 bytes, usart.o(.text.MX_USART1_UART_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MX_USART1_UART_Init (Thumb, 56 bytes, Stack size 8 bytes, usart.o(.text.MX_USART1_UART_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = MX_USART1_UART_Init ⇒ HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_USART2_UART_Init (Thumb, 56 bytes, Stack size 8 bytes, usart.o(.text.MX_USART2_UART_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MX_USART2_UART_Init (Thumb, 56 bytes, Stack size 8 bytes, usart.o(.text.MX_USART2_UART_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MX_USART2_UART_Init ⇒ HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MX_USART3_UART_Init (Thumb, 68 bytes, Stack size 8 bytes, usart.o(.text.MX_USART3_UART_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MX_USART3_UART_Init (Thumb, 68 bytes, Stack size 8 bytes, usart.o(.text.MX_USART3_UART_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = MX_USART3_UART_Init ⇒ HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_USART6_UART_Init (Thumb, 56 bytes, Stack size 8 bytes, usart.o(.text.MX_USART6_UART_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MX_USART6_UART_Init (Thumb, 56 bytes, Stack size 8 bytes, usart.o(.text.MX_USART6_UART_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = MX_USART6_UART_Init ⇒ HAL_UART_Init ⇒ HAL_UART_MspInit ⇒ HAL_GPIO_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Error_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MemManage_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32f4xx_it.o(.text.MemManage_Handler)) @@ -2736,20 +2802,10 @@ Global Symbols


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Motor_Step_Ctrl (Thumb, 36 bytes, Stack size 8 bytes, motor_step.o(.text.Motor_Step_Ctrl)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = Motor_Step_Ctrl ⇒ osDelay ⇒ vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_PWM_SetComp -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_GPIO_WritePin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_step_motor -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Motor_Step_Init (Thumb, 12 bytes, Stack size 8 bytes, motor_step.o(.text.Motor_Step_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Motor_Step_Init (Thumb, 12 bytes, Stack size 8 bytes, motor_step.o(.text.Motor_Step_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = Motor_Step_Init ⇒ BSP_PWM_Start ⇒ HAL_TIM_PWM_Start ⇒ TIM_CCxChannelCmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_PWM_Start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_PWM_Start

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_step_motor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -2761,77 +2817,72 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PID_Calc (Thumb, 368 bytes, Stack size 56 bytes, pid.o(.text.PID_Calc)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PID_Calc (Thumb, 368 bytes, Stack size 56 bytes, pid.o(.text.PID_Calc))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = PID_Calc ⇒ LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   CircleError -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AbsClip -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __ARM_isfinitef -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   LowPassFilter2p_Apply +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   CircleError +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   AbsClip +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_isfinitef +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   LowPassFilter2p_Apply

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_atti_esti -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PID_Init (Thumb, 144 bytes, Stack size 32 bytes, pid.o(.text.PID_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PID_Init (Thumb, 144 bytes, Stack size 32 bytes, pid.o(.text.PID_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = PID_Init ⇒ PID_Reset ⇒ LowPassFilter2p_Reset ⇒ LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PID_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_isfinitef -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   LowPassFilter2p_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_isfinitef +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Init

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_atti_esti -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   chassis_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   chassis_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PID_Reset (Thumb, 44 bytes, Stack size 8 bytes, pid.o(.text.PID_Reset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PID_Reset (Thumb, 44 bytes, Stack size 8 bytes, pid.o(.text.PID_Reset))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = PID_Reset ⇒ LowPassFilter2p_Reset ⇒ LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   LowPassFilter2p_Reset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Shoot_ResetCalu -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Gimbal_SetMode -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PID_ResetIntegral (Thumb, 14 bytes, Stack size 0 bytes, pid.o(.text.PID_ResetIntegral)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Shoot_ResetIntegral +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Chassis_SetMode +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Gimbal_SetMode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PendSV_Handler (Thumb, 100 bytes, Stack size 0 bytes, port.o(.text.PendSV_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = PendSV_Handler ⇒ vTaskSwitchContext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vTaskSwitchContext +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskSwitchContext

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    REMOTE_Init (Thumb, 68 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    REMOTE_Init (Thumb, 68 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = REMOTE_Init ⇒ osThreadGetId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osThreadGetId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_UART_RegisterCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadGetId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_UART_RegisterCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   CMD_ET16s_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   CMD_ET16s_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Task_ET16s
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        REMOTE_StartDmaRecv (Thumb, 32 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_StartDmaRecv)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        REMOTE_StartDmaRecv (Thumb, 32 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_StartDmaRecv))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = REMOTE_StartDmaRecv ⇒ HAL_UART_Receive_DMA ⇒ UART_Start_Receive_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_Receive_DMA -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_UART_GetHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_Receive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_UART_GetHandle

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_ET16s
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          REMOTE_WaitDmaCplt (Thumb, 22 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_WaitDmaCplt)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          REMOTE_WaitDmaCplt (Thumb, 22 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_WaitDmaCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = REMOTE_WaitDmaCplt ⇒ osThreadFlagsWait ⇒ xTaskNotifyWait ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osThreadFlagsWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osThreadFlagsWait

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_ET16s
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -2839,105 +2890,29 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SVC_Handler (Thumb, 36 bytes, Stack size 0 bytes, port.o(.text.SVC_Handler))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ScaleSumTo1 (Thumb, 54 bytes, Stack size 0 bytes, user_math.o(.text.ScaleSumTo1)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shoot_CaluTargetAngle (Thumb, 160 bytes, Stack size 32 bytes, shoot.o(.text.Shoot_CaluTargetAngle)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = Shoot_CaluTargetAngle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   CircleAdd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   CircleError -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shoot_CaluTargetRPM (Thumb, 44 bytes, Stack size 0 bytes, shoot.o(.text.Shoot_CaluTargetRPM)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_Control -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shoot_Control (Thumb, 108 bytes, Stack size 24 bytes, shoot.o(.text.Shoot_Control)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 272
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = Shoot_Control ⇒ Shoot_JamDetectionFSM ⇒ Shoot_RunningFSM ⇒ MOTOR_RM_Ctrl ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_TIME_Get_us -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_JamDetectionFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_CaluTargetRPM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ul2f -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_shoot_ctrl -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shoot_Init (Thumb, 326 bytes, Stack size 48 bytes, shoot.o(.text.Shoot_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shoot_Init (Thumb, 326 bytes, Stack size 48 bytes, shoot.o(.text.Shoot_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 288 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = Shoot_Init ⇒ BSP_CAN_Init ⇒ osMutexNew ⇒ xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   LowPassFilter2p_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_Register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_Register

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_shoot_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_JamDetectionFSM (Thumb, 304 bytes, Stack size 16 bytes, shoot.o(.text.Shoot_JamDetectionFSM)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 248
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = Shoot_JamDetectionFSM ⇒ Shoot_RunningFSM ⇒ MOTOR_RM_Ctrl ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_Control -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_ResetCalu (Thumb, 152 bytes, Stack size 32 bytes, shoot.o(.text.Shoot_ResetCalu)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = Shoot_ResetCalu ⇒ PID_Reset ⇒ LowPassFilter2p_Reset ⇒ LowPassFilter2p_Apply -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_ResetIntegral (Thumb, 70 bytes, Stack size 16 bytes, shoot.o(.text.Shoot_ResetIntegral)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = Shoot_ResetIntegral -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_ResetIntegral -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_ResetOutput (Thumb, 50 bytes, Stack size 0 bytes, shoot.o(.text.Shoot_ResetOutput)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_RunningFSM (Thumb, 1264 bytes, Stack size 88 bytes, shoot.o(.text.Shoot_RunningFSM)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 232
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = Shoot_RunningFSM ⇒ MOTOR_RM_Ctrl ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   ScaleSumTo1 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_ResetIntegral -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Calc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Apply -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_ResetOutput -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_ResetIntegral -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_ResetCalu -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_CaluTargetAngle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_CaluCoupledWeight -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_SetOutput -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_Relax -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_Ctrl -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_JamDetectionFSM -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_SetMode (Thumb, 14 bytes, Stack size 0 bytes, shoot.o(.text.Shoot_SetMode)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_SetMode (Thumb, 14 bytes, Stack size 0 bytes, shoot.o(.text.Shoot_SetMode))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_shoot_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_UpdateFeedback (Thumb, 500 bytes, Stack size 56 bytes, shoot.o(.text.Shoot_UpdateFeedback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_UpdateFeedback (Thumb, 500 bytes, Stack size 56 bytes, shoot.o(.text.Shoot_UpdateFeedback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 304
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = Shoot_UpdateFeedback ⇒ MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Apply -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_memcpy8 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_Update -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_GetMotor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   LowPassFilter2p_Apply +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memcpy8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_RM_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_RM_GetMotor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_shoot_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @@ -2945,157 +2920,160 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                StartDefaultTask (Thumb, 12 bytes, Stack size 8 bytes, freertos.o(.text.StartDefaultTask))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 136
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = StartDefaultTask ⇒ osThreadTerminate ⇒ vTaskDelete ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osThreadTerminate -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osThreadGetId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osThreadTerminate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osThreadGetId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • freertos.o(.text.MX_FREERTOS_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SysTick_Handler (Thumb, 20 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.SysTick_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = SysTick_Handler ⇒ xPortSysTickHandler ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xPortSysTickHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_IncTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xPortSysTickHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_IncTick

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SystemClock_Config (Thumb, 164 bytes, Stack size 88 bytes, main.o(.text.SystemClock_Config)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SystemClock_Config (Thumb, 164 bytes, Stack size 88 bytes, main.o(.text.SystemClock_Config))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = SystemClock_Config ⇒ HAL_RCC_ClockConfig ⇒ HAL_RCC_GetSysClockFreq ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_RCC_OscConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_RCC_ClockConfig -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Error_Handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memclr4 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_RCC_OscConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_RCC_ClockConfig +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Error_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memclr4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SystemInit (Thumb, 18 bytes, Stack size 0 bytes, system_stm32f4xx.o(.text.SystemInit))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • startup_stm32f407xx.o(.text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TIM1_UP_TIM10_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = TIM1_UP_TIM10_IRQHandler ⇒ HAL_TIM_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TIM1_BRK_TIM9_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = TIM1_BRK_TIM9_IRQHandler ⇒ HAL_TIM_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_IRQHandler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TIM_Base_SetConfig (Thumb, 300 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_Base_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TIM_Base_SetConfig (Thumb, 300 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_Base_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = TIM_Base_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_PWM_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_Base_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_PWM_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_Base_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TIM_CCxChannelCmd (Thumb, 36 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.TIM_CCxChannelCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TIM_CCxChannelCmd (Thumb, 36 bytes, Stack size 8 bytes, stm32f4xx_hal_tim.o(.text.TIM_CCxChannelCmd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = TIM_CCxChannelCmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_PWM_Start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_PWM_Start
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TIM_ETR_SetConfig (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_ETR_SetConfig)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_ConfigClockSource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TIM_ETR_SetConfig (Thumb, 22 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_ETR_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_ConfigClockSource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TIM_OC2_SetConfig (Thumb, 106 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC2_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TIM_OC2_SetConfig (Thumb, 106 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC2_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = TIM_OC2_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_PWM_ConfigChannel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_PWM_ConfigChannel

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Task_ET16s (Thumb, 128 bytes, Stack size 0 bytes, et16s_1.o(.text.Task_ET16s))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = Task_ET16s ⇒ osMessageQueuePut ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueueReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   REMOTE_WaitDmaCplt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   REMOTE_StartDmaRecv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   REMOTE_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ET16s_HandleOffline -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ET16S_ParseRC -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   REMOTE_WaitDmaCplt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   REMOTE_StartDmaRecv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   REMOTE_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ET16s_HandleOffline +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ET16S_ParseRC +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Task_Init (Thumb, 352 bytes, Stack size 8 bytes, init.o(.text.Task_Init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Task_Init (Thumb, 364 bytes, Stack size 8 bytes, init.o(.text.Task_Init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 192
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = Task_Init ⇒ osThreadNew ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadTerminate -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadGetId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelUnlock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelLock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osThreadTerminate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osThreadNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osThreadGetId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osMessageQueueNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelUnlock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelLock

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • freertos.o(.text.MX_FREERTOS_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Task_ai (Thumb, 64 bytes, Stack size 0 bytes, ai_1.o(.text.Task_ai))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = Task_ai ⇒ osDelayUntil ⇒ vTaskDelayUntil ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • init.o(.text.Task_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Task_atti_esti (Thumb, 376 bytes, Stack size 16 bytes, atti_esti.o(.text.Task_atti_esti))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 232
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = Task_atti_esti ⇒ AHRS_Update ⇒ AHRS_UpdateIMU
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   PID_Calc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_Update -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_GetEulr -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_PWM_Start -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_PWM_SetComp -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMessageQueueReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelUnlock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelLock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_WaitNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_ParseGyro -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_ParseAccl -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_GyroWaitDmaCplt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_GyroStartDmaRecv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_GetUpdateFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_AcclWaitDmaCplt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_AcclStartDmaRecv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PID_Calc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   AHRS_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   AHRS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   AHRS_GetEulr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_PWM_Start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_PWM_SetComp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMessageQueueReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelUnlock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelLock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_WaitNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_ParseGyro +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_ParseAccl +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_GyroWaitDmaCplt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_GyroStartDmaRecv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_GetUpdateFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_AcclWaitDmaCplt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_AcclStartDmaRecv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Task_chassis_ctrl (Thumb, 116 bytes, Stack size 0 bytes, chassis_ctrl.o(.text.Task_chassis_ctrl)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 272 + Unknown Stack Size -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = Task_chassis_ctrl ⇒ chassis_init ⇒ BSP_CAN_Init ⇒ osMutexNew ⇒ xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Task_chassis_ctrl (Thumb, 148 bytes, Stack size 0 bytes, chassis_ctrl.o(.text.Task_chassis_ctrl)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 320 + Unknown Stack Size +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = Task_chassis_ctrl ⇒ Chassis_update ⇒ MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMessageQueueGet -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   chassis_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Config_GetRobotParam -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMessageQueueGet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   chassis_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_Setoutput +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Config_GetRobotParam +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @@ -3103,35 +3081,35 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 160 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = Task_cmd ⇒ osMessageQueuePut ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMessageQueueReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMessageQueueGet -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   CMD_Update -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   CMD_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Config_GetRobotParam -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueueReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueueGet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   CMD_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   CMD_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Config_GetRobotParam +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • init.o(.text.Task_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Task_dr16 (Thumb, 104 bytes, Stack size 0 bytes, dr16_1.o(.text.Task_dr16))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = Task_dr16 ⇒ osMessageQueuePut ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueueReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   DR16_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueueReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   DR16_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -3139,56 +3117,53 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 256 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = Task_gimbal_ctrl ⇒ Gimbal_UpdateFeedback ⇒ MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueueGet -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_UpdateIMU -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_Output -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_Control -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Config_GetRobotParam -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueGet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_UpdateIMU +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_Output +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Config_GetRobotParam +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Task_shoot_ctrl (Thumb, 148 bytes, Stack size 0 bytes, shoot_ctrl.o(.text.Task_shoot_ctrl)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Task_shoot_ctrl (Thumb, 132 bytes, Stack size 0 bytes, shoot_ctrl.o(.text.Task_shoot_ctrl))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 304 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = Task_shoot_ctrl ⇒ Shoot_UpdateFeedback ⇒ MOTOR_RM_Update ⇒ BSP_CAN_GetMessage ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueGet -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Shoot_UpdateFeedback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Shoot_SetMode -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Shoot_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Shoot_Control -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Config_GetRobotParam -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osMessageQueueGet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Shoot_UpdateFeedback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Shoot_SetMode +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Shoot_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Config_GetRobotParam +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Task_step_motor (Thumb, 112 bytes, Stack size 0 bytes, step_motor_1.o(.text.Task_step_motor)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = Task_step_motor ⇒ osMessageQueueGet ⇒ xQueueReceive ⇒ xTaskResumeAll ⇒ xTaskIncrementTick +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Task_step_motor (Thumb, 72 bytes, Stack size 0 bytes, step_motor_1.o(.text.Task_step_motor)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = Task_step_motor ⇒ osDelayUntil ⇒ vTaskDelayUntil ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMessageQueueGet -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Motor_Step_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Motor_Step_Ctrl -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Motor_Step_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -3196,47 +3171,47 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 464 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = Task_vofa ⇒ VOFA_Send ⇒ VOFA_FireWater_Send ⇒ __2snprintf ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickFreq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_d2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   VOFA_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   VOFA_Send -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ui2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelGetTickFreq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_d2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   VOFA_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   VOFA_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_ui2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • init.o(.text.Task_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UART_Start_Receive_DMA (Thumb, 170 bytes, Stack size 24 bytes, stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UART_Start_Receive_DMA (Thumb, 170 bytes, Stack size 24 bytes, stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = UART_Start_Receive_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_DMA_Start_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_DMA_Start_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_Receive_DMA +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_Receive_DMA

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  USART1_IRQHandler (Thumb, 24 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.USART1_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = USART1_IRQHandler ⇒ HAL_UART_IRQHandler ⇒ UART_Receive_IT ⇒ HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_IRQHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_UART_IRQHandler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    USART3_IRQHandler (Thumb, 24 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.USART3_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = USART3_IRQHandler ⇒ HAL_UART_IRQHandler ⇒ UART_Receive_IT ⇒ HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_IRQHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_UART_IRQHandler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • startup_stm32f407xx.o(RESET)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      USART6_IRQHandler (Thumb, 24 bytes, Stack size 8 bytes, stm32f4xx_it.o(.text.USART6_IRQHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = USART6_IRQHandler ⇒ HAL_UART_IRQHandler ⇒ UART_Receive_IT ⇒ HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_IRQHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_UART_IRQHandler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @@ -3247,123 +3222,127 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • startup_stm32f407xx.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VOFA_FireWater_Send (Thumb, 156 bytes, Stack size 48 bytes, vofa.o(.text.VOFA_FireWater_Send)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VOFA_FireWater_Send (Thumb, 156 bytes, Stack size 48 bytes, vofa.o(.text.VOFA_FireWater_Send))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 184 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = VOFA_FireWater_Send ⇒ __2snprintf ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_UART_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   strlen -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2snprintf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_f2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_UART_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   strlen +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2snprintf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_f2d
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   VOFA_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   VOFA_Send
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VOFA_JustFloat_Send (Thumb, 58 bytes, Stack size 16 bytes, vofa.o(.text.VOFA_JustFloat_Send)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VOFA_JustFloat_Send (Thumb, 58 bytes, Stack size 16 bytes, vofa.o(.text.VOFA_JustFloat_Send))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = VOFA_JustFloat_Send ⇒ BSP_UART_Transmit ⇒ HAL_UART_Transmit_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_UART_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memcpy4 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_UART_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memcpy4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   VOFA_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   VOFA_Send
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VOFA_RawData_Send (Thumb, 24 bytes, Stack size 16 bytes, vofa.o(.text.VOFA_RawData_Send)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              VOFA_RawData_Send (Thumb, 24 bytes, Stack size 16 bytes, vofa.o(.text.VOFA_RawData_Send))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = VOFA_RawData_Send ⇒ BSP_UART_Transmit ⇒ HAL_UART_Transmit_DMA ⇒ HAL_DMA_Start_IT ⇒ DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_UART_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   strlen +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_UART_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   strlen
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   VOFA_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   VOFA_Send
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VOFA_Send (Thumb, 140 bytes, Stack size 280 bytes, vofa.o(.text.VOFA_Send)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VOFA_Send (Thumb, 140 bytes, Stack size 280 bytes, vofa.o(.text.VOFA_Send))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 464 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = VOFA_Send ⇒ VOFA_FireWater_Send ⇒ __2snprintf ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   strlen -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __2sprintf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   VOFA_RawData_Send -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   VOFA_JustFloat_Send -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   VOFA_FireWater_Send -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_f2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   strlen +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2sprintf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   VOFA_RawData_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   VOFA_JustFloat_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   VOFA_FireWater_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_f2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    VOFA_init (Thumb, 16 bytes, Stack size 0 bytes, vofa.o(.text.VOFA_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    VOFA_init (Thumb, 16 bytes, Stack size 0 bytes, vofa.o(.text.VOFA_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    chassis_init (Thumb, 564 bytes, Stack size 32 bytes, chassis.o(.text.chassis_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    chassis_init (Thumb, 446 bytes, Stack size 32 bytes, chassis.o(.text.chassis_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 272 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = chassis_init ⇒ BSP_CAN_Init ⇒ osMutexNew ⇒ xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   LowPassFilter2p_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   LowPassFilter2p_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_Register

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Task_chassis_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      configureTimerForRunTimeStats (Thumb, 2 bytes, Stack size 0 bytes, freertos.o(.text.configureTimerForRunTimeStats)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskStartScheduler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        configureTimerForRunTimeStats (Thumb, 2 bytes, Stack size 0 bytes, freertos.o(.text.configureTimerForRunTimeStats)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        eTaskGetState (Thumb, 156 bytes, Stack size 24 bytes, tasks.o(.text.eTaskGetState)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        eTaskGetState (Thumb, 156 bytes, Stack size 24 bytes, tasks.o(.text.eTaskGetState))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = eTaskGetState
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osThreadTerminate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osThreadTerminate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            getRunTimeCounterValue (Thumb, 4 bytes, Stack size 0 bytes, freertos.o(.text.getRunTimeCounterValue)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskSwitchContext +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getRunTimeCounterValue (Thumb, 4 bytes, Stack size 0 bytes, freertos.o(.text.getRunTimeCounterValue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskSwitchContext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              main (Thumb, 74 bytes, Stack size 0 bytes, main.o(.text.main)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              main (Thumb, 74 bytes, Stack size 0 bytes, main.o(.text.main))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 192 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = main ⇒ MX_FREERTOS_Init ⇒ osThreadNew ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelStart -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelInitialize -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SystemClock_Config -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART6_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART3_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART2_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_USART1_UART_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_TIM8_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_TIM10_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_SPI1_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_I2C2_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_I2C1_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_GPIO_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_FREERTOS_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_DMA_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_CAN2_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_CAN1_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelStart +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelInitialize +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SystemClock_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART6_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART3_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART2_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_USART1_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_TIM1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_TIM10_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_SPI1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_I2C2_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_I2C1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_GPIO_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_FREERTOS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_DMA_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_CAN2_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MX_CAN1_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __rt_entry_main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __rt_entry_main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  major_yaw_Control (Thumb, 32 bytes, Stack size 0 bytes, gimbal.o(.text.major_yaw_Control)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    major_yaw_Control (Thumb, 32 bytes, Stack size 0 bytes, gimbal.o(.text.major_yaw_Control)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    map_fp32 (Thumb, 26 bytes, Stack size 0 bytes, calc_lib.o(.text.map_fp32)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ET16s_ParseRaw +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      map_fp32 (Thumb, 26 bytes, Stack size 0 bytes, calc_lib.o(.text.map_fp32)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ET16s_ParseRaw
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osDelay (Thumb, 32 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osDelay)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      motor_add_anagle (Thumb, 104 bytes, Stack size 0 bytes, chassis.o(.text.motor_add_anagle)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osDelay (Thumb, 32 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osDelay))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = osDelay ⇒ vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskDelay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_TIME_Delay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_TIME_Delay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_step_motor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_ET16s @@ -3374,14 +3353,13 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_dr16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_cmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Task_ai -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Motor_Step_Ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          osDelayUntil (Thumb, 52 bytes, Stack size 16 bytes, cmsis_os2.o(.text.osDelayUntil)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          osDelayUntil (Thumb, 52 bytes, Stack size 16 bytes, cmsis_os2.o(.text.osDelayUntil))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = osDelayUntil ⇒ vTaskDelayUntil ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskDelayUntil

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_step_motor @@ -3395,19 +3373,19 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_ai
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osKernelGetState (Thumb, 38 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelGetState)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osKernelGetState (Thumb, 38 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelGetState))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = osKernelGetState
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskGetSchedulerState
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_TIME_Delay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_TIME_Delay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                osKernelGetTickCount (Thumb, 20 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelGetTickCount)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                osKernelGetTickCount (Thumb, 20 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelGetTickCount))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = osKernelGetTickCount ⇒ xTaskGetTickCountFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskGetTickCountFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetTickCountFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetTickCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_step_motor @@ -3421,9 +3399,9 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_ai
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  osKernelGetTickFreq (Thumb, 6 bytes, Stack size 0 bytes, cmsis_os2.o(.text.osKernelGetTickFreq)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_TIME_Get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_TIME_Delay +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    osKernelGetTickFreq (Thumb, 6 bytes, Stack size 0 bytes, cmsis_os2.o(.text.osKernelGetTickFreq)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_TIME_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_TIME_Delay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_step_motor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_ET16s @@ -3436,69 +3414,68 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_ai
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    osKernelInitialize (Thumb, 40 bytes, Stack size 0 bytes, cmsis_os2.o(.text.osKernelInitialize)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osKernelInitialize (Thumb, 40 bytes, Stack size 0 bytes, cmsis_os2.o(.text.osKernelInitialize)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osKernelLock (Thumb, 44 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelLock)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osKernelLock (Thumb, 44 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelLock))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = osKernelLock
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskSuspendAll

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Task_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Task_atti_esti
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        osKernelStart (Thumb, 52 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelStart)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        osKernelStart (Thumb, 52 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelStart))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 168
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = osKernelStart ⇒ vTaskStartScheduler ⇒ xTimerCreateTimerTask ⇒ prvCheckForValidListAndQueue ⇒ xQueueGenericCreateStatic ⇒ prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SVC_Setup -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SVC_Setup +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osKernelUnlock (Thumb, 68 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelUnlock)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osKernelUnlock (Thumb, 68 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osKernelUnlock))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = osKernelUnlock ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskResumeAll

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_atti_esti
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              osMessageQueueGet (Thumb, 134 bytes, Stack size 16 bytes, cmsis_os2.o(.text.osMessageQueueGet)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              osMessageQueueGet (Thumb, 134 bytes, Stack size 16 bytes, cmsis_os2.o(.text.osMessageQueueGet))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = osMessageQueueGet ⇒ xQueueReceive ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceiveFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueReceiveFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueReceive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_CAN_GetMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_step_motor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_GetMessage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_shoot_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_chassis_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_gimbal_ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Task_cmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  osMessageQueueNew (Thumb, 160 bytes, Stack size 24 bytes, cmsis_os2.o(.text.osMessageQueueNew)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  osMessageQueueNew (Thumb, 160 bytes, Stack size 24 bytes, cmsis_os2.o(.text.osMessageQueueNew))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 160
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = osMessageQueueNew ⇒ xQueueGenericCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericCreate -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vQueueAddToRegistry +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vQueueAddToRegistry

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   Task_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_CreateIdQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_CreateIdQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    osMessageQueuePut (Thumb, 142 bytes, Stack size 24 bytes, cmsis_os2.o(.text.osMessageQueuePut)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    osMessageQueuePut (Thumb, 142 bytes, Stack size 24 bytes, cmsis_os2.o(.text.osMessageQueuePut))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = osMessageQueuePut ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSendFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSendFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSend

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_RxFifo0Callback @@ -3508,10 +3485,10 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Task_cmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osMessageQueueReset (Thumb, 36 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osMessageQueueReset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osMessageQueueReset (Thumb, 36 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osMessageQueueReset))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = osMessageQueueReset ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericReset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Task_ET16s
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Task_atti_esti @@ -3519,41 +3496,41 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Task_cmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        osMutexAcquire (Thumb, 82 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osMutexAcquire)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        osMutexAcquire (Thumb, 82 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osMutexAcquire))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 160
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueTakeMutexRecursive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueTakeMutexRecursive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueSemaphoreTake
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_GetMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_CreateIdQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_GetMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_CreateIdQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osMutexNew (Thumb, 150 bytes, Stack size 16 bytes, cmsis_os2.o(.text.osMutexNew)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osMutexNew (Thumb, 150 bytes, Stack size 16 bytes, cmsis_os2.o(.text.osMutexNew))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 168
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = osMutexNew ⇒ xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueCreateMutexStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueCreateMutex -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vQueueAddToRegistry +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueCreateMutexStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueCreateMutex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vQueueAddToRegistry
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_CAN_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_CAN_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                osMutexRelease (Thumb, 62 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osMutexRelease)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                osMutexRelease (Thumb, 62 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osMutexRelease))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = osMutexRelease ⇒ xQueueGiveMutexRecursive ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueGiveMutexRecursive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGiveMutexRecursive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_GetMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_CreateIdQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_GetMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_CreateIdQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    osThreadFlagsSet (Thumb, 126 bytes, Stack size 32 bytes, cmsis_os2.o(.text.osThreadFlagsSet)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    osThreadFlagsSet (Thumb, 126 bytes, Stack size 32 bytes, cmsis_os2.o(.text.osThreadFlagsSet))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = osThreadFlagsSet ⇒ xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGenericNotifyFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGenericNotify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGenericNotifyFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGenericNotify

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BMI088_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BMI088_GyroIntCallback @@ -3562,963 +3539,1029 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   REMOTE_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osThreadFlagsWait (Thumb, 186 bytes, Stack size 48 bytes, cmsis_os2.o(.text.osThreadFlagsWait)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      osThreadFlagsWait (Thumb, 186 bytes, Stack size 48 bytes, cmsis_os2.o(.text.osThreadFlagsWait))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = osThreadFlagsWait ⇒ xTaskNotifyWait ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskNotifyWait -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskNotifyWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGetTickCount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   REMOTE_WaitDmaCplt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BMI088_WaitNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BMI088_GyroWaitDmaCplt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BMI088_AcclWaitDmaCplt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   REMOTE_WaitDmaCplt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_WaitNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_GyroWaitDmaCplt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_AcclWaitDmaCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          osThreadGetId (Thumb, 8 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osThreadGetId)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          osThreadGetId (Thumb, 8 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osThreadGetId))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = osThreadGetId
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGetCurrentTaskHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGetCurrentTaskHandle

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Task_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   StartDefaultTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   DR16_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   REMOTE_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   DR16_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   REMOTE_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osThreadNew (Thumb, 180 bytes, Stack size 32 bytes, cmsis_os2.o(.text.osThreadNew)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            osThreadNew (Thumb, 180 bytes, Stack size 32 bytes, cmsis_os2.o(.text.osThreadNew))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 184
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = osThreadNew ⇒ xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskCreate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_FREERTOS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MX_FREERTOS_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              osThreadTerminate (Thumb, 52 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osThreadTerminate)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              osThreadTerminate (Thumb, 52 bytes, Stack size 8 bytes, cmsis_os2.o(.text.osThreadTerminate))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = osThreadTerminate ⇒ vTaskDelete ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   eTaskGetState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskDelete +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   eTaskGetState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskDelete

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   StartDefaultTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pvPortMalloc (Thumb, 330 bytes, Stack size 32 bytes, heap_4.o(.text.pvPortMalloc)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pvPortMalloc (Thumb, 330 bytes, Stack size 32 bytes, heap_4.o(.text.pvPortMalloc))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskSuspendAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvInsertBlockIntoFreeList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvHeapInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvInsertBlockIntoFreeList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvHeapInit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericCreate -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_Malloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_Malloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskCreate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pvTaskIncrementMutexHeldCount (Thumb, 24 bytes, Stack size 0 bytes, tasks.o(.text.pvTaskIncrementMutexHeldCount)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueSemaphoreTake +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pvTaskIncrementMutexHeldCount (Thumb, 24 bytes, Stack size 0 bytes, tasks.o(.text.pvTaskIncrementMutexHeldCount)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueSemaphoreTake
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pxPortInitialiseStack (Thumb, 40 bytes, Stack size 0 bytes, port.o(.text.pxPortInitialiseStack)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvInitialiseNewTask +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pxPortInitialiseStack (Thumb, 40 bytes, Stack size 0 bytes, port.o(.text.pxPortInitialiseStack)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvInitialiseNewTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        uxListRemove (Thumb, 36 bytes, Stack size 0 bytes, list.o(.text.uxListRemove)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCheckTasksWaitingTermination -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGenericNotifyFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGenericNotify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskPriorityInherit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskPriorityDisinherit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskPriorityDisinheritAfterTimeout -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvSwitchTimerLists -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessReceivedCommands -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessExpiredTimer -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskIncrementTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskDelete +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          uxListRemove (Thumb, 36 bytes, Stack size 0 bytes, list.o(.text.uxListRemove)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCheckTasksWaitingTermination +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGenericNotifyFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGenericNotify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskPriorityInherit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskPriorityDisinherit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskPriorityDisinheritAfterTimeout +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvSwitchTimerLists +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessExpiredTimer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskIncrementTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vApplicationGetIdleTaskMemory (Thumb, 26 bytes, Stack size 0 bytes, cmsis_os2.o(.text.vApplicationGetIdleTaskMemory)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskStartScheduler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vApplicationGetIdleTaskMemory (Thumb, 26 bytes, Stack size 0 bytes, cmsis_os2.o(.text.vApplicationGetIdleTaskMemory)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vApplicationGetTimerTaskMemory (Thumb, 28 bytes, Stack size 0 bytes, cmsis_os2.o(.text.vApplicationGetTimerTaskMemory)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTimerCreateTimerTask +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vApplicationGetTimerTaskMemory (Thumb, 28 bytes, Stack size 0 bytes, cmsis_os2.o(.text.vApplicationGetTimerTaskMemory)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTimerCreateTimerTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vApplicationStackOverflowHook (Thumb, 2 bytes, Stack size 0 bytes, freertos.o(.text.vApplicationStackOverflowHook)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskSwitchContext +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                vApplicationStackOverflowHook (Thumb, 2 bytes, Stack size 0 bytes, freertos.o(.text.vApplicationStackOverflowHook)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskSwitchContext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                vListInitialise (Thumb, 22 bytes, Stack size 0 bytes, list.o(.text.vListInitialise)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvInitialiseTaskLists -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueGenericReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvCheckForValidListAndQueue +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vListInitialise (Thumb, 22 bytes, Stack size 0 bytes, list.o(.text.vListInitialise)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvInitialiseTaskLists +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvCheckForValidListAndQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vListInitialiseItem (Thumb, 6 bytes, Stack size 0 bytes, list.o(.text.vListInitialiseItem)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvInitialiseNewTask +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vListInitialiseItem (Thumb, 6 bytes, Stack size 0 bytes, list.o(.text.vListInitialiseItem)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvInitialiseNewTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vListInsert (Thumb, 58 bytes, Stack size 8 bytes, list.o(.text.vListInsert)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vListInsert (Thumb, 58 bytes, Stack size 8 bytes, list.o(.text.vListInsert))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskPlaceOnEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvSwitchTimerLists -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvInsertTimerInActiveList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskPlaceOnEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvSwitchTimerLists +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvInsertTimerInActiveList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vListInsertEnd (Thumb, 28 bytes, Stack size 0 bytes, list.o(.text.vListInsertEnd)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvAddNewTaskToReadyList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGenericNotifyFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGenericNotify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskPriorityInherit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskPriorityDisinherit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskPriorityDisinheritAfterTimeout -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskPlaceOnEventListRestricted -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskIncrementTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskDelete +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        vListInsertEnd (Thumb, 28 bytes, Stack size 0 bytes, list.o(.text.vListInsertEnd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvAddNewTaskToReadyList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGenericNotifyFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGenericNotify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskPriorityInherit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskPriorityDisinherit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskPriorityDisinheritAfterTimeout +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskPlaceOnEventListRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskIncrementTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskDelete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        vPortEnterCritical (Thumb, 70 bytes, Stack size 0 bytes, port.o(.text.vPortEnterCritical)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   eTaskGetState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCheckTasksWaitingTermination -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvAddNewTaskToReadyList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskNotifyWait -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGenericNotify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskCheckForTimeOut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vQueueWaitForMessageRestricted -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvUnlockQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvIsQueueFull -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvIsQueueEmpty -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCheckForValidListAndQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskDelete +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vPortEnterCritical (Thumb, 70 bytes, Stack size 0 bytes, port.o(.text.vPortEnterCritical)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   eTaskGetState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCheckTasksWaitingTermination +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvAddNewTaskToReadyList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskNotifyWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGenericNotify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskCheckForTimeOut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vQueueWaitForMessageRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvIsQueueFull +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvIsQueueEmpty +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCheckForValidListAndQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vPortExitCritical (Thumb, 46 bytes, Stack size 0 bytes, port.o(.text.vPortExitCritical)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   eTaskGetState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCheckTasksWaitingTermination -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvAddNewTaskToReadyList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskNotifyWait -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGenericNotify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskCheckForTimeOut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vQueueWaitForMessageRestricted -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvUnlockQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvIsQueueFull -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvIsQueueEmpty -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCheckForValidListAndQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelete +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vPortExitCritical (Thumb, 46 bytes, Stack size 0 bytes, port.o(.text.vPortExitCritical)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   eTaskGetState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvCheckTasksWaitingTermination +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvAddNewTaskToReadyList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskNotifyWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGenericNotify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskCheckForTimeOut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vQueueWaitForMessageRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvIsQueueFull +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvIsQueueEmpty +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvCheckForValidListAndQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskDelete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vPortFree (Thumb, 138 bytes, Stack size 16 bytes, heap_4.o(.text.vPortFree)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vPortFree (Thumb, 138 bytes, Stack size 16 bytes, heap_4.o(.text.vPortFree))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskSuspendAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvInsertBlockIntoFreeList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvInsertBlockIntoFreeList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvDeleteTCB -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_Free -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvProcessReceivedCommands -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvDeleteTCB +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_Free +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskCreate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                vPortSetupTimerInterrupt (Thumb, 52 bytes, Stack size 0 bytes, port.o(.text.vPortSetupTimerInterrupt)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xPortStartScheduler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vPortSetupTimerInterrupt (Thumb, 52 bytes, Stack size 0 bytes, port.o(.text.vPortSetupTimerInterrupt)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xPortStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vPortValidateInterruptPriority (Thumb, 98 bytes, Stack size 0 bytes, port.o(.text.vPortValidateInterruptPriority)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGenericNotifyFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueReceiveFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSendFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetTickCountFromISR +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vPortValidateInterruptPriority (Thumb, 98 bytes, Stack size 0 bytes, port.o(.text.vPortValidateInterruptPriority)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGenericNotifyFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueReceiveFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSendFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGetTickCountFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    vQueueAddToRegistry (Thumb, 40 bytes, Stack size 0 bytes, queue.o(.text.vQueueAddToRegistry)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMutexNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueueNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvCheckForValidListAndQueue +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vQueueAddToRegistry (Thumb, 40 bytes, Stack size 0 bytes, queue.o(.text.vQueueAddToRegistry)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMutexNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvCheckForValidListAndQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vQueueWaitForMessageRestricted (Thumb, 68 bytes, Stack size 16 bytes, queue.o(.text.vQueueWaitForMessageRestricted)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vQueueWaitForMessageRestricted (Thumb, 68 bytes, Stack size 16 bytes, queue.o(.text.vQueueWaitForMessageRestricted))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = vQueueWaitForMessageRestricted ⇒ vTaskPlaceOnEventListRestricted ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskPlaceOnEventListRestricted -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvUnlockQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskPlaceOnEventListRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessTimerOrBlockTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessTimerOrBlockTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vTaskDelay (Thumb, 84 bytes, Stack size 8 bytes, tasks.o(.text.vTaskDelay)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vTaskDelay (Thumb, 84 bytes, Stack size 8 bytes, tasks.o(.text.vTaskDelay))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskSuspendAll
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osDelay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vTaskDelayUntil (Thumb, 168 bytes, Stack size 16 bytes, tasks.o(.text.vTaskDelayUntil)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vTaskDelayUntil (Thumb, 168 bytes, Stack size 16 bytes, tasks.o(.text.vTaskDelayUntil))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = vTaskDelayUntil ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskSuspendAll
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osDelayUntil
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vTaskDelete (Thumb, 194 bytes, Stack size 16 bytes, tasks.o(.text.vTaskDelete)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vTaskDelete (Thumb, 194 bytes, Stack size 16 bytes, tasks.o(.text.vTaskDelete))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 120
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = vTaskDelete ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvResetNextTaskUnblockTime -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvDeleteTCB -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvResetNextTaskUnblockTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvDeleteTCB +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osThreadTerminate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadTerminate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vTaskInternalSetTimeOutState (Thumb, 26 bytes, Stack size 0 bytes, tasks.o(.text.vTaskInternalSetTimeOutState)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskCheckForTimeOut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSend +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        vTaskInternalSetTimeOutState (Thumb, 26 bytes, Stack size 0 bytes, tasks.o(.text.vTaskInternalSetTimeOutState)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskCheckForTimeOut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        vTaskMissedYield (Thumb, 14 bytes, Stack size 0 bytes, tasks.o(.text.vTaskMissedYield)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvUnlockQueue +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vTaskMissedYield (Thumb, 14 bytes, Stack size 0 bytes, tasks.o(.text.vTaskMissedYield)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvUnlockQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vTaskPlaceOnEventList (Thumb, 50 bytes, Stack size 8 bytes, tasks.o(.text.vTaskPlaceOnEventList)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vTaskPlaceOnEventList (Thumb, 50 bytes, Stack size 8 bytes, tasks.o(.text.vTaskPlaceOnEventList))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = vTaskPlaceOnEventList ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vListInsert +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vTaskPlaceOnEventListRestricted (Thumb, 62 bytes, Stack size 16 bytes, tasks.o(.text.vTaskPlaceOnEventListRestricted)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vTaskPlaceOnEventListRestricted (Thumb, 62 bytes, Stack size 16 bytes, tasks.o(.text.vTaskPlaceOnEventListRestricted))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = vTaskPlaceOnEventListRestricted ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vListInsertEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vQueueWaitForMessageRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vQueueWaitForMessageRestricted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vTaskPriorityDisinheritAfterTimeout (Thumb, 164 bytes, Stack size 16 bytes, tasks.o(.text.vTaskPriorityDisinheritAfterTimeout)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vTaskPriorityDisinheritAfterTimeout (Thumb, 164 bytes, Stack size 16 bytes, tasks.o(.text.vTaskPriorityDisinheritAfterTimeout))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = vTaskPriorityDisinheritAfterTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueSemaphoreTake
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vTaskStartScheduler (Thumb, 160 bytes, Stack size 32 bytes, tasks.o(.text.vTaskStartScheduler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vTaskStartScheduler (Thumb, 160 bytes, Stack size 32 bytes, tasks.o(.text.vTaskStartScheduler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 160
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = vTaskStartScheduler ⇒ xTimerCreateTimerTask ⇒ prvCheckForValidListAndQueue ⇒ xQueueGenericCreateStatic ⇒ prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   configureTimerForRunTimeStats -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vApplicationGetIdleTaskMemory -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTimerCreateTimerTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xPortStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   configureTimerForRunTimeStats +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vApplicationGetIdleTaskMemory +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTimerCreateTimerTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xPortStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelStart +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vTaskSuspendAll (Thumb, 16 bytes, Stack size 0 bytes, tasks.o(.text.vTaskSuspendAll)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortFree -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   pvPortMalloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelLock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessTimerOrBlockTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelay +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vTaskSuspendAll (Thumb, 16 bytes, Stack size 0 bytes, tasks.o(.text.vTaskSuspendAll)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortFree +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   pvPortMalloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelLock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvProcessTimerOrBlockTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskDelay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vTaskSwitchContext (Thumb, 226 bytes, Stack size 16 bytes, tasks.o(.text.vTaskSwitchContext)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vTaskSwitchContext (Thumb, 226 bytes, Stack size 16 bytes, tasks.o(.text.vTaskSwitchContext))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = vTaskSwitchContext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vApplicationStackOverflowHook -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   getRunTimeCounterValue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vApplicationStackOverflowHook +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   getRunTimeCounterValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PendSV_Handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xPortStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xPortStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xPortStartScheduler (Thumb, 274 bytes, Stack size 16 bytes, port.o(.text.xPortStartScheduler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xPortStartScheduler (Thumb, 274 bytes, Stack size 16 bytes, port.o(.text.xPortStartScheduler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = xPortStartScheduler ⇒ vTaskSwitchContext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortSetupTimerInterrupt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortEnableVFP +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortSetupTimerInterrupt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortEnableVFP
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvTaskExitError -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvPortStartFirstTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskSwitchContext +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvPortStartFirstTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskSwitchContext
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vTaskStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xPortSysTickHandler (Thumb, 46 bytes, Stack size 8 bytes, port.o(.text.xPortSysTickHandler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xPortSysTickHandler (Thumb, 46 bytes, Stack size 8 bytes, port.o(.text.xPortSysTickHandler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = xPortSysTickHandler ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskIncrementTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskIncrementTick

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SysTick_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xQueueCreateMutex (Thumb, 22 bytes, Stack size 8 bytes, queue.o(.text.xQueueCreateMutex)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xQueueCreateMutex (Thumb, 22 bytes, Stack size 8 bytes, queue.o(.text.xQueueCreateMutex))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 144
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xQueueCreateMutex ⇒ xQueueGenericCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericCreate -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvInitialiseMutex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvInitialiseMutex
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMutexNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osMutexNew
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xQueueCreateMutexStatic (Thumb, 34 bytes, Stack size 16 bytes, queue.o(.text.xQueueCreateMutexStatic)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xQueueCreateMutexStatic (Thumb, 34 bytes, Stack size 16 bytes, queue.o(.text.xQueueCreateMutexStatic))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xQueueCreateMutexStatic ⇒ prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvInitialiseMutex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvInitialiseMutex
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMutexNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMutexNew
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xQueueGenericCreate (Thumb, 70 bytes, Stack size 24 bytes, queue.o(.text.xQueueGenericCreate)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xQueueGenericCreate (Thumb, 70 bytes, Stack size 24 bytes, queue.o(.text.xQueueGenericCreate))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 136
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xQueueGenericCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvInitialiseNewQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   pvPortMalloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvInitialiseNewQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   pvPortMalloc
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueCreateMutex -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMessageQueueNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueCreateMutex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMessageQueueNew
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xQueueGenericCreateStatic (Thumb, 150 bytes, Stack size 24 bytes, queue.o(.text.xQueueGenericCreateStatic)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xQueueGenericCreateStatic (Thumb, 150 bytes, Stack size 24 bytes, queue.o(.text.xQueueGenericCreateStatic))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xQueueGenericCreateStatic ⇒ prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvInitialiseNewQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvInitialiseNewQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueCreateMutexStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueueNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvCheckForValidListAndQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueCreateMutexStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueueNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvCheckForValidListAndQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xQueueGenericReset (Thumb, 126 bytes, Stack size 16 bytes, queue.o(.text.xQueueGenericReset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xQueueGenericReset (Thumb, 126 bytes, Stack size 16 bytes, queue.o(.text.xQueueGenericReset))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vListInitialise +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vListInitialise
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvInitialiseNewQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvInitialiseNewQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osMessageQueueReset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xQueueGenericSend (Thumb, 418 bytes, Stack size 48 bytes, queue.o(.text.xQueueGenericSend)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xQueueGenericSend (Thumb, 418 bytes, Stack size 48 bytes, queue.o(.text.xQueueGenericSend))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskCheckForTimeOut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskPlaceOnEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskInternalSetTimeOutState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvUnlockQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvIsQueueFull -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCopyDataToQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskSuspendAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskCheckForTimeOut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskPlaceOnEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskInternalSetTimeOutState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvIsQueueFull +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCopyDataToQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGiveMutexRecursive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvInitialiseMutex -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMutexRelease -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTimerGenericCommand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGiveMutexRecursive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvInitialiseMutex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMutexRelease +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTimerGenericCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xQueueGenericSendFromISR (Thumb, 206 bytes, Stack size 32 bytes, queue.o(.text.xQueueGenericSendFromISR)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xQueueGenericSendFromISR (Thumb, 206 bytes, Stack size 32 bytes, queue.o(.text.xQueueGenericSendFromISR))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xQueueGenericSendFromISR ⇒ prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortValidateInterruptPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvCopyDataToQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortValidateInterruptPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvCopyDataToQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTimerGenericCommand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTimerGenericCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xQueueGiveMutexRecursive (Thumb, 66 bytes, Stack size 16 bytes, queue.o(.text.xQueueGiveMutexRecursive)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xQueueGiveMutexRecursive (Thumb, 66 bytes, Stack size 16 bytes, queue.o(.text.xQueueGiveMutexRecursive))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 144
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xQueueGiveMutexRecursive ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskGetCurrentTaskHandle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetCurrentTaskHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMutexRelease +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMutexRelease
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xQueueReceive (Thumb, 388 bytes, Stack size 56 bytes, queue.o(.text.xQueueReceive)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xQueueReceive (Thumb, 388 bytes, Stack size 56 bytes, queue.o(.text.xQueueReceive))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 136
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xQueueReceive ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskCheckForTimeOut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskPlaceOnEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskInternalSetTimeOutState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvUnlockQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvIsQueueEmpty -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvCopyDataFromQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskSuspendAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskCheckForTimeOut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskPlaceOnEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskInternalSetTimeOutState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvIsQueueEmpty +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvCopyDataFromQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueueGet -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osMessageQueueGet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessReceivedCommands
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xQueueReceiveFromISR (Thumb, 170 bytes, Stack size 32 bytes, queue.o(.text.xQueueReceiveFromISR)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xQueueReceiveFromISR (Thumb, 170 bytes, Stack size 32 bytes, queue.o(.text.xQueueReceiveFromISR))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xQueueReceiveFromISR ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortValidateInterruptPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCopyDataFromQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortValidateInterruptPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCopyDataFromQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osMessageQueueGet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMessageQueueGet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xQueueSemaphoreTake (Thumb, 454 bytes, Stack size 56 bytes, queue.o(.text.xQueueSemaphoreTake)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xQueueSemaphoreTake (Thumb, 454 bytes, Stack size 56 bytes, queue.o(.text.xQueueSemaphoreTake))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 136
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskPriorityInherit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskCheckForTimeOut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskPriorityDisinheritAfterTimeout -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskPlaceOnEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskInternalSetTimeOutState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   pvTaskIncrementMutexHeldCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvUnlockQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvIsQueueEmpty -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvGetDisinheritPriorityAfterTimeout -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskSuspendAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskPriorityInherit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskCheckForTimeOut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskPriorityDisinheritAfterTimeout +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskPlaceOnEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskInternalSetTimeOutState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   pvTaskIncrementMutexHeldCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvIsQueueEmpty +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvGetDisinheritPriorityAfterTimeout +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueTakeMutexRecursive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMutexAcquire +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueTakeMutexRecursive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osMutexAcquire
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xQueueTakeMutexRecursive (Thumb, 60 bytes, Stack size 16 bytes, queue.o(.text.xQueueTakeMutexRecursive)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xQueueTakeMutexRecursive (Thumb, 60 bytes, Stack size 16 bytes, queue.o(.text.xQueueTakeMutexRecursive))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskGetCurrentTaskHandle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetCurrentTaskHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueSemaphoreTake
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMutexAcquire +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMutexAcquire
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskCheckForTimeOut (Thumb, 136 bytes, Stack size 16 bytes, tasks.o(.text.xTaskCheckForTimeOut)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskCheckForTimeOut (Thumb, 136 bytes, Stack size 16 bytes, tasks.o(.text.xTaskCheckForTimeOut))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xTaskCheckForTimeOut
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskInternalSetTimeOutState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskInternalSetTimeOutState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTaskCreate (Thumb, 102 bytes, Stack size 40 bytes, tasks.o(.text.xTaskCreate)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTaskCreate (Thumb, 102 bytes, Stack size 40 bytes, tasks.o(.text.xTaskCreate))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xTaskCreate ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvInitialiseNewTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvAddNewTaskToReadyList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortFree -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   pvPortMalloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvInitialiseNewTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvAddNewTaskToReadyList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vPortFree +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   pvPortMalloc
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osThreadNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osThreadNew
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskCreateStatic (Thumb, 118 bytes, Stack size 40 bytes, tasks.o(.text.xTaskCreateStatic)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskCreateStatic (Thumb, 118 bytes, Stack size 40 bytes, tasks.o(.text.xTaskCreateStatic))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 76
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xTaskCreateStatic ⇒ prvInitialiseNewTask ⇒ __aeabi_memset4 ⇒ _memset_w
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvInitialiseNewTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvAddNewTaskToReadyList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvInitialiseNewTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvAddNewTaskToReadyList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osThreadNew -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTimerCreateTimerTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vTaskStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osThreadNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTimerCreateTimerTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xTaskGenericNotify (Thumb, 252 bytes, Stack size 24 bytes, tasks.o(.text.xTaskGenericNotify)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xTaskGenericNotify (Thumb, 252 bytes, Stack size 24 bytes, tasks.o(.text.xTaskGenericNotify))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xTaskGenericNotify
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osThreadFlagsSet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskGenericNotifyFromISR (Thumb, 298 bytes, Stack size 24 bytes, tasks.o(.text.xTaskGenericNotifyFromISR)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskGenericNotifyFromISR (Thumb, 298 bytes, Stack size 24 bytes, tasks.o(.text.xTaskGenericNotifyFromISR))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortValidateInterruptPriority -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortValidateInterruptPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osThreadFlagsSet
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTaskGetCurrentTaskHandle (Thumb, 12 bytes, Stack size 0 bytes, tasks.o(.text.xTaskGetCurrentTaskHandle)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osThreadGetId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueTakeMutexRecursive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGiveMutexRecursive +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xTaskGetCurrentTaskHandle (Thumb, 12 bytes, Stack size 0 bytes, tasks.o(.text.xTaskGetCurrentTaskHandle)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osThreadGetId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueTakeMutexRecursive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGiveMutexRecursive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xTaskGetSchedulerState (Thumb, 38 bytes, Stack size 0 bytes, tasks.o(.text.xTaskGetSchedulerState)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xTaskGetSchedulerState (Thumb, 38 bytes, Stack size 0 bytes, tasks.o(.text.xTaskGetSchedulerState))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SysTick_Handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelUnlock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelLock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTimerGenericCommand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelUnlock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelLock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTimerGenericCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xTaskGetTickCount (Thumb, 12 bytes, Stack size 0 bytes, tasks.o(.text.xTaskGetTickCount)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_TIME_Get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osThreadFlagsWait -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osKernelGetTickCount -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   osDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvSampleTimeNow +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskGetTickCount (Thumb, 12 bytes, Stack size 0 bytes, tasks.o(.text.xTaskGetTickCount)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_TIME_Get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osThreadFlagsWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvSampleTimeNow
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskGetTickCountFromISR (Thumb, 18 bytes, Stack size 8 bytes, tasks.o(.text.xTaskGetTickCountFromISR)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskGetTickCountFromISR (Thumb, 18 bytes, Stack size 8 bytes, tasks.o(.text.xTaskGetTickCountFromISR))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xTaskGetTickCountFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortValidateInterruptPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortValidateInterruptPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelGetTickCount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xTaskIncrementTick (Thumb, 338 bytes, Stack size 40 bytes, tasks.o(.text.xTaskIncrementTick)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xTaskIncrementTick (Thumb, 338 bytes, Stack size 40 bytes, tasks.o(.text.xTaskIncrementTick))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvResetNextTaskUnblockTime -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvResetNextTaskUnblockTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xPortSysTickHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xPortSysTickHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskResumeAll
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskNotifyWait (Thumb, 144 bytes, Stack size 24 bytes, tasks.o(.text.xTaskNotifyWait)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskNotifyWait (Thumb, 144 bytes, Stack size 24 bytes, tasks.o(.text.xTaskNotifyWait))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xTaskNotifyWait ⇒ prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvAddCurrentTaskToDelayedList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvAddCurrentTaskToDelayedList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadFlagsWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osThreadFlagsWait
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTaskPriorityDisinherit (Thumb, 146 bytes, Stack size 16 bytes, tasks.o(.text.xTaskPriorityDisinherit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTaskPriorityDisinherit (Thumb, 146 bytes, Stack size 16 bytes, tasks.o(.text.xTaskPriorityDisinherit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xTaskPriorityDisinherit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCopyDataToQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvCopyDataToQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskPriorityInherit (Thumb, 146 bytes, Stack size 24 bytes, tasks.o(.text.xTaskPriorityInherit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTaskPriorityInherit (Thumb, 146 bytes, Stack size 24 bytes, tasks.o(.text.xTaskPriorityInherit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xTaskPriorityInherit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueSemaphoreTake
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xTaskRemoveFromEventList (Thumb, 142 bytes, Stack size 16 bytes, tasks.o(.text.xTaskRemoveFromEventList)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xTaskRemoveFromEventList (Thumb, 142 bytes, Stack size 16 bytes, tasks.o(.text.xTaskRemoveFromEventList))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueReceiveFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSendFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericReset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvUnlockQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueReceiveFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSendFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvUnlockQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskResumeAll (Thumb, 276 bytes, Stack size 40 bytes, tasks.o(.text.xTaskResumeAll)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xTaskResumeAll (Thumb, 276 bytes, Stack size 40 bytes, tasks.o(.text.xTaskResumeAll))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvResetNextTaskUnblockTime -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskIncrementTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvResetNextTaskUnblockTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortFree -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   pvPortMalloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osKernelUnlock -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvProcessTimerOrBlockTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vPortFree +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   pvPortMalloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   osKernelUnlock +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessTimerOrBlockTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vTaskDelay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTimerCreateTimerTask (Thumb, 108 bytes, Stack size 32 bytes, timers.o(.text.xTimerCreateTimerTask)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xTimerCreateTimerTask (Thumb, 108 bytes, Stack size 32 bytes, timers.o(.text.xTimerCreateTimerTask))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xTimerCreateTimerTask ⇒ prvCheckForValidListAndQueue ⇒ xQueueGenericCreateStatic ⇒ prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vApplicationGetTimerTaskMemory -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCheckForValidListAndQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTaskCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vApplicationGetTimerTaskMemory +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvCheckForValidListAndQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskCreateStatic
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTimerGenericCommand (Thumb, 104 bytes, Stack size 24 bytes, timers.o(.text.xTimerGenericCommand)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xTimerGenericCommand (Thumb, 104 bytes, Stack size 24 bytes, timers.o(.text.xTimerGenericCommand))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 152
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskGetSchedulerState -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericSendFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskGetSchedulerState +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueGenericSendFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvSwitchTimerLists -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvProcessReceivedCommands -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvProcessExpiredTimer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvSwitchTimerLists +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvProcessExpiredTimer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _btod_d2e (Thumb, 62 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _d2e_norm_op1 +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _btod_d2e (Thumb, 62 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _d2e_norm_op1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _fp_digits
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _d2e_denorm_low (Thumb, 70 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e_denorm_low)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _d2e_norm_op1 +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _d2e_denorm_low (Thumb, 70 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e_denorm_low)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _d2e_norm_op1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _d2e_norm_op1 (Thumb, 96 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e_norm_op1)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _d2e_denorm_low +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _d2e_norm_op1 (Thumb, 96 bytes, Stack size 0 bytes, btod.o(CL$$btod_d2e_norm_op1)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _d2e_denorm_low
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _btod_d2e +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _btod_d2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __btod_div_common (Thumb, 696 bytes, Stack size 24 bytes, btod.o(CL$$btod_div_common)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __btod_div_common (Thumb, 696 bytes, Stack size 24 bytes, btod.o(CL$$btod_div_common))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = __btod_div_common
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _btod_ediv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_ediv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _e2e (Thumb, 220 bytes, Stack size 24 bytes, btod.o(CL$$btod_e2e)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _e2e (Thumb, 220 bytes, Stack size 24 bytes, btod.o(CL$$btod_e2e))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _e2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_emul -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_ediv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_emul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_ediv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _btod_ediv (Thumb, 42 bytes, Stack size 28 bytes, btod.o(CL$$btod_ediv)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _btod_ediv (Thumb, 42 bytes, Stack size 28 bytes, btod.o(CL$$btod_ediv))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 52
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = _btod_ediv ⇒ _e2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _e2e -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __btod_div_common +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _e2e +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __btod_div_common
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _btod_etento -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _btod_etento +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _fp_digits
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _btod_emul (Thumb, 42 bytes, Stack size 28 bytes, btod.o(CL$$btod_emul)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _btod_emul (Thumb, 42 bytes, Stack size 28 bytes, btod.o(CL$$btod_emul))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 52
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = _btod_emul ⇒ _e2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __btod_mult_common -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _e2e +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __btod_mult_common +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _e2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _btod_etento -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _btod_etento +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _fp_digits
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __btod_mult_common (Thumb, 580 bytes, Stack size 16 bytes, btod.o(CL$$btod_mult_common)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __btod_mult_common (Thumb, 580 bytes, Stack size 16 bytes, btod.o(CL$$btod_mult_common))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = __btod_mult_common
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _btod_emul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _btod_emul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __ARM_fpclassify (Thumb, 48 bytes, Stack size 8 bytes, fpclassify.o(i.__ARM_fpclassify)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __ARM_fpclassify (Thumb, 48 bytes, Stack size 8 bytes, fpclassify.o(i.__ARM_fpclassify))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __ARM_fpclassify
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_fp_dec_real
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __ARM_fpclassifyf (Thumb, 38 bytes, Stack size 0 bytes, fpclassifyf.o(i.__ARM_fpclassifyf)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_tanf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan2f -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_asinf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __ARM_fpclassifyf (Thumb, 38 bytes, Stack size 0 bytes, fpclassifyf.o(i.__ARM_fpclassifyf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_atan2f +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_asinf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_asinf (Thumb, 258 bytes, Stack size 16 bytes, asinf.o(i.__hardfp_asinf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_asinf (Thumb, 258 bytes, Stack size 16 bytes, asinf.o(i.__hardfp_asinf))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __hardfp_asinf ⇒ sqrtf ⇒ __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   sqrtf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_underflow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_invalid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_infnan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_fpclassifyf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   sqrtf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_flt_underflow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_flt_invalid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_flt_infnan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_fpclassifyf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   AHRS_GetEulr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   AHRS_GetEulr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __hardfp_atan (Thumb, 622 bytes, Stack size 48 bytes, atan.o(i.__hardfp_atan)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __hardfp_atan (Thumb, 622 bytes, Stack size 48 bytes, atan.o(i.__hardfp_atan))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = __hardfp_atan ⇒ __kernel_poly ⇒ __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dsub -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_drsub -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dadd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __kernel_poly -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __ARM_fpclassify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   fabs -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __mathlib_dbl_underflow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __mathlib_dbl_infnan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dneg -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_dsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_drsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_dadd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __kernel_poly +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __ARM_fpclassify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   fabs +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __mathlib_dbl_underflow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __mathlib_dbl_infnan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_dneg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __hardfp_atan2 (Thumb, 448 bytes, Stack size 56 bytes, atan2.o(i.__hardfp_atan2)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __hardfp_atan2 (Thumb, 448 bytes, Stack size 56 bytes, atan2.o(i.__hardfp_atan2))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 168
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = __hardfp_atan2 ⇒ atan ⇒ __hardfp_atan ⇒ __kernel_poly ⇒ __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_dsub -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_drsub -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   fabs -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __mathlib_dbl_infnan2 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_cdcmpeq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_dneg -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_dsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_drsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   fabs +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __mathlib_dbl_infnan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_cdcmpeq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_dneg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   AHRS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   AHRS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Chassis_speed_calculate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __hardfp_atan2f (Thumb, 594 bytes, Stack size 32 bytes, atan2f.o(i.__hardfp_atan2f)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __hardfp_atan2f (Thumb, 594 bytes, Stack size 32 bytes, atan2f.o(i.__hardfp_atan2f))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __hardfp_atan2f ⇒ __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __mathlib_flt_underflow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __mathlib_flt_infnan2 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __ARM_fpclassifyf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __mathlib_flt_underflow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __mathlib_flt_infnan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __ARM_fpclassifyf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_GetEulr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   AHRS_GetEulr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_tanf (Thumb, 322 bytes, Stack size 16 bytes, tanf.o(i.__hardfp_tanf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_cosf (Thumb, 280 bytes, Stack size 8 bytes, cosf.o(i.__hardfp_cosf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 28
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __hardfp_cosf ⇒ __mathlib_rredf2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_rredf2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_invalid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_infnan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_fmod (Thumb, 254 bytes, Stack size 48 bytes, fmod.o(i.__hardfp_fmod)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __hardfp_fmod ⇒ __mathlib_dbl_invalid ⇒ __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_drsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_dbl_invalid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _drem +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_sinf (Thumb, 344 bytes, Stack size 16 bytes, sinf.o(i.__hardfp_sinf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __hardfp_sinf ⇒ __mathlib_rredf2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_rredf2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_underflow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_invalid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_infnan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_fpclassifyf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_CalcWz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_sqrt (Thumb, 122 bytes, Stack size 32 bytes, sqrt.o(i.__hardfp_sqrt)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __hardfp_sqrt ⇒ _dsqrt ⇒ __fpl_dnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dsqrt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __hardfp_tanf (Thumb, 322 bytes, Stack size 16 bytes, tanf.o(i.__hardfp_tanf))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __hardfp_tanf ⇒ __mathlib_rredf2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_rredf2 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_underflow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_invalid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __mathlib_flt_infnan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_fpclassifyf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_rredf2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_flt_underflow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_flt_invalid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __mathlib_flt_infnan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_fpclassifyf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   LowPassFilter2p_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   LowPassFilter2p_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __kernel_poly (Thumb, 248 bytes, Stack size 24 bytes, poly.o(i.__kernel_poly)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __kernel_poly (Thumb, 248 bytes, Stack size 24 bytes, poly.o(i.__kernel_poly))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = __kernel_poly ⇒ __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dadd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_dadd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __mathlib_dbl_infnan (Thumb, 20 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_infnan)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __mathlib_dbl_infnan (Thumb, 20 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_infnan))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = __mathlib_dbl_infnan ⇒ __aeabi_dadd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_dadd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_dadd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __mathlib_dbl_infnan2 (Thumb, 20 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_infnan2)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __mathlib_dbl_infnan2 (Thumb, 20 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_infnan2))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __mathlib_dbl_infnan2 ⇒ __aeabi_dadd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_dadd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_dadd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __mathlib_dbl_underflow (Thumb, 24 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_underflow)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __mathlib_dbl_invalid (Thumb, 24 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_invalid)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __mathlib_dbl_invalid ⇒ __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_fmod +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __mathlib_dbl_underflow (Thumb, 24 bytes, Stack size 8 bytes, dunder.o(i.__mathlib_dbl_underflow))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __mathlib_dbl_underflow ⇒ __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_dmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __mathlib_flt_infnan (Thumb, 6 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_infnan)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_tanf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_asinf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __mathlib_flt_infnan (Thumb, 6 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_infnan)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_cosf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_asinf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __mathlib_flt_infnan2 (Thumb, 6 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_infnan2)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan2f +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __mathlib_flt_infnan2 (Thumb, 6 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_infnan2)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_atan2f
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __mathlib_flt_invalid (Thumb, 10 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_invalid)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_tanf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_asinf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __mathlib_flt_invalid (Thumb, 10 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_invalid)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_cosf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_asinf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __mathlib_flt_underflow (Thumb, 10 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_underflow)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_tanf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan2f -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_asinf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __mathlib_flt_underflow (Thumb, 10 bytes, Stack size 0 bytes, funder.o(i.__mathlib_flt_underflow)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_atan2f +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_asinf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __mathlib_rredf2 (Thumb, 316 bytes, Stack size 20 bytes, rredf.o(i.__mathlib_rredf2)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __mathlib_rredf2 (Thumb, 316 bytes, Stack size 20 bytes, rredf.o(i.__mathlib_rredf2))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __mathlib_rredf2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_tanf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_cosf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _is_digit (Thumb, 14 bytes, Stack size 0 bytes, __printf_wp.o(i._is_digit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __printf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _is_digit (Thumb, 14 bytes, Stack size 0 bytes, __printf_wp.o(i._is_digit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            atan (Thumb, 16 bytes, Stack size 8 bytes, atan.o(i.atan)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            atan (Thumb, 16 bytes, Stack size 8 bytes, atan.o(i.atan))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = atan ⇒ __hardfp_atan ⇒ __kernel_poly ⇒ __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __hardfp_atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fabs (Thumb, 24 bytes, Stack size 8 bytes, fabs.o(i.fabs)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                fabs (Thumb, 24 bytes, Stack size 8 bytes, fabs.o(i.fabs))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = fabs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sqrtf (Thumb, 62 bytes, Stack size 16 bytes, sqrtf.o(i.sqrtf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sqrtf (Thumb, 62 bytes, Stack size 16 bytes, sqrtf.o(i.sqrtf))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = sqrtf ⇒ __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __set_errno +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __set_errno
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_asinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_asinf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _get_lc_numeric (Thumb, 44 bytes, Stack size 8 bytes, lc_numeric_c.o(locale$$code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _get_lc_numeric (Thumb, 44 bytes, Stack size 8 bytes, lc_numeric_c.o(locale$$code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = _get_lc_numeric ⇒ strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   strcmp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __rt_lib_init_lc_numeric_2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __rt_lib_init_lc_numeric_2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __aeabi_dneg (Thumb, 0 bytes, Stack size 0 bytes, basic.o(x$fpl$basic)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan2 +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_dneg (Thumb, 0 bytes, Stack size 0 bytes, basic.o(x$fpl$basic)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dneg (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dneg (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_fneg (Thumb, 0 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_fneg (Thumb, 0 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fneg (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fneg (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dabs (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dabs (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fabs (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fabs (Thumb, 6 bytes, Stack size 0 bytes, basic.o(x$fpl$basic), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_d2f (Thumb, 0 bytes, Stack size 32 bytes, d2f.o(x$fpl$d2f)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_d2f (Thumb, 0 bytes, Stack size 32 bytes, d2f.o(x$fpl$d2f))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = __aeabi_d2f
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   AHRS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   AHRS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Chassis_CalcWz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _d2f (Thumb, 98 bytes, Stack size 32 bytes, d2f.o(x$fpl$d2f), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __fpl_fretinf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _d2f (Thumb, 98 bytes, Stack size 32 bytes, d2f.o(x$fpl$d2f), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __fpl_fretinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_dadd (Thumb, 0 bytes, Stack size 16 bytes, daddsub_clz.o(x$fpl$dadd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_dadd (Thumb, 0 bytes, Stack size 16 bytes, daddsub_clz.o(x$fpl$dadd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = __aeabi_dadd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __kernel_poly -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __mathlib_dbl_infnan2 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __mathlib_dbl_infnan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __kernel_poly +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __mathlib_dbl_infnan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __mathlib_dbl_infnan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _dadd (Thumb, 332 bytes, Stack size 16 bytes, daddsub_clz.o(x$fpl$dadd), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _dsub1 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __fpl_dretinf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _dadd (Thumb, 332 bytes, Stack size 16 bytes, daddsub_clz.o(x$fpl$dadd), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dsub1 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __fpl_dretinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __fpl_dcmp_Inf (Thumb, 24 bytes, Stack size 0 bytes, dcmpi.o(x$fpl$dcmpinf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dcmple -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dcmpge -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dcmpeq +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __fpl_dcmp_Inf (Thumb, 24 bytes, Stack size 0 bytes, dcmpi.o(x$fpl$dcmpinf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dcmple +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dcmpge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dcmpeq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __aeabi_ddiv (Thumb, 0 bytes, Stack size 32 bytes, ddiv.o(x$fpl$ddiv)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __aeabi_ddiv (Thumb, 0 bytes, Stack size 32 bytes, ddiv.o(x$fpl$ddiv))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = __aeabi_ddiv

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Task_vofa @@ -4531,30 +4574,31 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Task_dr16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Task_cmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Task_ai -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __mathlib_dbl_invalid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _ddiv (Thumb, 556 bytes, Stack size 32 bytes, ddiv.o(x$fpl$ddiv), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __fpl_dretinf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _ddiv (Thumb, 556 bytes, Stack size 32 bytes, ddiv.o(x$fpl$ddiv), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __fpl_dretinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __aeabi_cdcmpeq (Thumb, 0 bytes, Stack size 32 bytes, deqf.o(x$fpl$deqf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __aeabi_cdcmpeq (Thumb, 0 bytes, Stack size 32 bytes, deqf.o(x$fpl$deqf))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __aeabi_cdcmpeq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _dcmpeq (Thumb, 120 bytes, Stack size 32 bytes, deqf.o(x$fpl$deqf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __fpl_dcmp_Inf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dcmpeq (Thumb, 120 bytes, Stack size 32 bytes, deqf.o(x$fpl$deqf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __fpl_dcmp_Inf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dneq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _deq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dneq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _deq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __aeabi_d2uiz (Thumb, 0 bytes, Stack size 32 bytes, dfixu.o(x$fpl$dfixu)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __aeabi_d2uiz (Thumb, 0 bytes, Stack size 32 bytes, dfixu.o(x$fpl$dfixu))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = __aeabi_d2uiz

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_vofa @@ -4569,11 +4613,11 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Task_ai
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _dfixu (Thumb, 90 bytes, Stack size 32 bytes, dfixu.o(x$fpl$dfixu), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _dfixu (Thumb, 90 bytes, Stack size 32 bytes, dfixu.o(x$fpl$dfixu), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_ui2d (Thumb, 0 bytes, Stack size 0 bytes, dflt_clz.o(x$fpl$dfltu)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_ui2d (Thumb, 0 bytes, Stack size 0 bytes, dflt_clz.o(x$fpl$dfltu))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_vofa
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_step_motor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_ET16s @@ -4586,174 +4630,204 @@ Global Symbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Task_ai
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _dfltu (Thumb, 38 bytes, Stack size 0 bytes, dflt_clz.o(x$fpl$dfltu), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _dfltu (Thumb, 38 bytes, Stack size 0 bytes, dflt_clz.o(x$fpl$dfltu), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_cdcmpge (Thumb, 0 bytes, Stack size 32 bytes, dgeqf.o(x$fpl$dgeqf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_cdcmpge (Thumb, 0 bytes, Stack size 32 bytes, dgeqf.o(x$fpl$dgeqf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _dcmpge (Thumb, 120 bytes, Stack size 32 bytes, dgeqf.o(x$fpl$dgeqf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __fpl_dcmp_Inf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _dcmpge (Thumb, 120 bytes, Stack size 32 bytes, dgeqf.o(x$fpl$dgeqf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __fpl_dcmp_Inf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _dgeq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _dgr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dgeq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dgr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_cdcmple (Thumb, 0 bytes, Stack size 32 bytes, dleqf.o(x$fpl$dleqf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_cdcmple (Thumb, 0 bytes, Stack size 32 bytes, dleqf.o(x$fpl$dleqf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _dcmple (Thumb, 120 bytes, Stack size 32 bytes, dleqf.o(x$fpl$dleqf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __fpl_dcmp_Inf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _dcmple (Thumb, 120 bytes, Stack size 32 bytes, dleqf.o(x$fpl$dleqf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __fpl_dcmp_Inf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dls -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dleq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _dls +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _dleq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __fpl_dcmple_InfNaN (Thumb, 0 bytes, Stack size unknown bytes, dleqf.o(x$fpl$dleqf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __fpl_dcmple_InfNaN (Thumb, 0 bytes, Stack size unknown bytes, dleqf.o(x$fpl$dleqf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __aeabi_dmul (Thumb, 0 bytes, Stack size 32 bytes, dmul.o(x$fpl$dmul)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __aeabi_dmul (Thumb, 0 bytes, Stack size 32 bytes, dmul.o(x$fpl$dmul))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __aeabi_dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __kernel_poly -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __mathlib_dbl_underflow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Chassis_CalcWz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __kernel_poly +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __mathlib_dbl_underflow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __hardfp_atan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _dmul (Thumb, 332 bytes, Stack size 32 bytes, dmul.o(x$fpl$dmul), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __fpl_dretinf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dmul (Thumb, 332 bytes, Stack size 32 bytes, dmul.o(x$fpl$dmul), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __fpl_dretinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __fpl_dnaninf (Thumb, 156 bytes, Stack size 16 bytes, dnaninf.o(x$fpl$dnaninf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dfixu -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dsub -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dadd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _d2f -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dcmple -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dcmpge -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dcmpeq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dmul +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __fpl_dnaninf (Thumb, 156 bytes, Stack size 16 bytes, dnaninf.o(x$fpl$dnaninf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = __fpl_dnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dfixu +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dadd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _d2f +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dsqrt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _drem +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dcmple +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dcmpge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dcmpeq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __fpl_dretinf (Thumb, 12 bytes, Stack size 0 bytes, dretinf.o(x$fpl$dretinf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _ddiv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dadd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _f2d -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dmul +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _drem (Thumb, 328 bytes, Stack size 16 bytes, drem_clz.o(x$fpl$drem)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = _drem ⇒ __fpl_dnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __fpl_dnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_fmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_drsub (Thumb, 0 bytes, Stack size 8 bytes, daddsub_clz.o(x$fpl$drsb)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fpl_dretinf (Thumb, 12 bytes, Stack size 0 bytes, dretinf.o(x$fpl$dretinf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _ddiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _dadd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _f2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _dmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_drsub (Thumb, 0 bytes, Stack size 8 bytes, daddsub_clz.o(x$fpl$drsb))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = __aeabi_drsub
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_fmod +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _drsb (Thumb, 22 bytes, Stack size 8 bytes, daddsub_clz.o(x$fpl$drsb), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _dsub1 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _dadd1 +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _drsb (Thumb, 22 bytes, Stack size 8 bytes, daddsub_clz.o(x$fpl$drsb), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dsub1 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dadd1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_dsub (Thumb, 0 bytes, Stack size 32 bytes, daddsub_clz.o(x$fpl$dsub)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _dsqrt (Thumb, 404 bytes, Stack size 24 bytes, dsqrt_umaal.o(x$fpl$dsqrt)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = _dsqrt ⇒ __fpl_dnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __fpl_dnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_sqrt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_dsub (Thumb, 0 bytes, Stack size 32 bytes, daddsub_clz.o(x$fpl$dsub))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = __aeabi_dsub
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_atan -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __hardfp_atan2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __hardfp_atan2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _dsub (Thumb, 472 bytes, Stack size 32 bytes, daddsub_clz.o(x$fpl$dsub), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dadd1 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __fpl_dnaninf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _dsub (Thumb, 472 bytes, Stack size 32 bytes, daddsub_clz.o(x$fpl$dsub), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _dadd1 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __fpl_dnaninf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __aeabi_f2d (Thumb, 0 bytes, Stack size 16 bytes, f2d.o(x$fpl$f2d)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __aeabi_f2d (Thumb, 0 bytes, Stack size 16 bytes, f2d.o(x$fpl$f2d))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = __aeabi_f2d
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   AHRS_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   VOFA_Send -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   VOFA_FireWater_Send -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   ET16s_ParseRaw +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Chassis_update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Chassis_speed_calculate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Chassis_CalcWz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   VOFA_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   VOFA_FireWater_Send +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   ET16s_ParseRaw
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _f2d (Thumb, 86 bytes, Stack size 16 bytes, f2d.o(x$fpl$f2d), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __fpl_fnaninf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __fpl_dretinf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _f2d (Thumb, 86 bytes, Stack size 16 bytes, f2d.o(x$fpl$f2d), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __fpl_fnaninf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __fpl_dretinf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_dcmpeq (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_dcmpeq (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _deq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dcmpeq +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _deq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dcmpeq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _dneq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _dcmpeq +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _dneq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _dcmpeq
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_dcmpgt (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __aeabi_dcmpgt (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = __aeabi_dcmpgt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   ET16s_ParseRaw +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ET16s_ParseRaw
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _dgr (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _dcmpge +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _dgr (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dcmpge
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_dcmpge (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _dgeq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _dcmpge +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __aeabi_dcmpge (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = __aeabi_dcmpge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Chassis_speed_calculate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __aeabi_dcmple (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _dgeq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _dcmpge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __aeabi_dcmple (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = __aeabi_dcmple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ET16s_ParseRaw +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   ET16s_ParseRaw
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _dleq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _dcmple +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _dleq (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _dcmple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __aeabi_dcmplt (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __aeabi_dcmplt (Thumb, 0 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _dls (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _dcmple +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dls (Thumb, 14 bytes, Stack size 8 bytes, dcmp.o(x$fpl$fcmp), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dcmple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __aeabi_ul2f (Thumb, 0 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   CMD_GenerateCommands -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Shoot_Control -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __aeabi_ul2f (Thumb, 0 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   CMD_GenerateCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _ll_uto_f (Thumb, 6 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _ll_uto_f (Thumb, 6 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __aeabi_l2f (Thumb, 0 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __aeabi_l2f (Thumb, 0 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _ll_sto_f (Thumb, 90 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _ll_sto_f (Thumb, 90 bytes, Stack size 0 bytes, ffltll_clz.o(x$fpl$ffltll), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __fpl_fnaninf (Thumb, 140 bytes, Stack size 8 bytes, fnaninf.o(x$fpl$fnaninf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _f2d +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fpl_fnaninf (Thumb, 140 bytes, Stack size 8 bytes, fnaninf.o(x$fpl$fnaninf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _f2d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _fp_init (Thumb, 26 bytes, Stack size 0 bytes, fpinit.o(x$fpl$fpinit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __rt_lib_init_fp_1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fplib_config_fpu_vfp (Thumb, 0 bytes, Stack size unknown bytes, fpinit.o(x$fpl$fpinit), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fplib_config_fpu_vfp (Thumb, 0 bytes, Stack size unknown bytes, fpinit.o(x$fpl$fpinit), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fplib_config_pureend_doubles (Thumb, 0 bytes, Stack size unknown bytes, fpinit.o(x$fpl$fpinit), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fplib_config_pureend_doubles (Thumb, 0 bytes, Stack size unknown bytes, fpinit.o(x$fpl$fpinit), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __fpl_fretinf (Thumb, 10 bytes, Stack size 0 bytes, fretinf.o(x$fpl$fretinf), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _d2f +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __fpl_fretinf (Thumb, 10 bytes, Stack size 0 bytes, fretinf.o(x$fpl$fretinf), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _d2f

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _printf_fp_dec (Thumb, 4 bytes, Stack size 0 bytes, printf1.o(x$fpl$printf1))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 324
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = _printf_fp_dec ⇒ _printf_fp_dec_real ⇒ _fp_digits ⇒ _btod_etento ⇒ _btod_emul ⇒ _e2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_fp_dec_real

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_f
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -4761,57 +4835,57 @@ Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DMA_CalcBaseAndBitshift (Thumb, 52 bytes, Stack size 0 bytes, stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_DMA_Init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DMA_CalcBaseAndBitshift (Thumb, 52 bytes, Stack size 0 bytes, stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_DMA_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DMA_CheckFifoParam (Thumb, 80 bytes, Stack size 0 bytes, stm32f4xx_hal_dma.o(.text.DMA_CheckFifoParam)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_DMA_Init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DMA_CheckFifoParam (Thumb, 80 bytes, Stack size 0 bytes, stm32f4xx_hal_dma.o(.text.DMA_CheckFifoParam)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_DMA_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DMA_SetConfig (Thumb, 48 bytes, Stack size 8 bytes, stm32f4xx_hal_dma.o(.text.DMA_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DMA_SetConfig (Thumb, 48 bytes, Stack size 8 bytes, stm32f4xx_hal_dma.o(.text.DMA_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = DMA_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_DMA_Start_IT +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_DMA_Start_IT
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NVIC_EncodePriority (Thumb, 44 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.NVIC_EncodePriority)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_SetPriority +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NVIC_EncodePriority (Thumb, 44 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.NVIC_EncodePriority)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SysTick_Config (Thumb, 46 bytes, Stack size 16 bytes, stm32f4xx_hal_cortex.o(.text.SysTick_Config)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SysTick_Config (Thumb, 46 bytes, Stack size 16 bytes, stm32f4xx_hal_cortex.o(.text.SysTick_Config))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = SysTick_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SYSTICK_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SYSTICK_Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __NVIC_DisableIRQ (Thumb, 40 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_DisableIRQ)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_NVIC_DisableIRQ +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __NVIC_DisableIRQ (Thumb, 40 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_DisableIRQ)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_DisableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __NVIC_EnableIRQ (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_EnableIRQ)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_NVIC_EnableIRQ +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __NVIC_EnableIRQ (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_EnableIRQ)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_NVIC_EnableIRQ
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __NVIC_GetPriorityGrouping (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_NVIC_SetPriority +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __NVIC_GetPriorityGrouping (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __NVIC_SetPriority (Thumb, 34 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriority)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SysTick_Config -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_NVIC_SetPriority +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __NVIC_SetPriority (Thumb, 34 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriority)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SysTick_Config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __NVIC_SetPriorityGrouping (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_NVIC_SetPriorityGrouping +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __NVIC_SetPriorityGrouping (Thumb, 32 bytes, Stack size 0 bytes, stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_NVIC_SetPriorityGrouping

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SPI_DMAError (Thumb, 34 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMAError))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = SPI_DMAError ⇒ HAL_SPI_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 3]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA) @@ -4820,7 +4894,7 @@ Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SPI_DMAHalfReceiveCplt (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMAHalfReceiveCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = SPI_DMAHalfReceiveCplt ⇒ HAL_SPI_RxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_RxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_RxHalfCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 2]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA) @@ -4828,24 +4902,24 @@ Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SPI_DMAHalfTransmitCplt (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = SPI_DMAHalfTransmitCplt ⇒ HAL_SPI_TxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_SPI_TxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_SPI_TxHalfCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SPI_DMAHalfTransmitReceiveCplt (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitReceiveCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = SPI_DMAHalfTransmitReceiveCplt ⇒ HAL_SPI_TxRxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_SPI_TxRxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_TxRxHalfCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SPI_DMAReceiveCplt (Thumb, 104 bytes, Stack size 16 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMAReceiveCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = SPI_DMAReceiveCplt ⇒ SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_EndRxTransaction -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_RxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SPI_EndRxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_SPI_RxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_SPI_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 2]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA) @@ -4853,95 +4927,95 @@ Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SPI_DMATransmitCplt (Thumb, 112 bytes, Stack size 24 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMATransmitCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = SPI_DMATransmitCplt ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SPI_EndRxTxTransaction -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_TxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_SPI_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_EndRxTxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_TxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SPI_DMATransmitReceiveCplt (Thumb, 90 bytes, Stack size 16 bytes, stm32f4xx_hal_spi.o(.text.SPI_DMATransmitReceiveCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = SPI_DMATransmitReceiveCplt ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SPI_EndRxTxTransaction -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_TxRxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_SPI_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SPI_EndRxTxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TxRxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SPI_EndRxTransaction (Thumb, 144 bytes, Stack size 24 bytes, stm32f4xx_hal_spi.o(.text.SPI_EndRxTransaction)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SPI_EndRxTransaction (Thumb, 144 bytes, Stack size 24 bytes, stm32f4xx_hal_spi.o(.text.SPI_EndRxTransaction))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = SPI_EndRxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SPI_WaitFlagStateUntilTimeout +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_SPI_Receive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SPI_DMAReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SPI_EndRxTxTransaction (Thumb, 138 bytes, Stack size 24 bytes, stm32f4xx_hal_spi.o(.text.SPI_EndRxTxTransaction)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SPI_EndRxTxTransaction (Thumb, 138 bytes, Stack size 24 bytes, stm32f4xx_hal_spi.o(.text.SPI_EndRxTxTransaction))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SPI_WaitFlagStateUntilTimeout +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_SPI_TransmitReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_TransmitReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_SPI_Transmit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_DMATransmitReceiveCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   SPI_DMATransmitCplt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SPI_WaitFlagStateUntilTimeout (Thumb, 224 bytes, Stack size 40 bytes, stm32f4xx_hal_spi.o(.text.SPI_WaitFlagStateUntilTimeout)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SPI_WaitFlagStateUntilTimeout (Thumb, 224 bytes, Stack size 40 bytes, stm32f4xx_hal_spi.o(.text.SPI_WaitFlagStateUntilTimeout))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_GetTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SPI_EndRxTxTransaction -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   SPI_EndRxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SPI_EndRxTxTransaction +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SPI_EndRxTransaction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TIM_ITRx_SetConfig (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_ITRx_SetConfig)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_TIM_ConfigClockSource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TIM_ITRx_SetConfig (Thumb, 16 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_ITRx_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_ConfigClockSource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TIM_OC1_SetConfig (Thumb, 100 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC1_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TIM_OC1_SetConfig (Thumb, 100 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC1_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = TIM_OC1_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_TIM_PWM_ConfigChannel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_PWM_ConfigChannel
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TIM_OC3_SetConfig (Thumb, 104 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC3_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TIM_OC3_SetConfig (Thumb, 104 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC3_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = TIM_OC3_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_TIM_PWM_ConfigChannel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_PWM_ConfigChannel
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TIM_OC4_SetConfig (Thumb, 78 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC4_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TIM_OC4_SetConfig (Thumb, 78 bytes, Stack size 16 bytes, stm32f4xx_hal_tim.o(.text.TIM_OC4_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = TIM_OC4_SetConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_TIM_PWM_ConfigChannel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_PWM_ConfigChannel
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TIM_TI1_ConfigInputStage (Thumb, 34 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_TIM_ConfigClockSource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIM_TI1_ConfigInputStage (Thumb, 34 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_ConfigClockSource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIM_TI2_ConfigInputStage (Thumb, 36 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_TIM_ConfigClockSource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TIM_TI2_ConfigInputStage (Thumb, 36 bytes, Stack size 0 bytes, stm32f4xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_TIM_ConfigClockSource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UART_DMAAbortOnError (Thumb, 14 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_DMAAbortOnError))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = UART_DMAAbortOnError ⇒ HAL_UART_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UART_DMAError (Thumb, 76 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_DMAError))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = UART_DMAError ⇒ HAL_UART_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_EndTxTransfer -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_EndRxTransfer -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_ErrorCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_EndTxTransfer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART_EndRxTransfer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_ErrorCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 2]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA) @@ -4949,380 +5023,380 @@ Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UART_DMAReceiveCplt (Thumb, 132 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_DMAReceiveCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = UART_DMAReceiveCplt ⇒ HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UARTEx_RxEventCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_RxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UARTEx_RxEventCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UART_RxCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UART_DMARxHalfCplt (Thumb, 30 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_DMARxHalfCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = UART_DMARxHalfCplt ⇒ HAL_UART_RxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UARTEx_RxEventCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_UART_RxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UARTEx_RxEventCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_RxHalfCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UART_DMATransmitCplt (Thumb, 64 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_DMATransmitCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = UART_DMATransmitCplt ⇒ HAL_UART_TxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_TxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_TxCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UART_DMATxHalfCplt (Thumb, 10 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_DMATxHalfCplt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = UART_DMATxHalfCplt ⇒ HAL_UART_TxHalfCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_TxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_TxHalfCpltCallback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UART_EndRxTransfer (Thumb, 80 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.UART_EndRxTransfer)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   UART_EndRxTransfer +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UART_EndRxTransfer (Thumb, 80 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.UART_EndRxTransfer)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_EndRxTransfer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_IRQHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   UART_EndRxTransfer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_EndRxTransfer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART_DMAError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UART_EndTransmit_IT (Thumb, 24 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_EndTransmit_IT)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UART_EndTransmit_IT (Thumb, 24 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_EndTransmit_IT))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = UART_EndTransmit_IT ⇒ HAL_UART_TxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_TxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_TxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_UART_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UART_EndTxTransfer (Thumb, 28 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.UART_EndTxTransfer)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   UART_EndTxTransfer +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UART_EndTxTransfer (Thumb, 28 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.UART_EndTxTransfer)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_EndTxTransfer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   UART_EndTxTransfer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   UART_EndTxTransfer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   UART_DMAError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UART_Receive_IT (Thumb, 200 bytes, Stack size 16 bytes, stm32f4xx_hal_uart.o(.text.UART_Receive_IT)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UART_Receive_IT (Thumb, 200 bytes, Stack size 16 bytes, stm32f4xx_hal_uart.o(.text.UART_Receive_IT))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = UART_Receive_IT ⇒ HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UARTEx_RxEventCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_RxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UARTEx_RxEventCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_RxCpltCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_UART_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UART_SetConfig (Thumb, 220 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_SetConfig)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UART_SetConfig (Thumb, 220 bytes, Stack size 8 bytes, stm32f4xx_hal_uart.o(.text.UART_SetConfig))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = UART_SetConfig ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_RCC_GetPCLK2Freq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_RCC_GetPCLK1Freq -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_uldivmod +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_RCC_GetPCLK2Freq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_RCC_GetPCLK1Freq +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_UART_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UART_Transmit_IT (Thumb, 82 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.UART_Transmit_IT)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_UART_IRQHandler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UART_Transmit_IT (Thumb, 82 bytes, Stack size 0 bytes, stm32f4xx_hal_uart.o(.text.UART_Transmit_IT)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   HAL_UART_IRQHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prvCopyDataFromQueue (Thumb, 38 bytes, Stack size 8 bytes, queue.o(.text.prvCopyDataFromQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prvCopyDataFromQueue (Thumb, 38 bytes, Stack size 8 bytes, queue.o(.text.prvCopyDataFromQueue))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = prvCopyDataFromQueue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueReceiveFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceiveFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prvCopyDataToQueue (Thumb, 122 bytes, Stack size 16 bytes, queue.o(.text.prvCopyDataToQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prvCopyDataToQueue (Thumb, 122 bytes, Stack size 16 bytes, queue.o(.text.prvCopyDataToQueue))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = prvCopyDataToQueue ⇒ xTaskPriorityDisinherit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskPriorityDisinherit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskPriorityDisinherit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueGenericSendFromISR -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSendFromISR +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvGetDisinheritPriorityAfterTimeout (Thumb, 18 bytes, Stack size 0 bytes, queue.o(.text.prvGetDisinheritPriorityAfterTimeout)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueSemaphoreTake +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvGetDisinheritPriorityAfterTimeout (Thumb, 18 bytes, Stack size 0 bytes, queue.o(.text.prvGetDisinheritPriorityAfterTimeout)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueSemaphoreTake
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvInitialiseMutex (Thumb, 32 bytes, Stack size 8 bytes, queue.o(.text.prvInitialiseMutex)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvInitialiseMutex (Thumb, 32 bytes, Stack size 8 bytes, queue.o(.text.prvInitialiseMutex))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 136
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = prvInitialiseMutex ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueCreateMutexStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueCreateMutex +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueCreateMutexStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueCreateMutex
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvInitialiseNewQueue (Thumb, 32 bytes, Stack size 16 bytes, queue.o(.text.prvInitialiseNewQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvInitialiseNewQueue (Thumb, 32 bytes, Stack size 16 bytes, queue.o(.text.prvInitialiseNewQueue))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericReset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericReset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xQueueGenericCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xQueueGenericCreate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prvIsQueueEmpty (Thumb, 24 bytes, Stack size 8 bytes, queue.o(.text.prvIsQueueEmpty)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prvIsQueueEmpty (Thumb, 24 bytes, Stack size 8 bytes, queue.o(.text.prvIsQueueEmpty))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = prvIsQueueEmpty
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueReceive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvIsQueueFull (Thumb, 28 bytes, Stack size 8 bytes, queue.o(.text.prvIsQueueFull)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvIsQueueFull (Thumb, 28 bytes, Stack size 8 bytes, queue.o(.text.prvIsQueueFull))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = prvIsQueueFull
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericSend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvUnlockQueue (Thumb, 114 bytes, Stack size 24 bytes, queue.o(.text.prvUnlockQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvUnlockQueue (Thumb, 114 bytes, Stack size 24 bytes, queue.o(.text.prvUnlockQueue))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = prvUnlockQueue ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskRemoveFromEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskMissedYield -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTaskRemoveFromEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskMissedYield +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueSemaphoreTake -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xQueueGenericSend -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vQueueWaitForMessageRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueSemaphoreTake +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xQueueGenericSend +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vQueueWaitForMessageRestricted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvAddCurrentTaskToDelayedList (Thumb, 128 bytes, Stack size 24 bytes, tasks.o(.text.prvAddCurrentTaskToDelayedList)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvAddCurrentTaskToDelayedList (Thumb, 128 bytes, Stack size 24 bytes, tasks.o(.text.prvAddCurrentTaskToDelayedList))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = prvAddCurrentTaskToDelayedList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vListInsert -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vListInsert +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   uxListRemove
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskNotifyWait -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskPlaceOnEventListRestricted -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskPlaceOnEventList -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelayUntil -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vTaskDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskNotifyWait +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskPlaceOnEventListRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskPlaceOnEventList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskDelayUntil +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vTaskDelay
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prvAddNewTaskToReadyList (Thumb, 172 bytes, Stack size 16 bytes, tasks.o(.text.prvAddNewTaskToReadyList)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prvAddNewTaskToReadyList (Thumb, 172 bytes, Stack size 16 bytes, tasks.o(.text.prvAddNewTaskToReadyList))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = prvAddNewTaskToReadyList ⇒ prvInitialiseTaskLists
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvInitialiseTaskLists -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vListInsertEnd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvInitialiseTaskLists +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vListInsertEnd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortEnterCritical
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTaskCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskCreate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvCheckTasksWaitingTermination (Thumb, 78 bytes, Stack size 24 bytes, tasks.o(.text.prvCheckTasksWaitingTermination)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvCheckTasksWaitingTermination (Thumb, 78 bytes, Stack size 24 bytes, tasks.o(.text.prvCheckTasksWaitingTermination))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = prvCheckTasksWaitingTermination ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvDeleteTCB -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvDeleteTCB +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortEnterCritical

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvIdleTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvDeleteTCB (Thumb, 54 bytes, Stack size 8 bytes, tasks.o(.text.prvDeleteTCB)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvDeleteTCB (Thumb, 54 bytes, Stack size 8 bytes, tasks.o(.text.prvDeleteTCB))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortFree +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortFree
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvCheckTasksWaitingTermination -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vTaskDelete +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvCheckTasksWaitingTermination +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vTaskDelete

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvIdleTask (Thumb, 42 bytes, Stack size 0 bytes, tasks.o(.text.prvIdleTask))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = prvIdleTask ⇒ prvCheckTasksWaitingTermination ⇒ prvDeleteTCB ⇒ vPortFree ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvCheckTasksWaitingTermination +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvCheckTasksWaitingTermination

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • tasks.o(.text.vTaskStartScheduler)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvInitialiseNewTask (Thumb, 154 bytes, Stack size 32 bytes, tasks.o(.text.prvInitialiseNewTask)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvInitialiseNewTask (Thumb, 154 bytes, Stack size 32 bytes, tasks.o(.text.prvInitialiseNewTask))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = prvInitialiseNewTask ⇒ __aeabi_memset4 ⇒ _memset_w
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   pxPortInitialiseStack -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vListInitialiseItem -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_memset4 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   pxPortInitialiseStack +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   vListInitialiseItem +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memset4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTaskCreate +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTaskCreate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prvInitialiseTaskLists (Thumb, 112 bytes, Stack size 16 bytes, tasks.o(.text.prvInitialiseTaskLists)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            prvInitialiseTaskLists (Thumb, 112 bytes, Stack size 16 bytes, tasks.o(.text.prvInitialiseTaskLists))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = prvInitialiseTaskLists
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   vListInitialise +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vListInitialise
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvAddNewTaskToReadyList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvAddNewTaskToReadyList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvResetNextTaskUnblockTime (Thumb, 40 bytes, Stack size 0 bytes, tasks.o(.text.prvResetNextTaskUnblockTime)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskIncrementTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskDelete +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvResetNextTaskUnblockTime (Thumb, 40 bytes, Stack size 0 bytes, tasks.o(.text.prvResetNextTaskUnblockTime)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskIncrementTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vTaskDelete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvCheckForValidListAndQueue (Thumb, 116 bytes, Stack size 24 bytes, timers.o(.text.prvCheckForValidListAndQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvCheckForValidListAndQueue (Thumb, 116 bytes, Stack size 24 bytes, timers.o(.text.prvCheckForValidListAndQueue))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = prvCheckForValidListAndQueue ⇒ xQueueGenericCreateStatic ⇒ prvInitialiseNewQueue ⇒ xQueueGenericReset ⇒ xTaskRemoveFromEventList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xQueueGenericCreateStatic -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vQueueAddToRegistry -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortExitCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vPortEnterCritical -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vListInitialise +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xQueueGenericCreateStatic +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vQueueAddToRegistry +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortExitCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortEnterCritical +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vListInitialise
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTimerCreateTimerTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTimerCreateTimerTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvGetNextExpireTime (Thumb, 32 bytes, Stack size 0 bytes, timers.o(.text.prvGetNextExpireTime)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvGetNextExpireTime (Thumb, 32 bytes, Stack size 0 bytes, timers.o(.text.prvGetNextExpireTime))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvTimerTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvInsertTimerInActiveList (Thumb, 64 bytes, Stack size 8 bytes, timers.o(.text.prvInsertTimerInActiveList)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvInsertTimerInActiveList (Thumb, 64 bytes, Stack size 8 bytes, timers.o(.text.prvInsertTimerInActiveList))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = prvInsertTimerInActiveList ⇒ vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vListInsert +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vListInsert
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessReceivedCommands -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvProcessExpiredTimer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessExpiredTimer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prvProcessExpiredTimer (Thumb, 110 bytes, Stack size 24 bytes, timers.o(.text.prvProcessExpiredTimer)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prvProcessExpiredTimer (Thumb, 110 bytes, Stack size 24 bytes, timers.o(.text.prvProcessExpiredTimer))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 176
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = prvProcessExpiredTimer ⇒ xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xTimerGenericCommand -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvInsertTimerInActiveList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xTimerGenericCommand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvInsertTimerInActiveList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvProcessTimerOrBlockTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvProcessTimerOrBlockTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prvProcessReceivedCommands (Thumb, 290 bytes, Stack size 48 bytes, timers.o(.text.prvProcessReceivedCommands)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prvProcessReceivedCommands (Thumb, 290 bytes, Stack size 48 bytes, timers.o(.text.prvProcessReceivedCommands))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 248
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = prvProcessReceivedCommands ⇒ prvSampleTimeNow ⇒ prvSwitchTimerLists ⇒ xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xQueueReceive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   vPortFree -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xTimerGenericCommand -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvSampleTimeNow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   prvInsertTimerInActiveList +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xQueueReceive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vPortFree +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTimerGenericCommand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvSampleTimeNow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvInsertTimerInActiveList

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvTimerTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvProcessTimerOrBlockTask (Thumb, 128 bytes, Stack size 24 bytes, timers.o(.text.prvProcessTimerOrBlockTask)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                prvProcessTimerOrBlockTask (Thumb, 128 bytes, Stack size 24 bytes, timers.o(.text.prvProcessTimerOrBlockTask))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 224
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = prvProcessTimerOrBlockTask ⇒ prvSampleTimeNow ⇒ prvSwitchTimerLists ⇒ xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vQueueWaitForMessageRestricted -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xTaskResumeAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   vTaskSuspendAll -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvSampleTimeNow -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   prvProcessExpiredTimer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vQueueWaitForMessageRestricted +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskResumeAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   vTaskSuspendAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvSampleTimeNow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvProcessExpiredTimer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvTimerTask
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvSampleTimeNow (Thumb, 42 bytes, Stack size 16 bytes, timers.o(.text.prvSampleTimeNow)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvSampleTimeNow (Thumb, 42 bytes, Stack size 16 bytes, timers.o(.text.prvSampleTimeNow))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 200
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = prvSampleTimeNow ⇒ prvSwitchTimerLists ⇒ xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   prvSwitchTimerLists -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xTaskGetTickCount +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvSwitchTimerLists +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xTaskGetTickCount
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvProcessTimerOrBlockTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvProcessTimerOrBlockTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   prvProcessReceivedCommands
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvSwitchTimerLists (Thumb, 142 bytes, Stack size 32 bytes, timers.o(.text.prvSwitchTimerLists)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvSwitchTimerLists (Thumb, 142 bytes, Stack size 32 bytes, timers.o(.text.prvSwitchTimerLists))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 184
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = prvSwitchTimerLists ⇒ xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vListInsert -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   uxListRemove -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xTimerGenericCommand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   vListInsert +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   uxListRemove +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xTimerGenericCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   prvSampleTimeNow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvSampleTimeNow

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prvTimerTask (Thumb, 22 bytes, Stack size 8 bytes, timers.o(.text.prvTimerTask))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 256
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = prvTimerTask ⇒ prvProcessReceivedCommands ⇒ prvSampleTimeNow ⇒ prvSwitchTimerLists ⇒ xTimerGenericCommand ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessTimerOrBlockTask -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvProcessReceivedCommands -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   prvGetNextExpireTime +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvProcessTimerOrBlockTask +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvProcessReceivedCommands +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   prvGetNextExpireTime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • timers.o(.text.xTimerCreateTimerTask)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SVC_Setup (Thumb, 8 bytes, Stack size 8 bytes, cmsis_os2.o(.text.SVC_Setup)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SVC_Setup (Thumb, 8 bytes, Stack size 8 bytes, cmsis_os2.o(.text.SVC_Setup))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = SVC_Setup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __NVIC_SetPriority +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __NVIC_SetPriority
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osKernelStart +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osKernelStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                __NVIC_SetPriority (Thumb, 14 bytes, Stack size 0 bytes, cmsis_os2.o(.text.__NVIC_SetPriority)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SVC_Setup +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __NVIC_SetPriority (Thumb, 14 bytes, Stack size 0 bytes, cmsis_os2.o(.text.__NVIC_SetPriority)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SVC_Setup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  prvHeapInit (Thumb, 120 bytes, Stack size 0 bytes, heap_4.o(.text.prvHeapInit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   pvPortMalloc +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvHeapInit (Thumb, 120 bytes, Stack size 0 bytes, heap_4.o(.text.prvHeapInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   pvPortMalloc
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvInsertBlockIntoFreeList (Thumb, 90 bytes, Stack size 8 bytes, heap_4.o(.text.prvInsertBlockIntoFreeList)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    prvInsertBlockIntoFreeList (Thumb, 90 bytes, Stack size 8 bytes, heap_4.o(.text.prvInsertBlockIntoFreeList))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = prvInsertBlockIntoFreeList
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   vPortFree -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   pvPortMalloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   vPortFree +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   pvPortMalloc
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      prvPortStartFirstTask (Thumb, 34 bytes, Stack size 0 bytes, port.o(.text.prvPortStartFirstTask)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xPortStartScheduler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvPortStartFirstTask (Thumb, 34 bytes, Stack size 0 bytes, port.o(.text.prvPortStartFirstTask)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xPortStartScheduler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        prvTaskExitError (Thumb, 50 bytes, Stack size 4 bytes, port.o(.text.prvTaskExitError))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = prvTaskExitError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xPortStartScheduler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xPortStartScheduler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • port.o(.text.pxPortInitialiseStack)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vPortEnableVFP (Thumb, 14 bytes, Stack size 0 bytes, port.o(.text.vPortEnableVFP)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xPortStartScheduler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vPortEnableVFP (Thumb, 14 bytes, Stack size 0 bytes, port.o(.text.vPortEnableVFP)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xPortStartScheduler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSP_CAN_CreateIdQueue (Thumb, 146 bytes, Stack size 32 bytes, can_1.o(.text.BSP_CAN_CreateIdQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BSP_CAN_CreateIdQueue (Thumb, 146 bytes, Stack size 32 bytes, can_1.o(.text.BSP_CAN_CreateIdQueue))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 192
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = BSP_CAN_CreateIdQueue ⇒ osMutexAcquire ⇒ xQueueTakeMutexRecursive ⇒ xQueueSemaphoreTake ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_Malloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_Free -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMutexRelease -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMutexAcquire -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   osMessageQueueNew +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_Malloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_Free +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMutexRelease +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMutexAcquire +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osMessageQueueNew
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_CAN_RegisterId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_CAN_RegisterId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSP_CAN_DefaultIdParser (Thumb, 2 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_DefaultIdParser))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • can_1.o(.text.BSP_CAN_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BSP_CAN_FindQueue (Thumb, 38 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_FindQueue)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_CAN_GetMessage +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSP_CAN_FindQueue (Thumb, 38 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_FindQueue)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_GetMessage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSP_CAN_GetFrameType (Thumb, 26 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_GetFrameType)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSP_CAN_GetFrameType (Thumb, 26 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_GetFrameType))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo1Callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_RxFifo0Callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @@ -5330,350 +5404,366 @@ Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BSP_CAN_RxFifo0Callback (Thumb, 194 bytes, Stack size 112 bytes, can_1.o(.text.BSP_CAN_RxFifo0Callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 264
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = BSP_CAN_RxFifo0Callback ⇒ osMessageQueuePut ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_GetRxMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_CAN_GetRxFifoFillLevel -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_ParseId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_GetHandle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_GetFrameType -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_CAN_FindQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_GetRxMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_GetRxFifoFillLevel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_ParseId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_GetHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_GetFrameType +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_FindQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memcpy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • can_1.o(.text.BSP_CAN_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BSP_CAN_RxFifo1Callback (Thumb, 194 bytes, Stack size 112 bytes, can_1.o(.text.BSP_CAN_RxFifo1Callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 264
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = BSP_CAN_RxFifo1Callback ⇒ osMessageQueuePut ⇒ xQueueGenericSend ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_GetTick -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_GetRxMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   HAL_CAN_GetRxFifoFillLevel -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_ParseId -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_GetHandle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_GetFrameType -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_CAN_FindQueue -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osMessageQueuePut -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_GetTick +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_GetRxMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_GetRxFifoFillLevel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_ParseId +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_GetHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_GetFrameType +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_FindQueue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osMessageQueuePut +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memcpy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • can_1.o(.text.BSP_CAN_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BSP_CAN_TxCompleteCallback (Thumb, 100 bytes, Stack size 64 bytes, can_1.o(.text.BSP_CAN_TxCompleteCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = BSP_CAN_TxCompleteCallback ⇒ BSP_CAN_TxQueuePop
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_GetTxMailboxesFreeLevel -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   HAL_CAN_AddTxMessage -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_GetHandle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_TxQueuePop -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_CAN_TxQueueIsEmpty +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_GetTxMailboxesFreeLevel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   HAL_CAN_AddTxMessage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_GetHandle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_TxQueuePop +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_TxQueueIsEmpty

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • can_1.o(.text.BSP_CAN_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BSP_CAN_TxQueueInit (Thumb, 28 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_TxQueueInit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_CAN_Init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueueInit (Thumb, 28 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_TxQueueInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueueIsEmpty (Thumb, 34 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_TxQueueIsEmpty)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueueIsEmpty (Thumb, 34 bytes, Stack size 0 bytes, can_1.o(.text.BSP_CAN_TxQueueIsEmpty))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_TxCompleteCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueuePop (Thumb, 116 bytes, Stack size 24 bytes, can_1.o(.text.BSP_CAN_TxQueuePop)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueuePop (Thumb, 116 bytes, Stack size 24 bytes, can_1.o(.text.BSP_CAN_TxQueuePop))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = BSP_CAN_TxQueuePop

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_TxCompleteCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueuePush (Thumb, 126 bytes, Stack size 32 bytes, can_1.o(.text.BSP_CAN_TxQueuePush)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BSP_CAN_TxQueuePush (Thumb, 126 bytes, Stack size 32 bytes, can_1.o(.text.BSP_CAN_TxQueuePush))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = BSP_CAN_TxQueuePush
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_Transmit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CAN_Get (Thumb, 36 bytes, Stack size 0 bytes, can_1.o(.text.CAN_Get)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_WakeUpFromRxMsgCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_TxMailbox2CompleteCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_TxMailbox2AbortCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_TxMailbox1CompleteCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_TxMailbox1AbortCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_TxMailbox0CompleteCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_TxMailbox0AbortCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_SleepCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_RxFifo1MsgPendingCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_RxFifo1FullCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_RxFifo0MsgPendingCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_RxFifo0FullCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   HAL_CAN_ErrorCallback +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CAN_Get (Thumb, 36 bytes, Stack size 0 bytes, can_1.o(.text.CAN_Get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_WakeUpFromRxMsgCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_TxMailbox2CompleteCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_TxMailbox2AbortCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_TxMailbox1CompleteCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_TxMailbox1AbortCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_TxMailbox0CompleteCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_TxMailbox0AbortCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_SleepCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_RxFifo1MsgPendingCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_RxFifo1FullCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_RxFifo0MsgPendingCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_RxFifo0FullCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_CAN_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SPI_Get (Thumb, 20 bytes, Stack size 0 bytes, spi_1.o(.text.SPI_Get)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TxRxHalfCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TxRxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TxHalfCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_TxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_RxHalfCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_RxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   HAL_SPI_ErrorCallback +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SPI_Get (Thumb, 20 bytes, Stack size 0 bytes, spi_1.o(.text.SPI_Get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_TxRxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_TxRxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_TxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_TxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_RxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_RxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_SPI_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UART_Get (Thumb, 84 bytes, Stack size 0 bytes, uart.o(.text.UART_Get)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_UART_IRQHandler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_TxHalfCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_TxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_RxHalfCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_RxCpltCallback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   HAL_UART_ErrorCallback +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UART_Get (Thumb, 84 bytes, Stack size 0 bytes, uart.o(.text.UART_Get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_UART_IRQHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_TxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_TxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_RxHalfCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_RxCpltCallback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   HAL_UART_ErrorCallback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AHRS_UpdateIMU (Thumb, 752 bytes, Stack size 80 bytes, ahrs.o(.text.AHRS_UpdateIMU)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AHRS_UpdateIMU (Thumb, 752 bytes, Stack size 80 bytes, ahrs.o(.text.AHRS_UpdateIMU))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = AHRS_UpdateIMU
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   InvSqrt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   InvSqrt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   AHRS_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   AHRS_Update
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      copysignf (Thumb, 22 bytes, Stack size 0 bytes, ahrs.o(.text.copysignf)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   AHRS_GetEulr +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        copysignf (Thumb, 22 bytes, Stack size 0 bytes, ahrs.o(.text.copysignf)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   AHRS_GetEulr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        __ARM_isfinitef (Thumb, 14 bytes, Stack size 0 bytes, filter.o(.text.__ARM_isfinitef)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   LowPassFilter2p_Reset +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __ARM_isfinitef (Thumb, 14 bytes, Stack size 0 bytes, filter.o(.text.__ARM_isfinitef)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   LowPassFilter2p_Reset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          __ARM_isinff (Thumb, 16 bytes, Stack size 0 bytes, filter.o(.text.__ARM_isinff)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   LowPassFilter2p_Apply +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __ARM_isinff (Thumb, 16 bytes, Stack size 0 bytes, filter.o(.text.__ARM_isinff)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            __ARM_isfinitef (Thumb, 14 bytes, Stack size 0 bytes, pid.o(.text.__ARM_isfinitef)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PID_Init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PID_Calc +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              __ARM_isfinitef (Thumb, 14 bytes, Stack size 0 bytes, pid.o(.text.__ARM_isfinitef)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PID_Calc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BMI088_AcclIntCallback (Thumb, 20 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_AcclIntCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = BMI088_AcclIntCallback ⇒ osThreadFlagsSet ⇒ xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osThreadFlagsSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • bmi088.o(.text.BMI088_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BMI088_GyroIntCallback (Thumb, 20 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_GyroIntCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = BMI088_GyroIntCallback ⇒ osThreadFlagsSet ⇒ xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osThreadFlagsSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • bmi088.o(.text.BMI088_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BMI088_RxCpltCallback (Thumb, 64 bytes, Stack size 8 bytes, bmi088.o(.text.BMI088_RxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = BMI088_RxCpltCallback ⇒ osThreadFlagsSet ⇒ xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_GPIO_WritePin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_GPIO_ReadPin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_GPIO_WritePin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_GPIO_ReadPin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osThreadFlagsSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • bmi088.o(.text.BMI088_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BMI_Read (Thumb, 74 bytes, Stack size 16 bytes, bmi088.o(.text.BMI_Read)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BMI_Read (Thumb, 74 bytes, Stack size 16 bytes, bmi088.o(.text.BMI_Read))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 160
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = BMI_Read ⇒ BSP_SPI_Receive ⇒ HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_SPI_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_SPI_Receive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   BSP_GPIO_WritePin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BSP_GPIO_WritePin
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BMI088_GyroStartDmaRecv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   BMI088_AcclStartDmaRecv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BMI088_GyroStartDmaRecv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BMI088_AcclStartDmaRecv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BMI_ReadSingle (Thumb, 108 bytes, Stack size 24 bytes, bmi088.o(.text.BMI_ReadSingle)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BMI_ReadSingle (Thumb, 108 bytes, Stack size 24 bytes, bmi088.o(.text.BMI_ReadSingle))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 168
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = BMI_ReadSingle ⇒ BSP_SPI_Receive ⇒ HAL_SPI_Receive ⇒ HAL_SPI_TransmitReceive ⇒ SPI_EndRxTxTransaction ⇒ SPI_WaitFlagStateUntilTimeout
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_TIME_Delay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_SPI_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_SPI_Receive -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   BSP_GPIO_WritePin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_TIME_Delay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_SPI_Receive +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_GPIO_WritePin
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BMI088_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BMI088_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BMI_WriteSingle (Thumb, 84 bytes, Stack size 16 bytes, bmi088.o(.text.BMI_WriteSingle)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BMI_WriteSingle (Thumb, 84 bytes, Stack size 16 bytes, bmi088.o(.text.BMI_WriteSingle))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = BMI_WriteSingle ⇒ BSP_TIME_Delay ⇒ osDelay ⇒ vTaskDelay ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_TIME_Delay -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_SPI_Transmit -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_GPIO_WritePin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_TIME_Delay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_SPI_Transmit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BSP_GPIO_WritePin
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   BMI088_Init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BMI088_Init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_RM_CreateCANManager (Thumb, 60 bytes, Stack size 16 bytes, motor_rm.o(.text.MOTOR_RM_CreateCANManager)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_RM_CreateCANManager (Thumb, 60 bytes, Stack size 16 bytes, motor_rm.o(.text.MOTOR_RM_CreateCANManager))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 136 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MOTOR_RM_CreateCANManager ⇒ BSP_Malloc ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_Malloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memclr4 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_Malloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memclr4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_RM_Register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Register
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MOTOR_RM_GetCANManager (Thumb, 20 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetCANManager)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Update -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_SetOutput -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Register -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_GetMotor -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_RM_Ctrl +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MOTOR_RM_GetCANManager (Thumb, 20 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetCANManager)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_SetOutput +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_Register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_GetMotor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_Ctrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MOTOR_RM_GetLSB (Thumb, 38 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetLSB)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_RM_SetOutput -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Motor_RM_Decode +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_RM_GetLSB (Thumb, 38 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetLSB)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_SetOutput +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Motor_RM_Decode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MOTOR_RM_GetLogicalIndex (Thumb, 40 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetLogicalIndex)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_RM_SetOutput +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MOTOR_RM_GetLogicalIndex (Thumb, 40 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetLogicalIndex)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_RM_SetOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MOTOR_RM_GetRatio (Thumb, 36 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetRatio)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Motor_RM_Decode +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MOTOR_RM_GetRatio (Thumb, 36 bytes, Stack size 0 bytes, motor_rm.o(.text.MOTOR_RM_GetRatio)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Motor_RM_Decode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Motor_RM_Decode (Thumb, 348 bytes, Stack size 32 bytes, motor_rm.o(.text.Motor_RM_Decode)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Motor_RM_Decode (Thumb, 348 bytes, Stack size 32 bytes, motor_rm.o(.text.Motor_RM_Decode))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = Motor_RM_Decode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_GetRatio -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_RM_GetLSB +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_GetRatio +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_GetLSB
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_RM_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_RM_Update
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_DM_CreateCANManager (Thumb, 60 bytes, Stack size 16 bytes, motor_dm.o(.text.MOTOR_DM_CreateCANManager)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MOTOR_DM_CreateCANManager (Thumb, 60 bytes, Stack size 16 bytes, motor_dm.o(.text.MOTOR_DM_CreateCANManager))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 136 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = MOTOR_DM_CreateCANManager ⇒ BSP_Malloc ⇒ pvPortMalloc ⇒ xTaskResumeAll ⇒ xTaskIncrementTick
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   BSP_Malloc -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memclr4 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   BSP_Malloc +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memclr4
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_Register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_Register
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MOTOR_DM_GetCANManager (Thumb, 20 bytes, Stack size 0 bytes, motor_dm.o(.text.MOTOR_DM_GetCANManager)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_Update -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_Register -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   MOTOR_DM_GetMotor +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MOTOR_DM_GetCANManager (Thumb, 20 bytes, Stack size 0 bytes, motor_dm.o(.text.MOTOR_DM_GetCANManager)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_Register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   MOTOR_DM_GetMotor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MOTOR_DM_ParseFeedbackFrame (Thumb, 248 bytes, Stack size 24 bytes, motor_dm.o(.text.MOTOR_DM_ParseFeedbackFrame)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MOTOR_DM_ParseFeedbackFrame (Thumb, 248 bytes, Stack size 24 bytes, motor_dm.o(.text.MOTOR_DM_ParseFeedbackFrame))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = MOTOR_DM_ParseFeedbackFrame
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   uint_to_float +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   uint_to_float
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   MOTOR_DM_Update +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   MOTOR_DM_Update
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MOTOR_DM_SendMITCmd (Thumb, 280 bytes, Stack size 64 bytes, motor_dm.o(.text.MOTOR_DM_SendMITCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MOTOR_DM_SendMITCmd (Thumb, 280 bytes, Stack size 64 bytes, motor_dm.o(.text.MOTOR_DM_SendMITCmd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 176
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = MOTOR_DM_SendMITCmd ⇒ BSP_CAN_TransmitStdDataFrame ⇒ BSP_CAN_Transmit ⇒ BSP_CAN_TxQueuePush
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   BSP_CAN_TransmitStdDataFrame -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   float_to_uint +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   BSP_CAN_TransmitStdDataFrame +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   float_to_uint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   MOTOR_DM_MITCtrl +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_DM_MITCtrl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              float_to_uint (Thumb, 44 bytes, Stack size 0 bytes, motor_dm.o(.text.float_to_uint)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   MOTOR_DM_SendMITCmd +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                float_to_uint (Thumb, 44 bytes, Stack size 0 bytes, motor_dm.o(.text.float_to_uint)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_SendMITCmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                uint_to_float (Thumb, 42 bytes, Stack size 0 bytes, motor_dm.o(.text.uint_to_float)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   MOTOR_DM_ParseFeedbackFrame +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  uint_to_float (Thumb, 42 bytes, Stack size 0 bytes, motor_dm.o(.text.uint_to_float)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   MOTOR_DM_ParseFeedbackFrame

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  REMOTE_RxCpltCallback (Thumb, 20 bytes, Stack size 8 bytes, et16s.o(.text.REMOTE_RxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = REMOTE_RxCpltCallback ⇒ osThreadFlagsSet ⇒ xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osThreadFlagsSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • et16s.o(.text.REMOTE_Init)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DR16_RxCpltCallback (Thumb, 20 bytes, Stack size 8 bytes, dr16.o(.text.DR16_RxCpltCallback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = DR16_RxCpltCallback ⇒ osThreadFlagsSet ⇒ xTaskGenericNotifyFromISR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   osThreadFlagsSet +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   osThreadFlagsSet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • dr16.o(.text.DR16_Init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gimbal_Direction (Thumb, 164 bytes, Stack size 0 bytes, gimbal.o(.text.Gimbal_Direction)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   Gimbal_UpdateIMU +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gimbal_Direction (Thumb, 164 bytes, Stack size 0 bytes, gimbal.o(.text.Gimbal_Direction)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   Gimbal_UpdateIMU
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gimbal_SetMode (Thumb, 136 bytes, Stack size 24 bytes, gimbal.o(.text.Gimbal_SetMode)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gimbal_SetMode (Thumb, 136 bytes, Stack size 24 bytes, gimbal.o(.text.Gimbal_SetMode))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = Gimbal_SetMode ⇒ PID_Reset ⇒ LowPassFilter2p_Reset ⇒ LowPassFilter2p_Apply
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   PID_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   LowPassFilter2p_Reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   AHRS_ResetEulr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   PID_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   LowPassFilter2p_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   AHRS_ResetEulr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   Gimbal_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            motor_imu_offset (Thumb, 68 bytes, Stack size 0 bytes, gimbal.o(.text.motor_imu_offset)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   Gimbal_Control +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              motor_imu_offset (Thumb, 68 bytes, Stack size 0 bytes, gimbal.o(.text.motor_imu_offset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Gimbal_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shoot_CaluCoupledWeight (Thumb, 124 bytes, Stack size 0 bytes, shoot.o(.text.Shoot_CaluCoupledWeight)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   Shoot_RunningFSM +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Chassis_CalcWz (Thumb, 108 bytes, Stack size 8 bytes, chassis.o(.text.Chassis_CalcWz)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 44
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = Chassis_CalcWz ⇒ __hardfp_sinf ⇒ __mathlib_rredf2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_d2f +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __hardfp_sinf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_f2d +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_dmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_Control
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CMD_PC_BuildChassisCmd (Thumb, 42 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_PC_BuildChassisCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Chassis_SetMode (Thumb, 120 bytes, Stack size 24 bytes, chassis.o(.text.Chassis_SetMode)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = Chassis_SetMode ⇒ PID_Reset ⇒ LowPassFilter2p_Reset ⇒ LowPassFilter2p_Apply +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   PID_Reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   srand +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   Chassis_Control +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CMD_PC_BuildChassisCmd (Thumb, 42 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_PC_BuildChassisCmd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = CMD_PC_BuildChassisCmd ⇒ CMD_Behavior_ProcessAll ⇒ CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   CMD_Behavior_ProcessAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   CMD_Behavior_ProcessAll

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • cmd_1.o(.data.sourceHandlers)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CMD_PC_BuildGimbalCmd (Thumb, 104 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_PC_BuildGimbalCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CMD_PC_BuildGimbalCmd (Thumb, 104 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_PC_BuildGimbalCmd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = CMD_PC_BuildGimbalCmd ⇒ CMD_Behavior_ProcessAll ⇒ CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   CMD_Behavior_ProcessAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   CMD_Behavior_ProcessAll

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • cmd_1.o(.data.sourceHandlers)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CMD_PC_BuildShootCmd (Thumb, 44 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_PC_BuildShootCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CMD_PC_BuildShootCmd (Thumb, 44 bytes, Stack size 8 bytes, cmd_1.o(.text.CMD_PC_BuildShootCmd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = CMD_PC_BuildShootCmd ⇒ CMD_Behavior_ProcessAll ⇒ CMD_Behavior_IsTriggered
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   CMD_Behavior_ProcessAll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   CMD_Behavior_ProcessAll

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • cmd_1.o(.data.sourceHandlers)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_RC_BuildChassisCmd (Thumb, 48 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_RC_BuildChassisCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_RC_BuildChassisCmd (Thumb, 58 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_RC_BuildChassisCmd))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • cmd_1.o(.data.sourceHandlers)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_RC_BuildGimbalCmd (Thumb, 72 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_RC_BuildGimbalCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_RC_BuildGimbalCmd (Thumb, 72 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_RC_BuildGimbalCmd))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • cmd_1.o(.data.sourceHandlers)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_RC_BuildShootCmd (Thumb, 94 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_RC_BuildShootCmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_RC_BuildShootCmd (Thumb, 94 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_RC_BuildShootCmd))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • cmd_1.o(.data.sourceHandlers)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CMD_SetOfflineMode (Thumb, 18 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_SetOfflineMode)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   CMD_GenerateCommands +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CMD_SetOfflineMode (Thumb, 18 bytes, Stack size 0 bytes, cmd_1.o(.text.CMD_SetOfflineMode)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   CMD_GenerateCommands
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _dadd1 (Thumb, 0 bytes, Stack size unknown bytes, daddsub_clz.o(x$fpl$dadd), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _dsub -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _drsb +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _dadd1 (Thumb, 0 bytes, Stack size unknown bytes, daddsub_clz.o(x$fpl$dadd), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _dsub +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _drsb
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _dsub1 (Thumb, 0 bytes, Stack size unknown bytes, daddsub_clz.o(x$fpl$dsub), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _drsb -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _dadd +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _dsub1 (Thumb, 0 bytes, Stack size unknown bytes, daddsub_clz.o(x$fpl$dsub), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _drsb +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _dadd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fp_digits (Thumb, 432 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fp_digits (Thumb, 432 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 220
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _fp_digits ⇒ _btod_etento ⇒ _btod_emul ⇒ _e2e
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_emul -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_ediv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_d2e -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_etento -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _ll_udiv10 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_emul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_ediv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_d2e +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_etento +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _ll_udiv10
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_fp_dec_real

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _printf_input_char (Thumb, 10 bytes, Stack size 0 bytes, _printf_char_common.o(.text)) diff --git a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.map b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.map index beeba87..51ff8e1 100644 --- a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.map +++ b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry.map @@ -26,7 +26,7 @@ Section Cross References startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.CAN1_RX0_IRQHandler) for CAN1_RX0_IRQHandler startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler) for CAN1_RX1_IRQHandler startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) for EXTI9_5_IRQHandler - startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) for TIM1_UP_TIM10_IRQHandler + startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) for TIM1_BRK_TIM9_IRQHandler startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.USART1_IRQHandler) for USART1_IRQHandler startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.USART3_IRQHandler) for USART3_IRQHandler startup_stm32f407xx.o(RESET) refers to stm32f4xx_it.o(.text.DMA2_Stream1_IRQHandler) for DMA2_Stream1_IRQHandler @@ -56,7 +56,7 @@ Section Cross References main.o(.text.main) refers to usart.o(.text.MX_USART3_UART_Init) for MX_USART3_UART_Init main.o(.text.main) refers to tim.o(.text.MX_TIM10_Init) for MX_TIM10_Init main.o(.text.main) refers to usart.o(.text.MX_USART6_UART_Init) for MX_USART6_UART_Init - main.o(.text.main) refers to tim.o(.text.MX_TIM8_Init) for MX_TIM8_Init + main.o(.text.main) refers to tim.o(.text.MX_TIM1_Init) for MX_TIM1_Init main.o(.text.main) refers to cmsis_os2.o(.text.osKernelInitialize) for osKernelInitialize main.o(.text.main) refers to freertos.o(.text.MX_FREERTOS_Init) for MX_FREERTOS_Init main.o(.text.main) refers to cmsis_os2.o(.text.osKernelStart) for osKernelStart @@ -131,16 +131,16 @@ Section Cross References spi.o(.text.HAL_SPI_MspDeInit) refers to stm32f4xx_hal_gpio.o(.text.HAL_GPIO_DeInit) for HAL_GPIO_DeInit spi.o(.text.HAL_SPI_MspDeInit) refers to stm32f4xx_hal_dma.o(.text.HAL_DMA_DeInit) for HAL_DMA_DeInit spi.o(.ARM.exidx.text.HAL_SPI_MspDeInit) refers to spi.o(.text.HAL_SPI_MspDeInit) for [Anonymous Symbol] - tim.o(.text.MX_TIM8_Init) refers to tim.o(.bss.htim8) for htim8 - tim.o(.text.MX_TIM8_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init) for HAL_TIM_Base_Init - tim.o(.text.MX_TIM8_Init) refers to main.o(.text.Error_Handler) for Error_Handler - tim.o(.text.MX_TIM8_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) for HAL_TIM_ConfigClockSource - tim.o(.text.MX_TIM8_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init) for HAL_TIM_PWM_Init - tim.o(.text.MX_TIM8_Init) refers to stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) for HAL_TIMEx_MasterConfigSynchronization - tim.o(.text.MX_TIM8_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) for HAL_TIM_PWM_ConfigChannel - tim.o(.text.MX_TIM8_Init) refers to stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) for HAL_TIMEx_ConfigBreakDeadTime - tim.o(.text.MX_TIM8_Init) refers to tim.o(.text.HAL_TIM_MspPostInit) for HAL_TIM_MspPostInit - tim.o(.ARM.exidx.text.MX_TIM8_Init) refers to tim.o(.text.MX_TIM8_Init) for [Anonymous Symbol] + tim.o(.text.MX_TIM1_Init) refers to tim.o(.bss.htim1) for htim1 + tim.o(.text.MX_TIM1_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init) for HAL_TIM_Base_Init + tim.o(.text.MX_TIM1_Init) refers to main.o(.text.Error_Handler) for Error_Handler + tim.o(.text.MX_TIM1_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) for HAL_TIM_ConfigClockSource + tim.o(.text.MX_TIM1_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init) for HAL_TIM_PWM_Init + tim.o(.text.MX_TIM1_Init) refers to stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) for HAL_TIMEx_MasterConfigSynchronization + tim.o(.text.MX_TIM1_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) for HAL_TIM_PWM_ConfigChannel + tim.o(.text.MX_TIM1_Init) refers to stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) for HAL_TIMEx_ConfigBreakDeadTime + tim.o(.text.MX_TIM1_Init) refers to tim.o(.text.HAL_TIM_MspPostInit) for HAL_TIM_MspPostInit + tim.o(.ARM.exidx.text.MX_TIM1_Init) refers to tim.o(.text.MX_TIM1_Init) for [Anonymous Symbol] tim.o(.text.HAL_TIM_MspPostInit) refers to stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init) for HAL_GPIO_Init tim.o(.ARM.exidx.text.HAL_TIM_MspPostInit) refers to tim.o(.text.HAL_TIM_MspPostInit) for [Anonymous Symbol] tim.o(.text.MX_TIM10_Init) refers to tim.o(.bss.htim10) for htim10 @@ -150,9 +150,11 @@ Section Cross References tim.o(.text.MX_TIM10_Init) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) for HAL_TIM_PWM_ConfigChannel tim.o(.text.MX_TIM10_Init) refers to tim.o(.text.HAL_TIM_MspPostInit) for HAL_TIM_MspPostInit tim.o(.ARM.exidx.text.MX_TIM10_Init) refers to tim.o(.text.MX_TIM10_Init) for [Anonymous Symbol] + tim.o(.text.HAL_TIM_Base_MspInit) refers to stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init) for HAL_GPIO_Init tim.o(.text.HAL_TIM_Base_MspInit) refers to stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority tim.o(.text.HAL_TIM_Base_MspInit) refers to stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ tim.o(.ARM.exidx.text.HAL_TIM_Base_MspInit) refers to tim.o(.text.HAL_TIM_Base_MspInit) for [Anonymous Symbol] + tim.o(.text.HAL_TIM_Base_MspDeInit) refers to stm32f4xx_hal_gpio.o(.text.HAL_GPIO_DeInit) for HAL_GPIO_DeInit tim.o(.text.HAL_TIM_Base_MspDeInit) refers to stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) for HAL_NVIC_DisableIRQ tim.o(.ARM.exidx.text.HAL_TIM_Base_MspDeInit) refers to tim.o(.text.HAL_TIM_Base_MspDeInit) for [Anonymous Symbol] usart.o(.text.MX_USART1_UART_Init) refers to usart.o(.bss.huart1) for huart1 @@ -214,9 +216,9 @@ Section Cross References stm32f4xx_it.o(.ARM.exidx.text.CAN1_RX1_IRQHandler) refers to stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler) for [Anonymous Symbol] stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) refers to stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) for HAL_GPIO_EXTI_IRQHandler stm32f4xx_it.o(.ARM.exidx.text.EXTI9_5_IRQHandler) refers to stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) for [Anonymous Symbol] - stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) refers to tim.o(.bss.htim10) for htim10 - stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler) for HAL_TIM_IRQHandler - stm32f4xx_it.o(.ARM.exidx.text.TIM1_UP_TIM10_IRQHandler) refers to stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) for [Anonymous Symbol] + stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) refers to tim.o(.bss.htim1) for htim1 + stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler) for HAL_TIM_IRQHandler + stm32f4xx_it.o(.ARM.exidx.text.TIM1_BRK_TIM9_IRQHandler) refers to stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) for [Anonymous Symbol] stm32f4xx_it.o(.text.USART1_IRQHandler) refers to usart.o(.bss.huart1) for huart1 stm32f4xx_it.o(.text.USART1_IRQHandler) refers to stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler) for HAL_UART_IRQHandler stm32f4xx_it.o(.text.USART1_IRQHandler) refers to uart.o(.text.BSP_UART_IRQHandler) for BSP_UART_IRQHandler @@ -3702,7 +3704,7 @@ Section Cross References pwm.o(.text.BSP_PWM_Stop_DMA) refers to pwm.o(.rodata.PWM_Map) for PWM_Map pwm.o(.text.BSP_PWM_Stop_DMA) refers to stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_DMA) for HAL_TIM_PWM_Stop_DMA pwm.o(.ARM.exidx.text.BSP_PWM_Stop_DMA) refers to pwm.o(.text.BSP_PWM_Stop_DMA) for [Anonymous Symbol] - pwm.o(.rodata.PWM_Map) refers to tim.o(.bss.htim8) for htim8 + pwm.o(.rodata.PWM_Map) refers to tim.o(.bss.htim1) for htim1 pwm.o(.rodata.PWM_Map) refers to tim.o(.bss.htim10) for htim10 ahrs.o(.text.AHRS_Init) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d ahrs.o(.text.AHRS_Init) refers to atan2.o(i.__hardfp_atan2) for __hardfp_atan2 @@ -4110,9 +4112,10 @@ Section Cross References motor_step.o(.text.Motor_Step_Init) refers to pwm.o(.text.BSP_PWM_Start) for BSP_PWM_Start motor_step.o(.ARM.exidx.text.Motor_Step_Init) refers to motor_step.o(.text.Motor_Step_Init) for [Anonymous Symbol] motor_step.o(.text.Motor_Step_Ctrl) refers to gpio_1.o(.text.BSP_GPIO_WritePin) for BSP_GPIO_WritePin - motor_step.o(.text.Motor_Step_Ctrl) refers to cmsis_os2.o(.text.osDelay) for osDelay motor_step.o(.text.Motor_Step_Ctrl) refers to pwm.o(.text.BSP_PWM_SetComp) for BSP_PWM_SetComp motor_step.o(.ARM.exidx.text.Motor_Step_Ctrl) refers to motor_step.o(.text.Motor_Step_Ctrl) for [Anonymous Symbol] + motor_step.o(.text.Motor_Step_Stop) refers to pwm.o(.text.BSP_PWM_Stop) for BSP_PWM_Stop + motor_step.o(.ARM.exidx.text.Motor_Step_Stop) refers to motor_step.o(.text.Motor_Step_Stop) for [Anonymous Symbol] motor_lz.o(.text.MOTOR_LZ_Init) refers to motor_lz.o(.text.MOTOR_LZ_IdParser) for MOTOR_LZ_IdParser motor_lz.o(.text.MOTOR_LZ_Init) refers to can_1.o(.text.BSP_CAN_RegisterIdParser) for BSP_CAN_RegisterIdParser motor_lz.o(.ARM.exidx.text.MOTOR_LZ_Init) refers to motor_lz.o(.text.MOTOR_LZ_Init) for [Anonymous Symbol] @@ -4515,23 +4518,24 @@ Section Cross References chassis.o(.text.Chassis_speed_calculate) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f chassis.o(.text.Chassis_speed_calculate) refers to daddsub_clz.o(x$fpl$dsub) for __aeabi_dsub chassis.o(.text.Chassis_speed_calculate) refers to atan2.o(i.__hardfp_atan2) for __hardfp_atan2 - chassis.o(.text.Chassis_speed_calculate) refers to pid.o(.text.PID_Calc) for PID_Calc chassis.o(.ARM.exidx.text.Chassis_speed_calculate) refers to chassis.o(.text.Chassis_speed_calculate) for [Anonymous Symbol] - chassis.o(.text.Chassis_update) refers to motor_rm.o(.text.MOTOR_RM_UpdateAll) for MOTOR_RM_UpdateAll + chassis.o(.text.Chassis_update) refers to motor_rm.o(.text.MOTOR_RM_Update) for MOTOR_RM_Update chassis.o(.text.Chassis_update) refers to motor_rm.o(.text.MOTOR_RM_GetMotor) for MOTOR_RM_GetMotor - chassis.o(.text.Chassis_update) refers to motor.o(.text.MOTOR_GetRotorAbsAngle) for MOTOR_GetRotorAbsAngle - chassis.o(.text.Chassis_update) refers to motor.o(.text.MOTOR_GetRotorSpeed) for MOTOR_GetRotorSpeed + chassis.o(.text.Chassis_update) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d + chassis.o(.text.Chassis_update) refers to fmod.o(i.__hardfp_fmod) for __hardfp_fmod + chassis.o(.text.Chassis_update) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f chassis.o(.text.Chassis_update) refers to chassis.o(.text.motor_add_anagle) for motor_add_anagle chassis.o(.ARM.exidx.text.Chassis_update) refers to chassis.o(.text.Chassis_update) for [Anonymous Symbol] chassis.o(.ARM.exidx.text.ChassisrolPrevent) refers to chassis.o(.text.ChassisrolPrevent) for [Anonymous Symbol] chassis.o(.text.Chassis_Control) refers to chassis.o(.text.Chassis_SetMode) for Chassis_SetMode - chassis.o(.text.Chassis_Control) refers to pid.o(.text.PID_Calc) for PID_Calc + chassis.o(.text.Chassis_Control) refers to cosf.o(i.__hardfp_cosf) for __hardfp_cosf + chassis.o(.text.Chassis_Control) refers to sinf.o(i.__hardfp_sinf) for __hardfp_sinf chassis.o(.text.Chassis_Control) refers to chassis.o(.text.Chassis_CalcWz) for Chassis_CalcWz + chassis.o(.text.Chassis_Control) refers to pid.o(.text.PID_Calc) for PID_Calc chassis.o(.text.Chassis_Control) refers to filter.o(.text.LowPassFilter2p_Apply) for LowPassFilter2p_Apply chassis.o(.text.Chassis_Control) refers to chassis.o(.text.Chassis_speed_calculate) for Chassis_speed_calculate chassis.o(.ARM.exidx.text.Chassis_Control) refers to chassis.o(.text.Chassis_Control) for [Anonymous Symbol] chassis.o(.text.Chassis_SetMode) refers to rand.o(.text) for srand - chassis.o(.text.Chassis_SetMode) refers to rand.o(.emb_text) for rand chassis.o(.text.Chassis_SetMode) refers to pid.o(.text.PID_Reset) for PID_Reset chassis.o(.ARM.exidx.text.Chassis_SetMode) refers to chassis.o(.text.Chassis_SetMode) for [Anonymous Symbol] chassis.o(.text.Chassis_CalcWz) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d @@ -4651,6 +4655,9 @@ Section Cross References chassis_ctrl.o(.text.Task_chassis_ctrl) refers to user_task.o(.bss.task_runtime) for task_runtime chassis_ctrl.o(.text.Task_chassis_ctrl) refers to chassis_ctrl.o(.bss.cmd_chassis) for cmd_chassis chassis_ctrl.o(.text.Task_chassis_ctrl) refers to cmsis_os2.o(.text.osMessageQueueGet) for osMessageQueueGet + chassis_ctrl.o(.text.Task_chassis_ctrl) refers to chassis.o(.text.Chassis_update) for Chassis_update + chassis_ctrl.o(.text.Task_chassis_ctrl) refers to chassis.o(.text.Chassis_Control) for Chassis_Control + chassis_ctrl.o(.text.Task_chassis_ctrl) refers to chassis.o(.text.Chassis_Setoutput) for Chassis_Setoutput chassis_ctrl.o(.text.Task_chassis_ctrl) refers to cmsis_os2.o(.text.osDelayUntil) for osDelayUntil chassis_ctrl.o(.ARM.exidx.text.Task_chassis_ctrl) refers to chassis_ctrl.o(.text.Task_chassis_ctrl) for [Anonymous Symbol] shoot_ctrl.o(.text.Task_shoot_ctrl) refers to cmsis_os2.o(.text.osKernelGetTickFreq) for osKernelGetTickFreq @@ -4667,7 +4674,6 @@ Section Cross References shoot_ctrl.o(.text.Task_shoot_ctrl) refers to shoot_ctrl.o(.bss.shoot_cmd) for shoot_cmd shoot_ctrl.o(.text.Task_shoot_ctrl) refers to cmsis_os2.o(.text.osMessageQueueGet) for osMessageQueueGet shoot_ctrl.o(.text.Task_shoot_ctrl) refers to shoot.o(.text.Shoot_UpdateFeedback) for Shoot_UpdateFeedback - shoot_ctrl.o(.text.Task_shoot_ctrl) refers to shoot.o(.text.Shoot_Control) for Shoot_Control shoot_ctrl.o(.text.Task_shoot_ctrl) refers to cmsis_os2.o(.text.osDelayUntil) for osDelayUntil shoot_ctrl.o(.ARM.exidx.text.Task_shoot_ctrl) refers to shoot_ctrl.o(.text.Task_shoot_ctrl) for [Anonymous Symbol] et16s_1.o(.text.Task_ET16s) refers to cmsis_os2.o(.text.osKernelGetTickFreq) for osKernelGetTickFreq @@ -4695,10 +4701,6 @@ Section Cross References step_motor_1.o(.text.Task_step_motor) refers to cmsis_os2.o(.text.osKernelGetTickCount) for osKernelGetTickCount step_motor_1.o(.text.Task_step_motor) refers to step_motor_1.o(.data.StepMotor_param) for StepMotor_param step_motor_1.o(.text.Task_step_motor) refers to motor_step.o(.text.Motor_Step_Init) for Motor_Step_Init - step_motor_1.o(.text.Task_step_motor) refers to user_task.o(.bss.task_runtime) for task_runtime - step_motor_1.o(.text.Task_step_motor) refers to step_motor_1.o(.bss.Key_A) for Key_A - step_motor_1.o(.text.Task_step_motor) refers to cmsis_os2.o(.text.osMessageQueueGet) for osMessageQueueGet - step_motor_1.o(.text.Task_step_motor) refers to motor_step.o(.text.Motor_Step_Ctrl) for Motor_Step_Ctrl step_motor_1.o(.text.Task_step_motor) refers to cmsis_os2.o(.text.osDelayUntil) for osDelayUntil step_motor_1.o(.ARM.exidx.text.Task_step_motor) refers to step_motor_1.o(.text.Task_step_motor) for [Anonymous Symbol] init.o(.text.Task_Init) refers to cmsis_os2.o(.text.osKernelLock) for osKernelLock @@ -4958,6 +4960,15 @@ Section Cross References cosf.o(i.__softfp_cosf) refers to cosf.o(i.__hardfp_cosf) for __hardfp_cosf cosf.o(i.cosf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp cosf.o(i.cosf) refers to cosf.o(i.__hardfp_cosf) for __hardfp_cosf + fmod.o(i.__hardfp_fmod) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp + fmod.o(i.__hardfp_fmod) refers to drem_clz.o(x$fpl$drem) for _drem + fmod.o(i.__hardfp_fmod) refers to daddsub_clz.o(x$fpl$drsb) for __aeabi_drsub + fmod.o(i.__hardfp_fmod) refers to _rserrno.o(.text) for __set_errno + fmod.o(i.__hardfp_fmod) refers to dunder.o(i.__mathlib_dbl_invalid) for __mathlib_dbl_invalid + fmod.o(i.__softfp_fmod) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp + fmod.o(i.__softfp_fmod) refers to fmod.o(i.__hardfp_fmod) for __hardfp_fmod + fmod.o(i.fmod) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp + fmod.o(i.fmod) refers to fmod.o(i.__hardfp_fmod) for __hardfp_fmod sinf.o(i.__hardfp_sinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp sinf.o(i.__hardfp_sinf) refers to rredf.o(i.__mathlib_rredf2) for __mathlib_rredf2 sinf.o(i.__hardfp_sinf) refers to fpclassifyf.o(i.__ARM_fpclassifyf) for __ARM_fpclassifyf @@ -5037,6 +5048,8 @@ Section Cross References dleqf.o(x$fpl$dleqf) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf dleqf.o(x$fpl$dleqf) refers to dcmpi.o(x$fpl$dcmpinf) for __fpl_dcmp_Inf dnaninf.o(x$fpl$dnaninf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp + drem_clz.o(x$fpl$drem) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp + drem_clz.o(x$fpl$drem) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf dretinf.o(x$fpl$dretinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp dsqrt_umaal.o(x$fpl$dsqrt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp dsqrt_umaal.o(x$fpl$dsqrt) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf @@ -5242,7 +5255,7 @@ Removing Unused input sections from the image. Removing can.o(.ARM.exidx.text.MX_CAN1_Init), (8 bytes). Removing can.o(.ARM.exidx.text.MX_CAN2_Init), (8 bytes). Removing can.o(.ARM.exidx.text.HAL_CAN_MspInit), (8 bytes). - Removing can.o(.text.HAL_CAN_MspDeInit), (168 bytes). + Removing can.o(.text.HAL_CAN_MspDeInit), (166 bytes). Removing can.o(.ARM.exidx.text.HAL_CAN_MspDeInit), (8 bytes). Removing dma.o(.text), (0 bytes). Removing dma.o(.ARM.exidx.text.MX_DMA_Init), (8 bytes). @@ -5258,11 +5271,11 @@ Removing Unused input sections from the image. Removing spi.o(.text.HAL_SPI_MspDeInit), (70 bytes). Removing spi.o(.ARM.exidx.text.HAL_SPI_MspDeInit), (8 bytes). Removing tim.o(.text), (0 bytes). - Removing tim.o(.ARM.exidx.text.MX_TIM8_Init), (8 bytes). + Removing tim.o(.ARM.exidx.text.MX_TIM1_Init), (8 bytes). Removing tim.o(.ARM.exidx.text.HAL_TIM_MspPostInit), (8 bytes). Removing tim.o(.ARM.exidx.text.MX_TIM10_Init), (8 bytes). Removing tim.o(.ARM.exidx.text.HAL_TIM_Base_MspInit), (8 bytes). - Removing tim.o(.text.HAL_TIM_Base_MspDeInit), (72 bytes). + Removing tim.o(.text.HAL_TIM_Base_MspDeInit), (86 bytes). Removing tim.o(.ARM.exidx.text.HAL_TIM_Base_MspDeInit), (8 bytes). Removing usart.o(.text), (0 bytes). Removing usart.o(.ARM.exidx.text.MX_USART1_UART_Init), (8 bytes). @@ -5288,7 +5301,7 @@ Removing Unused input sections from the image. Removing stm32f4xx_it.o(.ARM.exidx.text.CAN1_RX0_IRQHandler), (8 bytes). Removing stm32f4xx_it.o(.ARM.exidx.text.CAN1_RX1_IRQHandler), (8 bytes). Removing stm32f4xx_it.o(.ARM.exidx.text.EXTI9_5_IRQHandler), (8 bytes). - Removing stm32f4xx_it.o(.ARM.exidx.text.TIM1_UP_TIM10_IRQHandler), (8 bytes). + Removing stm32f4xx_it.o(.ARM.exidx.text.TIM1_BRK_TIM9_IRQHandler), (8 bytes). Removing stm32f4xx_it.o(.ARM.exidx.text.USART1_IRQHandler), (8 bytes). Removing stm32f4xx_it.o(.ARM.exidx.text.USART3_IRQHandler), (8 bytes). Removing stm32f4xx_it.o(.ARM.exidx.text.DMA2_Stream1_IRQHandler), (8 bytes). @@ -7090,6 +7103,7 @@ Removing Unused input sections from the image. Removing pid.o(.ARM.exidx.text.__ARM_isfinitef), (8 bytes). Removing pid.o(.ARM.exidx.text.PID_Reset), (8 bytes). Removing pid.o(.ARM.exidx.text.PID_Calc), (8 bytes). + Removing pid.o(.text.PID_ResetIntegral), (14 bytes). Removing pid.o(.ARM.exidx.text.PID_ResetIntegral), (8 bytes). Removing ui.o(.text), (0 bytes). Removing ui.o(.text.UI_DrawLine), (144 bytes). @@ -7127,6 +7141,7 @@ Removing Unused input sections from the image. Removing user_math.o(.ARM.exidx.text.CircleReverse), (8 bytes). Removing user_math.o(.text.CalculateRpm), (176 bytes). Removing user_math.o(.ARM.exidx.text.CalculateRpm), (8 bytes). + Removing user_math.o(.text.ScaleSumTo1), (54 bytes). Removing user_math.o(.ARM.exidx.text.ScaleSumTo1), (8 bytes). Removing bsp_rc.o(.text), (0 bytes). Removing bsp_rc.o(.text.RC_Init), (98 bytes). @@ -7221,6 +7236,7 @@ Removing Unused input sections from the image. Removing motor_rm.o(.ARM.exidx.text.MOTOR_RM_GetLogicalIndex), (8 bytes). Removing motor_rm.o(.ARM.exidx.text.MOTOR_RM_GetLSB), (8 bytes). Removing motor_rm.o(.ARM.exidx.text.MOTOR_RM_Ctrl), (8 bytes). + Removing motor_rm.o(.text.MOTOR_RM_Relax), (16 bytes). Removing motor_rm.o(.ARM.exidx.text.MOTOR_RM_Relax), (8 bytes). Removing motor_rm.o(.text.MOTOR_RM_Offine), (20 bytes). Removing motor_rm.o(.ARM.exidx.text.MOTOR_RM_Offine), (8 bytes). @@ -7253,7 +7269,10 @@ Removing Unused input sections from the image. Removing motor_dm.o(.ARM.exidx.text.float_to_uint), (8 bytes). Removing motor_step.o(.text), (0 bytes). Removing motor_step.o(.ARM.exidx.text.Motor_Step_Init), (8 bytes). + Removing motor_step.o(.text.Motor_Step_Ctrl), (60 bytes). Removing motor_step.o(.ARM.exidx.text.Motor_Step_Ctrl), (8 bytes). + Removing motor_step.o(.text.Motor_Step_Stop), (12 bytes). + Removing motor_step.o(.ARM.exidx.text.Motor_Step_Stop), (8 bytes). Removing motor_lz.o(.text), (0 bytes). Removing motor_lz.o(.text.MOTOR_LZ_Init), (24 bytes). Removing motor_lz.o(.ARM.exidx.text.MOTOR_LZ_Init), (8 bytes). @@ -7429,37 +7448,39 @@ Removing Unused input sections from the image. Removing gimbal.o(.ARM.exidx.text.Gimbal_Output), (8 bytes). Removing shoot.o(.text), (0 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_SetMode), (8 bytes). + Removing shoot.o(.text.Shoot_ResetIntegral), (70 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_ResetIntegral), (8 bytes). + Removing shoot.o(.text.Shoot_ResetCalu), (152 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_ResetCalu), (8 bytes). + Removing shoot.o(.text.Shoot_ResetOutput), (50 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_ResetOutput), (8 bytes). + Removing shoot.o(.text.Shoot_CaluTargetRPM), (44 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_CaluTargetRPM), (8 bytes). + Removing shoot.o(.text.Shoot_CaluTargetAngle), (160 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_CaluTargetAngle), (8 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_UpdateFeedback), (8 bytes). + Removing shoot.o(.text.Shoot_RunningFSM), (1264 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_RunningFSM), (8 bytes). + Removing shoot.o(.text.Shoot_CaluCoupledWeight), (124 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_CaluCoupledWeight), (8 bytes). + Removing shoot.o(.text.Shoot_JamDetectionFSM), (304 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_JamDetectionFSM), (8 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_Init), (8 bytes). + Removing shoot.o(.text.Shoot_Control), (108 bytes). Removing shoot.o(.ARM.exidx.text.Shoot_Control), (8 bytes). + Removing shoot.o(.bss.Shoot_RunningFSM.pos), (4 bytes). + Removing shoot.o(.bss.last_firecmd), (1 bytes). Removing chassis.o(.text), (0 bytes). - Removing chassis.o(.text.motor_add_anagle), (104 bytes). Removing chassis.o(.ARM.exidx.text.motor_add_anagle), (8 bytes). Removing chassis.o(.ARM.exidx.text.chassis_init), (8 bytes). - Removing chassis.o(.text.Chassis_speed_calculate), (1676 bytes). Removing chassis.o(.ARM.exidx.text.Chassis_speed_calculate), (8 bytes). - Removing chassis.o(.text.Chassis_update), (120 bytes). Removing chassis.o(.ARM.exidx.text.Chassis_update), (8 bytes). Removing chassis.o(.text.ChassisrolPrevent), (2 bytes). Removing chassis.o(.ARM.exidx.text.ChassisrolPrevent), (8 bytes). - Removing chassis.o(.text.Chassis_Control), (492 bytes). Removing chassis.o(.ARM.exidx.text.Chassis_Control), (8 bytes). - Removing chassis.o(.text.Chassis_SetMode), (114 bytes). Removing chassis.o(.ARM.exidx.text.Chassis_SetMode), (8 bytes). - Removing chassis.o(.text.Chassis_CalcWz), (108 bytes). Removing chassis.o(.ARM.exidx.text.Chassis_CalcWz), (8 bytes). - Removing chassis.o(.text.Chassis_Setoutput), (134 bytes). Removing chassis.o(.ARM.exidx.text.Chassis_Setoutput), (8 bytes). - Removing chassis.o(.bss.motor_add_anagle.cirle), (4 bytes). - Removing chassis.o(.bss.motor_add_anagle.prev_angle), (4 bytes). Removing ai_1.o(.text), (0 bytes). Removing ai_1.o(.ARM.exidx.text.Task_ai), (8 bytes). Removing cmd.o(.text), (0 bytes). @@ -7530,7 +7551,7 @@ Removing Unused input sections from the image. Removing cmd_behavior.o(.ARM.exidx.text.CMD_Behavior_GetConfig), (8 bytes). Removing cmd_example.o(.text), (0 bytes). -2304 unused section(s) (total 88024 bytes) removed from the image. +2312 unused section(s) (total 87725 bytes) removed from the image. ============================================================================== @@ -7665,6 +7686,7 @@ Image Symbol Table ../fplib/dleqf.s 0x00000000 Number 0 dleqf.o ABSOLUTE ../fplib/dmul.s 0x00000000 Number 0 dmul.o ABSOLUTE ../fplib/dnaninf.s 0x00000000 Number 0 dnaninf.o ABSOLUTE + ../fplib/drem.s 0x00000000 Number 0 drem_clz.o ABSOLUTE ../fplib/dretinf.s 0x00000000 Number 0 dretinf.o ABSOLUTE ../fplib/dsqrt.s 0x00000000 Number 0 dsqrt_umaal.o ABSOLUTE ../fplib/f2d.s 0x00000000 Number 0 f2d.o ABSOLUTE @@ -7682,6 +7704,7 @@ Image Symbol Table ../mathlib/cosf.c 0x00000000 Number 0 cosf.o ABSOLUTE ../mathlib/dunder.c 0x00000000 Number 0 dunder.o ABSOLUTE ../mathlib/fabs.c 0x00000000 Number 0 fabs.o ABSOLUTE + ../mathlib/fmod.c 0x00000000 Number 0 fmod.o ABSOLUTE ../mathlib/fpclassify.c 0x00000000 Number 0 fpclassify.o ABSOLUTE ../mathlib/fpclassifyf.c 0x00000000 Number 0 fpclassifyf.o ABSOLUTE ../mathlib/funder.c 0x00000000 Number 0 funder.o ABSOLUTE @@ -7810,948 +7833,955 @@ Image Symbol Table .ARM.Collect$$libinit$$00000004 0x0800027a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000004) .ARM.Collect$$libinit$$0000000A 0x0800027a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A) .ARM.Collect$$libinit$$0000000C 0x0800027a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C) - .ARM.Collect$$libinit$$0000000E 0x0800027a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000E) - .ARM.Collect$$libinit$$0000000F 0x0800027a Section 6 libinit2.o(.ARM.Collect$$libinit$$0000000F) - .ARM.Collect$$libinit$$00000011 0x08000280 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011) - .ARM.Collect$$libinit$$00000013 0x08000280 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013) - .ARM.Collect$$libinit$$00000015 0x08000280 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015) - .ARM.Collect$$libinit$$00000016 0x08000280 Section 10 libinit2.o(.ARM.Collect$$libinit$$00000016) - .ARM.Collect$$libinit$$00000017 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017) - .ARM.Collect$$libinit$$00000019 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019) - .ARM.Collect$$libinit$$0000001B 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B) - .ARM.Collect$$libinit$$0000001D 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D) - .ARM.Collect$$libinit$$0000001F 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F) - .ARM.Collect$$libinit$$00000021 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021) - .ARM.Collect$$libinit$$00000023 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023) - .ARM.Collect$$libinit$$00000025 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000025) - .ARM.Collect$$libinit$$0000002C 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C) - .ARM.Collect$$libinit$$0000002E 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E) - .ARM.Collect$$libinit$$00000030 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030) - .ARM.Collect$$libinit$$00000032 0x0800028a Section 0 libinit2.o(.ARM.Collect$$libinit$$00000032) - .ARM.Collect$$libinit$$00000033 0x0800028a Section 2 libinit2.o(.ARM.Collect$$libinit$$00000033) - .ARM.Collect$$libshutdown$$00000000 0x0800028c Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000) - .ARM.Collect$$libshutdown$$00000002 0x0800028e Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) - .ARM.Collect$$libshutdown$$00000004 0x0800028e Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) - .ARM.Collect$$libshutdown$$00000007 0x0800028e Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) - .ARM.Collect$$libshutdown$$0000000A 0x0800028e Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) - .ARM.Collect$$libshutdown$$0000000C 0x0800028e Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) - .ARM.Collect$$libshutdown$$0000000F 0x0800028e Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) - .ARM.Collect$$libshutdown$$00000010 0x0800028e Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) - .ARM.Collect$$rtentry$$00000000 0x08000290 Section 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000) - .ARM.Collect$$rtentry$$00000002 0x08000290 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002) - .ARM.Collect$$rtentry$$00000004 0x08000290 Section 6 __rtentry4.o(.ARM.Collect$$rtentry$$00000004) - .ARM.Collect$$rtentry$$00000009 0x08000296 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009) - .ARM.Collect$$rtentry$$0000000A 0x08000296 Section 4 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) - .ARM.Collect$$rtentry$$0000000C 0x0800029a Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) - .ARM.Collect$$rtentry$$0000000D 0x0800029a Section 8 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) - .ARM.Collect$$rtexit$$00000000 0x080002a2 Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000) - .ARM.Collect$$rtexit$$00000002 0x080002a4 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002) - .ARM.Collect$$rtexit$$00000003 0x080002a4 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003) - .ARM.Collect$$rtexit$$00000004 0x080002a8 Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004) - $v0 0x080002b0 Number 0 startup_stm32f407xx.o(.text) - .text 0x080002b0 Section 64 startup_stm32f407xx.o(.text) - .text 0x080002f0 Section 240 lludivv7m.o(.text) - .text 0x080003e0 Section 0 __2sprintf.o(.text) - .text 0x0800040c Section 0 __2snprintf.o(.text) - .text 0x08000444 Section 0 _printf_str.o(.text) - .text 0x08000498 Section 0 _printf_dec.o(.text) - .text 0x08000510 Section 0 __printf_wp.o(.text) - .text 0x0800061e Section 0 strlen.o(.text) - .text 0x0800065c Section 138 rt_memcpy_v6.o(.text) - .text 0x080006e6 Section 100 rt_memcpy_w.o(.text) - .text 0x0800074a Section 16 aeabi_memset4.o(.text) - .text 0x0800075a Section 78 rt_memclr_w.o(.text) - .text 0x080007a8 Section 0 heapauxi.o(.text) - .text 0x080007ae Section 0 _rserrno.o(.text) - .text 0x080007c4 Section 0 _printf_intcommon.o(.text) - _fp_digits 0x08000877 Thumb Code 432 _printf_fp_dec.o(.text) - .text 0x08000876 Section 0 _printf_fp_dec.o(.text) - _printf_input_char 0x08000c95 Thumb Code 10 _printf_char_common.o(.text) - .text 0x08000c94 Section 0 _printf_char_common.o(.text) - .text 0x08000cc4 Section 0 _sputc.o(.text) - .text 0x08000cce Section 0 _snputc.o(.text) - .text 0x08000cde Section 0 _printf_char.o(.text) - .text 0x08000d0c Section 8 rt_locale_intlibspace.o(.text) - .text 0x08000d14 Section 8 rt_errno_addr_intlibspace.o(.text) - .text 0x08000d1c Section 138 lludiv10.o(.text) - .text 0x08000da8 Section 0 _printf_fp_infnan.o(.text) - .text 0x08000e28 Section 0 bigflt0.o(.text) - .text 0x08000f0c Section 8 libspace.o(.text) - .text 0x08000f14 Section 74 sys_stackheap_outer.o(.text) - .text 0x08000f5e Section 0 exit.o(.text) - .text 0x08000f70 Section 124 strcmpv7em.o(.text) - .text 0x08000fec Section 0 sys_exit.o(.text) - .text 0x08000ff8 Section 2 use_no_semi.o(.text) - .text 0x08000ffa Section 0 indicate_semi.o(.text) - [Anonymous Symbol] 0x08000ffc Section 0 ahrs.o(.text.AHRS_GetEulr) - [Anonymous Symbol] 0x080010d8 Section 0 ahrs.o(.text.AHRS_Init) - [Anonymous Symbol] 0x0800125c Section 0 ahrs.o(.text.AHRS_ResetEulr) - [Anonymous Symbol] 0x08001268 Section 0 ahrs.o(.text.AHRS_Update) - AHRS_UpdateIMU 0x080017f9 Thumb Code 752 ahrs.o(.text.AHRS_UpdateIMU) - [Anonymous Symbol] 0x080017f8 Section 0 ahrs.o(.text.AHRS_UpdateIMU) - [Anonymous Symbol] 0x08001ae8 Section 0 user_math.o(.text.AbsClip) - BMI088_AcclIntCallback 0x08001b0d Thumb Code 20 bmi088.o(.text.BMI088_AcclIntCallback) - [Anonymous Symbol] 0x08001b0c Section 0 bmi088.o(.text.BMI088_AcclIntCallback) - [Anonymous Symbol] 0x08001b20 Section 0 bmi088.o(.text.BMI088_AcclStartDmaRecv) - [Anonymous Symbol] 0x08001b38 Section 0 bmi088.o(.text.BMI088_AcclWaitDmaCplt) - [Anonymous Symbol] 0x08001b48 Section 0 bmi088.o(.text.BMI088_GetUpdateFreq) - BMI088_GyroIntCallback 0x08001b55 Thumb Code 20 bmi088.o(.text.BMI088_GyroIntCallback) - [Anonymous Symbol] 0x08001b54 Section 0 bmi088.o(.text.BMI088_GyroIntCallback) - [Anonymous Symbol] 0x08001b68 Section 0 bmi088.o(.text.BMI088_GyroStartDmaRecv) - [Anonymous Symbol] 0x08001b84 Section 0 bmi088.o(.text.BMI088_GyroWaitDmaCplt) - [Anonymous Symbol] 0x08001b94 Section 0 bmi088.o(.text.BMI088_Init) - [Anonymous Symbol] 0x08001cd8 Section 0 bmi088.o(.text.BMI088_ParseAccl) - [Anonymous Symbol] 0x08001d6c Section 0 bmi088.o(.text.BMI088_ParseGyro) - BMI088_RxCpltCallback 0x08001df1 Thumb Code 64 bmi088.o(.text.BMI088_RxCpltCallback) - [Anonymous Symbol] 0x08001df0 Section 0 bmi088.o(.text.BMI088_RxCpltCallback) - [Anonymous Symbol] 0x08001e30 Section 0 bmi088.o(.text.BMI088_WaitNew) - BMI_Read 0x08001e41 Thumb Code 74 bmi088.o(.text.BMI_Read) - [Anonymous Symbol] 0x08001e40 Section 0 bmi088.o(.text.BMI_Read) - BMI_ReadSingle 0x08001e8d Thumb Code 108 bmi088.o(.text.BMI_ReadSingle) - [Anonymous Symbol] 0x08001e8c Section 0 bmi088.o(.text.BMI_ReadSingle) - BMI_WriteSingle 0x08001ef9 Thumb Code 84 bmi088.o(.text.BMI_WriteSingle) - [Anonymous Symbol] 0x08001ef8 Section 0 bmi088.o(.text.BMI_WriteSingle) - BSP_CAN_CreateIdQueue 0x08001f4d Thumb Code 146 can_1.o(.text.BSP_CAN_CreateIdQueue) - [Anonymous Symbol] 0x08001f4c Section 0 can_1.o(.text.BSP_CAN_CreateIdQueue) - BSP_CAN_DefaultIdParser 0x08001fe1 Thumb Code 2 can_1.o(.text.BSP_CAN_DefaultIdParser) - [Anonymous Symbol] 0x08001fe0 Section 0 can_1.o(.text.BSP_CAN_DefaultIdParser) - BSP_CAN_FindQueue 0x08001fe5 Thumb Code 38 can_1.o(.text.BSP_CAN_FindQueue) - [Anonymous Symbol] 0x08001fe4 Section 0 can_1.o(.text.BSP_CAN_FindQueue) - BSP_CAN_GetFrameType 0x0800200d Thumb Code 26 can_1.o(.text.BSP_CAN_GetFrameType) - [Anonymous Symbol] 0x0800200c Section 0 can_1.o(.text.BSP_CAN_GetFrameType) - [Anonymous Symbol] 0x08002028 Section 0 can_1.o(.text.BSP_CAN_GetHandle) - [Anonymous Symbol] 0x08002050 Section 0 can_1.o(.text.BSP_CAN_GetMessage) - [Anonymous Symbol] 0x080020d0 Section 0 can_1.o(.text.BSP_CAN_Init) - [Anonymous Symbol] 0x08002204 Section 0 can_1.o(.text.BSP_CAN_ParseId) - [Anonymous Symbol] 0x08002218 Section 0 can_1.o(.text.BSP_CAN_RegisterCallback) - [Anonymous Symbol] 0x0800225c Section 0 can_1.o(.text.BSP_CAN_RegisterId) - BSP_CAN_RxFifo0Callback 0x0800227d Thumb Code 194 can_1.o(.text.BSP_CAN_RxFifo0Callback) - [Anonymous Symbol] 0x0800227c Section 0 can_1.o(.text.BSP_CAN_RxFifo0Callback) - BSP_CAN_RxFifo1Callback 0x08002341 Thumb Code 194 can_1.o(.text.BSP_CAN_RxFifo1Callback) - [Anonymous Symbol] 0x08002340 Section 0 can_1.o(.text.BSP_CAN_RxFifo1Callback) - [Anonymous Symbol] 0x08002404 Section 0 can_1.o(.text.BSP_CAN_Transmit) - [Anonymous Symbol] 0x080024e8 Section 0 can_1.o(.text.BSP_CAN_TransmitStdDataFrame) - BSP_CAN_TxCompleteCallback 0x08002511 Thumb Code 100 can_1.o(.text.BSP_CAN_TxCompleteCallback) - [Anonymous Symbol] 0x08002510 Section 0 can_1.o(.text.BSP_CAN_TxCompleteCallback) - BSP_CAN_TxQueueInit 0x08002575 Thumb Code 28 can_1.o(.text.BSP_CAN_TxQueueInit) - [Anonymous Symbol] 0x08002574 Section 0 can_1.o(.text.BSP_CAN_TxQueueInit) - BSP_CAN_TxQueueIsEmpty 0x08002591 Thumb Code 34 can_1.o(.text.BSP_CAN_TxQueueIsEmpty) - [Anonymous Symbol] 0x08002590 Section 0 can_1.o(.text.BSP_CAN_TxQueueIsEmpty) - BSP_CAN_TxQueuePop 0x080025b5 Thumb Code 116 can_1.o(.text.BSP_CAN_TxQueuePop) - [Anonymous Symbol] 0x080025b4 Section 0 can_1.o(.text.BSP_CAN_TxQueuePop) - BSP_CAN_TxQueuePush 0x08002629 Thumb Code 126 can_1.o(.text.BSP_CAN_TxQueuePush) - [Anonymous Symbol] 0x08002628 Section 0 can_1.o(.text.BSP_CAN_TxQueuePush) - [Anonymous Symbol] 0x080026a8 Section 0 mm.o(.text.BSP_Free) - [Anonymous Symbol] 0x080026b0 Section 0 gpio_1.o(.text.BSP_GPIO_DisableIRQ) - [Anonymous Symbol] 0x080026e4 Section 0 gpio_1.o(.text.BSP_GPIO_EnableIRQ) - [Anonymous Symbol] 0x08002718 Section 0 gpio_1.o(.text.BSP_GPIO_ReadPin) - [Anonymous Symbol] 0x08002744 Section 0 gpio_1.o(.text.BSP_GPIO_RegisterCallback) - [Anonymous Symbol] 0x08002790 Section 0 gpio_1.o(.text.BSP_GPIO_WritePin) - [Anonymous Symbol] 0x080027c0 Section 0 mm.o(.text.BSP_Malloc) - [Anonymous Symbol] 0x080027c8 Section 0 pwm.o(.text.BSP_PWM_SetComp) - [Anonymous Symbol] 0x0800283c Section 0 pwm.o(.text.BSP_PWM_Start) - [Anonymous Symbol] 0x08002868 Section 0 spi_1.o(.text.BSP_SPI_GetHandle) - [Anonymous Symbol] 0x0800287c Section 0 spi_1.o(.text.BSP_SPI_Receive) - [Anonymous Symbol] 0x080028b0 Section 0 spi_1.o(.text.BSP_SPI_RegisterCallback) - [Anonymous Symbol] 0x080028d0 Section 0 spi_1.o(.text.BSP_SPI_Transmit) - [Anonymous Symbol] 0x08002904 Section 0 time.o(.text.BSP_TIME_Delay_ms) - [Anonymous Symbol] 0x0800295c Section 0 time.o(.text.BSP_TIME_Get_us) - [Anonymous Symbol] 0x080029ac Section 0 uart.o(.text.BSP_UART_GetHandle) - [Anonymous Symbol] 0x080029cc Section 0 uart.o(.text.BSP_UART_IRQHandler) - [Anonymous Symbol] 0x08002a08 Section 0 uart.o(.text.BSP_UART_RegisterCallback) - [Anonymous Symbol] 0x08002a3c Section 0 uart.o(.text.BSP_UART_Transmit) - [Anonymous Symbol] 0x08002a7c Section 0 stm32f4xx_it.o(.text.BusFault_Handler) - [Anonymous Symbol] 0x08002a80 Section 0 stm32f4xx_it.o(.text.CAN1_RX0_IRQHandler) - [Anonymous Symbol] 0x08002a90 Section 0 stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler) - [Anonymous Symbol] 0x08002aa0 Section 0 stm32f4xx_it.o(.text.CAN1_TX_IRQHandler) - [Anonymous Symbol] 0x08002ab0 Section 0 stm32f4xx_it.o(.text.CAN2_RX0_IRQHandler) - [Anonymous Symbol] 0x08002ac0 Section 0 stm32f4xx_it.o(.text.CAN2_RX1_IRQHandler) - [Anonymous Symbol] 0x08002ad0 Section 0 stm32f4xx_it.o(.text.CAN2_TX_IRQHandler) - CAN_Get 0x08002ae1 Thumb Code 36 can_1.o(.text.CAN_Get) - [Anonymous Symbol] 0x08002ae0 Section 0 can_1.o(.text.CAN_Get) - [Anonymous Symbol] 0x08002b04 Section 0 cmd_adapter.o(.text.CMD_Adapter_GetInput) - [Anonymous Symbol] 0x08002b38 Section 0 cmd_adapter.o(.text.CMD_Adapter_InitAll) - [Anonymous Symbol] 0x08002b74 Section 0 cmd_adapter.o(.text.CMD_Adapter_Register) - [Anonymous Symbol] 0x08002b94 Section 0 cmd_1.o(.text.CMD_Arbitrate) - [Anonymous Symbol] 0x08002bf8 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_ACCELERATE) - [Anonymous Symbol] 0x08002c1c Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_AUTOAIM) - [Anonymous Symbol] 0x08002c20 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_BACK) - [Anonymous Symbol] 0x08002c38 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_CHECKSOURCERCPC) - [Anonymous Symbol] 0x08002c5c Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_DECELERATE) - [Anonymous Symbol] 0x08002c80 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE) - [Anonymous Symbol] 0x08002c8c Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE_MODE) - [Anonymous Symbol] 0x08002ca0 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_FORE) - [Anonymous Symbol] 0x08002cb8 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_LEFT) - [Anonymous Symbol] 0x08002cd0 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_RIGHT) - [Anonymous Symbol] 0x08002ce8 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_ROTOR) - [Anonymous Symbol] 0x08002cfc Section 0 cmd_behavior.o(.text.CMD_Behavior_Init) - [Anonymous Symbol] 0x08002d00 Section 0 cmd_behavior.o(.text.CMD_Behavior_IsTriggered) - [Anonymous Symbol] 0x08002dcc Section 0 cmd_behavior.o(.text.CMD_Behavior_ProcessAll) - [Anonymous Symbol] 0x08002e20 Section 0 cmd_adapter.o(.text.CMD_ET16s_GetInput) - [Anonymous Symbol] 0x08002f14 Section 0 cmd_adapter.o(.text.CMD_ET16s_Init) - [Anonymous Symbol] 0x08002f1c Section 0 cmd_adapter.o(.text.CMD_ET16s_IsOnline) - [Anonymous Symbol] 0x08002f24 Section 0 cmd_1.o(.text.CMD_GenerateCommands) - [Anonymous Symbol] 0x08002fbc Section 0 cmd_1.o(.text.CMD_Init) - CMD_PC_BuildChassisCmd 0x08002fe5 Thumb Code 42 cmd_1.o(.text.CMD_PC_BuildChassisCmd) - [Anonymous Symbol] 0x08002fe4 Section 0 cmd_1.o(.text.CMD_PC_BuildChassisCmd) - CMD_PC_BuildGimbalCmd 0x08003011 Thumb Code 104 cmd_1.o(.text.CMD_PC_BuildGimbalCmd) - [Anonymous Symbol] 0x08003010 Section 0 cmd_1.o(.text.CMD_PC_BuildGimbalCmd) - CMD_PC_BuildShootCmd 0x08003079 Thumb Code 44 cmd_1.o(.text.CMD_PC_BuildShootCmd) - [Anonymous Symbol] 0x08003078 Section 0 cmd_1.o(.text.CMD_PC_BuildShootCmd) - CMD_RC_BuildChassisCmd 0x080030a5 Thumb Code 48 cmd_1.o(.text.CMD_RC_BuildChassisCmd) - [Anonymous Symbol] 0x080030a4 Section 0 cmd_1.o(.text.CMD_RC_BuildChassisCmd) - CMD_RC_BuildGimbalCmd 0x080030d5 Thumb Code 72 cmd_1.o(.text.CMD_RC_BuildGimbalCmd) - [Anonymous Symbol] 0x080030d4 Section 0 cmd_1.o(.text.CMD_RC_BuildGimbalCmd) - CMD_RC_BuildShootCmd 0x0800311d Thumb Code 94 cmd_1.o(.text.CMD_RC_BuildShootCmd) - [Anonymous Symbol] 0x0800311c Section 0 cmd_1.o(.text.CMD_RC_BuildShootCmd) - CMD_SetOfflineMode 0x0800317d Thumb Code 18 cmd_1.o(.text.CMD_SetOfflineMode) - [Anonymous Symbol] 0x0800317c Section 0 cmd_1.o(.text.CMD_SetOfflineMode) - [Anonymous Symbol] 0x08003190 Section 0 cmd_1.o(.text.CMD_Update) - [Anonymous Symbol] 0x080031ac Section 0 cmd_1.o(.text.CMD_UpdateInput) - [Anonymous Symbol] 0x08003214 Section 0 user_math.o(.text.CircleAdd) - [Anonymous Symbol] 0x08003250 Section 0 user_math.o(.text.CircleError) - [Anonymous Symbol] 0x0800328c Section 0 user_math.o(.text.Clip) - [Anonymous Symbol] 0x080032b4 Section 0 config.o(.text.Config_GetRobotParam) - [Anonymous Symbol] 0x080032c0 Section 0 stm32f4xx_it.o(.text.DMA1_Stream1_IRQHandler) - [Anonymous Symbol] 0x080032d0 Section 0 stm32f4xx_it.o(.text.DMA2_Stream1_IRQHandler) - [Anonymous Symbol] 0x080032e0 Section 0 stm32f4xx_it.o(.text.DMA2_Stream2_IRQHandler) - [Anonymous Symbol] 0x080032f0 Section 0 stm32f4xx_it.o(.text.DMA2_Stream3_IRQHandler) - [Anonymous Symbol] 0x08003300 Section 0 stm32f4xx_it.o(.text.DMA2_Stream6_IRQHandler) - DMA_CalcBaseAndBitshift 0x08003311 Thumb Code 52 stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift) - [Anonymous Symbol] 0x08003310 Section 0 stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift) - DMA_CalcBaseAndBitshift.flagBitshiftOffset 0x08003344 Number 0 stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift) - DMA_CheckFifoParam 0x0800334d Thumb Code 80 stm32f4xx_hal_dma.o(.text.DMA_CheckFifoParam) - [Anonymous Symbol] 0x0800334c Section 0 stm32f4xx_hal_dma.o(.text.DMA_CheckFifoParam) - DMA_SetConfig 0x0800339d Thumb Code 48 stm32f4xx_hal_dma.o(.text.DMA_SetConfig) - [Anonymous Symbol] 0x0800339c Section 0 stm32f4xx_hal_dma.o(.text.DMA_SetConfig) - [Anonymous Symbol] 0x080033cc Section 0 dr16.o(.text.DR16_Init) - DR16_RxCpltCallback 0x08003415 Thumb Code 20 dr16.o(.text.DR16_RxCpltCallback) - [Anonymous Symbol] 0x08003414 Section 0 dr16.o(.text.DR16_RxCpltCallback) - [Anonymous Symbol] 0x08003428 Section 0 stm32f4xx_it.o(.text.DebugMon_Handler) - [Anonymous Symbol] 0x0800342c Section 0 et16s.o(.text.ET16S_ParseRC) - [Anonymous Symbol] 0x080034c0 Section 0 et16s.o(.text.ET16s_HandleOffline) - [Anonymous Symbol] 0x080034f8 Section 0 et16s.o(.text.ET16s_ParseRaw) - [Anonymous Symbol] 0x08003760 Section 0 stm32f4xx_it.o(.text.EXTI0_IRQHandler) - [Anonymous Symbol] 0x0800376c Section 0 stm32f4xx_it.o(.text.EXTI3_IRQHandler) - [Anonymous Symbol] 0x08003778 Section 0 stm32f4xx_it.o(.text.EXTI4_IRQHandler) - [Anonymous Symbol] 0x08003784 Section 0 stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) - [Anonymous Symbol] 0x08003790 Section 0 main.o(.text.Error_Handler) - [Anonymous Symbol] 0x08003798 Section 0 gimbal.o(.text.Gimbal_Control) - [Anonymous Symbol] 0x08003b38 Section 0 gimbal.o(.text.Gimbal_Control_mode) - Gimbal_Direction 0x08003b91 Thumb Code 164 gimbal.o(.text.Gimbal_Direction) - [Anonymous Symbol] 0x08003b90 Section 0 gimbal.o(.text.Gimbal_Direction) - [Anonymous Symbol] 0x08003c34 Section 0 gimbal.o(.text.Gimbal_Init) - [Anonymous Symbol] 0x08003d8c Section 0 gimbal.o(.text.Gimbal_Output) - Gimbal_SetMode 0x08003ea9 Thumb Code 136 gimbal.o(.text.Gimbal_SetMode) - [Anonymous Symbol] 0x08003ea8 Section 0 gimbal.o(.text.Gimbal_SetMode) - [Anonymous Symbol] 0x08003f30 Section 0 gimbal.o(.text.Gimbal_UpdateFeedback) - [Anonymous Symbol] 0x08004050 Section 0 gimbal.o(.text.Gimbal_UpdateIMU) - [Anonymous Symbol] 0x080040a0 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_ActivateNotification) - [Anonymous Symbol] 0x080040c8 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_AddTxMessage) - [Anonymous Symbol] 0x0800415c Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_ConfigFilter) - [Anonymous Symbol] 0x0800423c Section 0 can_1.o(.text.HAL_CAN_ErrorCallback) - [Anonymous Symbol] 0x08004260 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxFifoFillLevel) - [Anonymous Symbol] 0x08004280 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxMessage) - [Anonymous Symbol] 0x080043a4 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_GetTxMailboxesFreeLevel) - [Anonymous Symbol] 0x080043cc Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_IRQHandler) - [Anonymous Symbol] 0x08004608 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_Init) - [Anonymous Symbol] 0x080046fc Section 0 can.o(.text.HAL_CAN_MspInit) - [Anonymous Symbol] 0x08004848 Section 0 can_1.o(.text.HAL_CAN_RxFifo0FullCallback) - [Anonymous Symbol] 0x0800486c Section 0 can_1.o(.text.HAL_CAN_RxFifo0MsgPendingCallback) - [Anonymous Symbol] 0x08004890 Section 0 can_1.o(.text.HAL_CAN_RxFifo1FullCallback) - [Anonymous Symbol] 0x080048b4 Section 0 can_1.o(.text.HAL_CAN_RxFifo1MsgPendingCallback) - [Anonymous Symbol] 0x080048d8 Section 0 can_1.o(.text.HAL_CAN_SleepCallback) - [Anonymous Symbol] 0x080048fc Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_Start) - [Anonymous Symbol] 0x08004958 Section 0 can_1.o(.text.HAL_CAN_TxMailbox0AbortCallback) - [Anonymous Symbol] 0x0800497c Section 0 can_1.o(.text.HAL_CAN_TxMailbox0CompleteCallback) - [Anonymous Symbol] 0x080049a0 Section 0 can_1.o(.text.HAL_CAN_TxMailbox1AbortCallback) - [Anonymous Symbol] 0x080049c4 Section 0 can_1.o(.text.HAL_CAN_TxMailbox1CompleteCallback) - [Anonymous Symbol] 0x080049e8 Section 0 can_1.o(.text.HAL_CAN_TxMailbox2AbortCallback) - [Anonymous Symbol] 0x08004a0c Section 0 can_1.o(.text.HAL_CAN_TxMailbox2CompleteCallback) - [Anonymous Symbol] 0x08004a30 Section 0 can_1.o(.text.HAL_CAN_WakeUpFromRxMsgCallback) - [Anonymous Symbol] 0x08004a54 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort) - [Anonymous Symbol] 0x08004ad4 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort_IT) - [Anonymous Symbol] 0x08004af8 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_IRQHandler) - [Anonymous Symbol] 0x08004c84 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Init) - [Anonymous Symbol] 0x08004d54 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Start_IT) - [Anonymous Symbol] 0x08004db8 Section 0 stm32f4xx_hal.o(.text.HAL_Delay) - [Anonymous Symbol] 0x08004de0 Section 0 gpio_1.o(.text.HAL_GPIO_EXTI_Callback) - [Anonymous Symbol] 0x08004e0c Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) - [Anonymous Symbol] 0x08004e28 Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init) - [Anonymous Symbol] 0x08004fc4 Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) - [Anonymous Symbol] 0x08004fd0 Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_WritePin) - [Anonymous Symbol] 0x08004fdc Section 0 stm32f4xx_hal.o(.text.HAL_GetTick) - [Anonymous Symbol] 0x08004fe8 Section 0 stm32f4xx_hal_i2c.o(.text.HAL_I2C_Init) - [Anonymous Symbol] 0x08005180 Section 0 i2c.o(.text.HAL_I2C_MspInit) - [Anonymous Symbol] 0x08005258 Section 0 stm32f4xx_hal.o(.text.HAL_IncTick) - [Anonymous Symbol] 0x08005274 Section 0 stm32f4xx_hal.o(.text.HAL_Init) - [Anonymous Symbol] 0x080052ac Section 0 stm32f4xx_hal.o(.text.HAL_InitTick) - [Anonymous Symbol] 0x080052fc Section 0 stm32f4xx_hal_msp.o(.text.HAL_MspInit) - [Anonymous Symbol] 0x08005344 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) - [Anonymous Symbol] 0x0800534c Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) - [Anonymous Symbol] 0x08005354 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) - [Anonymous Symbol] 0x08005374 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) - [Anonymous Symbol] 0x0800537c Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) - [Anonymous Symbol] 0x080054dc Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) - [Anonymous Symbol] 0x080054e8 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) - [Anonymous Symbol] 0x0800550c Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) - [Anonymous Symbol] 0x08005530 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) - [Anonymous Symbol] 0x08005598 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_OscConfig) - [Anonymous Symbol] 0x080058e0 Section 0 spi_1.o(.text.HAL_SPI_ErrorCallback) - [Anonymous Symbol] 0x08005904 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Init) - [Anonymous Symbol] 0x080059b8 Section 0 spi.o(.text.HAL_SPI_MspInit) - [Anonymous Symbol] 0x08005ae8 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive) - [Anonymous Symbol] 0x08005c5c Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA) - [Anonymous Symbol] 0x08005d48 Section 0 spi_1.o(.text.HAL_SPI_RxCpltCallback) - [Anonymous Symbol] 0x08005d6c Section 0 spi_1.o(.text.HAL_SPI_RxHalfCpltCallback) - [Anonymous Symbol] 0x08005d90 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit) - [Anonymous Symbol] 0x08005f1c Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive) - [Anonymous Symbol] 0x08006114 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA) - [Anonymous Symbol] 0x08006238 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA) - [Anonymous Symbol] 0x08006304 Section 0 spi_1.o(.text.HAL_SPI_TxCpltCallback) - [Anonymous Symbol] 0x08006324 Section 0 spi_1.o(.text.HAL_SPI_TxHalfCpltCallback) - [Anonymous Symbol] 0x08006348 Section 0 spi_1.o(.text.HAL_SPI_TxRxCpltCallback) - [Anonymous Symbol] 0x0800636c Section 0 spi_1.o(.text.HAL_SPI_TxRxHalfCpltCallback) - [Anonymous Symbol] 0x08006390 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_SYSTICK_Config) - [Anonymous Symbol] 0x08006398 Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) - [Anonymous Symbol] 0x0800639c Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) - [Anonymous Symbol] 0x080063a0 Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) - [Anonymous Symbol] 0x080063ec Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) - [Anonymous Symbol] 0x080064a4 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init) - [Anonymous Symbol] 0x08006500 Section 0 tim.o(.text.HAL_TIM_Base_MspInit) - [Anonymous Symbol] 0x08006574 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) - [Anonymous Symbol] 0x08006654 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) - [Anonymous Symbol] 0x08006658 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler) - [Anonymous Symbol] 0x0800678c Section 0 tim.o(.text.HAL_TIM_MspPostInit) - [Anonymous Symbol] 0x08006828 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) - [Anonymous Symbol] 0x0800682c Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) - [Anonymous Symbol] 0x080068c4 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init) - [Anonymous Symbol] 0x08006920 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit) - [Anonymous Symbol] 0x08006924 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) - [Anonymous Symbol] 0x08006928 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Start) - [Anonymous Symbol] 0x08006a4c Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback) - [Anonymous Symbol] 0x08006a50 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) - [Anonymous Symbol] 0x08006a54 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UARTEx_RxEventCallback) - [Anonymous Symbol] 0x08006a58 Section 0 uart.o(.text.HAL_UART_ErrorCallback) - [Anonymous Symbol] 0x08006a80 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler) - [Anonymous Symbol] 0x08006cdc Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Init) - [Anonymous Symbol] 0x08006d3c Section 0 usart.o(.text.HAL_UART_MspInit) - [Anonymous Symbol] 0x08007018 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Receive_DMA) - [Anonymous Symbol] 0x08007044 Section 0 uart.o(.text.HAL_UART_RxCpltCallback) - [Anonymous Symbol] 0x0800706c Section 0 uart.o(.text.HAL_UART_RxHalfCpltCallback) - [Anonymous Symbol] 0x08007094 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA) - [Anonymous Symbol] 0x08007120 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_IT) - [Anonymous Symbol] 0x08007158 Section 0 uart.o(.text.HAL_UART_TxCpltCallback) - [Anonymous Symbol] 0x08007180 Section 0 uart.o(.text.HAL_UART_TxHalfCpltCallback) - [Anonymous Symbol] 0x080071a4 Section 0 stm32f4xx_it.o(.text.HardFault_Handler) - [Anonymous Symbol] 0x080071a8 Section 0 user_math.o(.text.InvSqrt) - [Anonymous Symbol] 0x080071ec Section 0 et16s.o(.text.Keymap) - [Anonymous Symbol] 0x08007210 Section 0 filter.o(.text.LowPassFilter2p_Apply) - [Anonymous Symbol] 0x0800728c Section 0 filter.o(.text.LowPassFilter2p_Init) - [Anonymous Symbol] 0x08007330 Section 0 filter.o(.text.LowPassFilter2p_Reset) - MOTOR_DM_CreateCANManager 0x0800738d Thumb Code 60 motor_dm.o(.text.MOTOR_DM_CreateCANManager) - [Anonymous Symbol] 0x0800738c Section 0 motor_dm.o(.text.MOTOR_DM_CreateCANManager) - [Anonymous Symbol] 0x080073c8 Section 0 motor_dm.o(.text.MOTOR_DM_Enable) - MOTOR_DM_GetCANManager 0x08007411 Thumb Code 20 motor_dm.o(.text.MOTOR_DM_GetCANManager) - [Anonymous Symbol] 0x08007410 Section 0 motor_dm.o(.text.MOTOR_DM_GetCANManager) - [Anonymous Symbol] 0x08007424 Section 0 motor_dm.o(.text.MOTOR_DM_GetMotor) - [Anonymous Symbol] 0x0800747c Section 0 motor_dm.o(.text.MOTOR_DM_MITCtrl) - MOTOR_DM_ParseFeedbackFrame 0x080074ad Thumb Code 248 motor_dm.o(.text.MOTOR_DM_ParseFeedbackFrame) - [Anonymous Symbol] 0x080074ac Section 0 motor_dm.o(.text.MOTOR_DM_ParseFeedbackFrame) - [Anonymous Symbol] 0x080075a4 Section 0 motor_dm.o(.text.MOTOR_DM_Register) - MOTOR_DM_SendMITCmd 0x08007649 Thumb Code 280 motor_dm.o(.text.MOTOR_DM_SendMITCmd) - [Anonymous Symbol] 0x08007648 Section 0 motor_dm.o(.text.MOTOR_DM_SendMITCmd) - [Anonymous Symbol] 0x08007760 Section 0 motor_dm.o(.text.MOTOR_DM_Update) - MOTOR_RM_CreateCANManager 0x08007801 Thumb Code 60 motor_rm.o(.text.MOTOR_RM_CreateCANManager) - [Anonymous Symbol] 0x08007800 Section 0 motor_rm.o(.text.MOTOR_RM_CreateCANManager) - [Anonymous Symbol] 0x0800783c Section 0 motor_rm.o(.text.MOTOR_RM_Ctrl) - MOTOR_RM_GetCANManager 0x08007915 Thumb Code 20 motor_rm.o(.text.MOTOR_RM_GetCANManager) - [Anonymous Symbol] 0x08007914 Section 0 motor_rm.o(.text.MOTOR_RM_GetCANManager) - MOTOR_RM_GetLSB 0x08007929 Thumb Code 38 motor_rm.o(.text.MOTOR_RM_GetLSB) - [Anonymous Symbol] 0x08007928 Section 0 motor_rm.o(.text.MOTOR_RM_GetLSB) - MOTOR_RM_GetLogicalIndex 0x08007951 Thumb Code 40 motor_rm.o(.text.MOTOR_RM_GetLogicalIndex) - [Anonymous Symbol] 0x08007950 Section 0 motor_rm.o(.text.MOTOR_RM_GetLogicalIndex) - [Anonymous Symbol] 0x08007978 Section 0 motor_rm.o(.text.MOTOR_RM_GetMotor) - MOTOR_RM_GetRatio 0x080079c9 Thumb Code 36 motor_rm.o(.text.MOTOR_RM_GetRatio) - [Anonymous Symbol] 0x080079c8 Section 0 motor_rm.o(.text.MOTOR_RM_GetRatio) - [Anonymous Symbol] 0x080079ec Section 0 motor_rm.o(.text.MOTOR_RM_Register) - [Anonymous Symbol] 0x08007a94 Section 0 motor_rm.o(.text.MOTOR_RM_Relax) - [Anonymous Symbol] 0x08007aa4 Section 0 motor_rm.o(.text.MOTOR_RM_SetOutput) - [Anonymous Symbol] 0x08007b44 Section 0 motor_rm.o(.text.MOTOR_RM_Update) - [Anonymous Symbol] 0x08007c0c Section 0 can.o(.text.MX_CAN1_Init) - [Anonymous Symbol] 0x08007c4c Section 0 can.o(.text.MX_CAN2_Init) - [Anonymous Symbol] 0x08007c8c Section 0 dma.o(.text.MX_DMA_Init) - [Anonymous Symbol] 0x08007d18 Section 0 freertos.o(.text.MX_FREERTOS_Init) - [Anonymous Symbol] 0x08007d54 Section 0 gpio.o(.text.MX_GPIO_Init) - [Anonymous Symbol] 0x08007f38 Section 0 i2c.o(.text.MX_I2C1_Init) - [Anonymous Symbol] 0x08007f78 Section 0 i2c.o(.text.MX_I2C2_Init) - [Anonymous Symbol] 0x08007fb8 Section 0 spi.o(.text.MX_SPI1_Init) - [Anonymous Symbol] 0x08008008 Section 0 tim.o(.text.MX_TIM10_Init) - [Anonymous Symbol] 0x08008090 Section 0 tim.o(.text.MX_TIM8_Init) - [Anonymous Symbol] 0x080081a0 Section 0 usart.o(.text.MX_USART1_UART_Init) - [Anonymous Symbol] 0x080081d8 Section 0 usart.o(.text.MX_USART2_UART_Init) - [Anonymous Symbol] 0x08008210 Section 0 usart.o(.text.MX_USART3_UART_Init) - [Anonymous Symbol] 0x08008254 Section 0 usart.o(.text.MX_USART6_UART_Init) - [Anonymous Symbol] 0x0800828c Section 0 stm32f4xx_it.o(.text.MemManage_Handler) - Motor_RM_Decode 0x08008291 Thumb Code 348 motor_rm.o(.text.Motor_RM_Decode) - [Anonymous Symbol] 0x08008290 Section 0 motor_rm.o(.text.Motor_RM_Decode) - [Anonymous Symbol] 0x080083ec Section 0 motor_step.o(.text.Motor_Step_Ctrl) - [Anonymous Symbol] 0x08008410 Section 0 motor_step.o(.text.Motor_Step_Init) - [Anonymous Symbol] 0x0800841c Section 0 stm32f4xx_it.o(.text.NMI_Handler) - NVIC_EncodePriority 0x08008421 Thumb Code 44 stm32f4xx_hal_cortex.o(.text.NVIC_EncodePriority) - [Anonymous Symbol] 0x08008420 Section 0 stm32f4xx_hal_cortex.o(.text.NVIC_EncodePriority) - [Anonymous Symbol] 0x0800844c Section 0 pid.o(.text.PID_Calc) - [Anonymous Symbol] 0x080085bc Section 0 pid.o(.text.PID_Init) - [Anonymous Symbol] 0x0800864c Section 0 pid.o(.text.PID_Reset) - [Anonymous Symbol] 0x08008678 Section 0 pid.o(.text.PID_ResetIntegral) - [Anonymous Symbol] 0x08008690 Section 0 port.o(.text.PendSV_Handler) - pxCurrentTCBConst 0x080086f0 Number 0 port.o(.text.PendSV_Handler) - [Anonymous Symbol] 0x080086f4 Section 0 et16s.o(.text.REMOTE_Init) - REMOTE_RxCpltCallback 0x08008739 Thumb Code 20 et16s.o(.text.REMOTE_RxCpltCallback) - [Anonymous Symbol] 0x08008738 Section 0 et16s.o(.text.REMOTE_RxCpltCallback) - [Anonymous Symbol] 0x0800874c Section 0 et16s.o(.text.REMOTE_StartDmaRecv) - [Anonymous Symbol] 0x0800876c Section 0 et16s.o(.text.REMOTE_WaitDmaCplt) - SPI_DMAError 0x08008785 Thumb Code 34 stm32f4xx_hal_spi.o(.text.SPI_DMAError) - [Anonymous Symbol] 0x08008784 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAError) - SPI_DMAHalfReceiveCplt 0x080087a9 Thumb Code 10 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfReceiveCplt) - [Anonymous Symbol] 0x080087a8 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfReceiveCplt) - SPI_DMAHalfTransmitCplt 0x080087b5 Thumb Code 10 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitCplt) - [Anonymous Symbol] 0x080087b4 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitCplt) - SPI_DMAHalfTransmitReceiveCplt 0x080087c1 Thumb Code 10 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitReceiveCplt) - [Anonymous Symbol] 0x080087c0 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitReceiveCplt) - SPI_DMAReceiveCplt 0x080087cd Thumb Code 104 stm32f4xx_hal_spi.o(.text.SPI_DMAReceiveCplt) - [Anonymous Symbol] 0x080087cc Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAReceiveCplt) - SPI_DMATransmitCplt 0x08008835 Thumb Code 112 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitCplt) - [Anonymous Symbol] 0x08008834 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitCplt) - SPI_DMATransmitReceiveCplt 0x080088a5 Thumb Code 90 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitReceiveCplt) - [Anonymous Symbol] 0x080088a4 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitReceiveCplt) - SPI_EndRxTransaction 0x08008901 Thumb Code 144 stm32f4xx_hal_spi.o(.text.SPI_EndRxTransaction) - [Anonymous Symbol] 0x08008900 Section 0 stm32f4xx_hal_spi.o(.text.SPI_EndRxTransaction) - SPI_EndRxTxTransaction 0x08008991 Thumb Code 138 stm32f4xx_hal_spi.o(.text.SPI_EndRxTxTransaction) - [Anonymous Symbol] 0x08008990 Section 0 stm32f4xx_hal_spi.o(.text.SPI_EndRxTxTransaction) - SPI_Get 0x08008a1d Thumb Code 20 spi_1.o(.text.SPI_Get) - [Anonymous Symbol] 0x08008a1c Section 0 spi_1.o(.text.SPI_Get) - SPI_WaitFlagStateUntilTimeout 0x08008a31 Thumb Code 224 stm32f4xx_hal_spi.o(.text.SPI_WaitFlagStateUntilTimeout) - [Anonymous Symbol] 0x08008a30 Section 0 stm32f4xx_hal_spi.o(.text.SPI_WaitFlagStateUntilTimeout) - [Anonymous Symbol] 0x08008b10 Section 0 port.o(.text.SVC_Handler) - pxCurrentTCBConst2 0x08008b30 Number 0 port.o(.text.SVC_Handler) - SVC_Setup 0x08008b35 Thumb Code 8 cmsis_os2.o(.text.SVC_Setup) - [Anonymous Symbol] 0x08008b34 Section 0 cmsis_os2.o(.text.SVC_Setup) - [Anonymous Symbol] 0x08008b3c Section 0 user_math.o(.text.ScaleSumTo1) - Shoot_CaluCoupledWeight 0x08008b75 Thumb Code 124 shoot.o(.text.Shoot_CaluCoupledWeight) - [Anonymous Symbol] 0x08008b74 Section 0 shoot.o(.text.Shoot_CaluCoupledWeight) - [Anonymous Symbol] 0x08008bf0 Section 0 shoot.o(.text.Shoot_CaluTargetAngle) - [Anonymous Symbol] 0x08008c90 Section 0 shoot.o(.text.Shoot_CaluTargetRPM) - [Anonymous Symbol] 0x08008cbc Section 0 shoot.o(.text.Shoot_Control) - [Anonymous Symbol] 0x08008d28 Section 0 shoot.o(.text.Shoot_Init) - [Anonymous Symbol] 0x08008e70 Section 0 shoot.o(.text.Shoot_JamDetectionFSM) - [Anonymous Symbol] 0x08008fa0 Section 0 shoot.o(.text.Shoot_ResetCalu) - [Anonymous Symbol] 0x08009038 Section 0 shoot.o(.text.Shoot_ResetIntegral) - [Anonymous Symbol] 0x08009080 Section 0 shoot.o(.text.Shoot_ResetOutput) - [Anonymous Symbol] 0x080090b4 Section 0 shoot.o(.text.Shoot_RunningFSM) - [Anonymous Symbol] 0x080095a4 Section 0 shoot.o(.text.Shoot_SetMode) - [Anonymous Symbol] 0x080095b4 Section 0 shoot.o(.text.Shoot_UpdateFeedback) - [Anonymous Symbol] 0x080097a8 Section 0 freertos.o(.text.StartDefaultTask) - SysTick_Config 0x080097b5 Thumb Code 46 stm32f4xx_hal_cortex.o(.text.SysTick_Config) - [Anonymous Symbol] 0x080097b4 Section 0 stm32f4xx_hal_cortex.o(.text.SysTick_Config) - [Anonymous Symbol] 0x080097e4 Section 0 stm32f4xx_it.o(.text.SysTick_Handler) - [Anonymous Symbol] 0x080097f8 Section 0 main.o(.text.SystemClock_Config) - [Anonymous Symbol] 0x0800989c Section 0 system_stm32f4xx.o(.text.SystemInit) - [Anonymous Symbol] 0x080098b0 Section 0 stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) - [Anonymous Symbol] 0x080098c0 Section 0 stm32f4xx_hal_tim.o(.text.TIM_Base_SetConfig) - [Anonymous Symbol] 0x080099ec Section 0 stm32f4xx_hal_tim.o(.text.TIM_CCxChannelCmd) - [Anonymous Symbol] 0x08009a10 Section 0 stm32f4xx_hal_tim.o(.text.TIM_ETR_SetConfig) - TIM_ITRx_SetConfig 0x08009a29 Thumb Code 16 stm32f4xx_hal_tim.o(.text.TIM_ITRx_SetConfig) - [Anonymous Symbol] 0x08009a28 Section 0 stm32f4xx_hal_tim.o(.text.TIM_ITRx_SetConfig) - TIM_OC1_SetConfig 0x08009a39 Thumb Code 100 stm32f4xx_hal_tim.o(.text.TIM_OC1_SetConfig) - [Anonymous Symbol] 0x08009a38 Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC1_SetConfig) - [Anonymous Symbol] 0x08009a9c Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC2_SetConfig) - TIM_OC3_SetConfig 0x08009b09 Thumb Code 104 stm32f4xx_hal_tim.o(.text.TIM_OC3_SetConfig) - [Anonymous Symbol] 0x08009b08 Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC3_SetConfig) - TIM_OC4_SetConfig 0x08009b71 Thumb Code 78 stm32f4xx_hal_tim.o(.text.TIM_OC4_SetConfig) - [Anonymous Symbol] 0x08009b70 Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC4_SetConfig) - TIM_TI1_ConfigInputStage 0x08009bc1 Thumb Code 34 stm32f4xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) - [Anonymous Symbol] 0x08009bc0 Section 0 stm32f4xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) - TIM_TI2_ConfigInputStage 0x08009be5 Thumb Code 36 stm32f4xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) - [Anonymous Symbol] 0x08009be4 Section 0 stm32f4xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) - [Anonymous Symbol] 0x08009c08 Section 0 et16s_1.o(.text.Task_ET16s) - [Anonymous Symbol] 0x08009c88 Section 0 init.o(.text.Task_Init) - [Anonymous Symbol] 0x08009de8 Section 0 ai_1.o(.text.Task_ai) - [Anonymous Symbol] 0x08009e28 Section 0 atti_esti.o(.text.Task_atti_esti) - [Anonymous Symbol] 0x08009fa0 Section 0 chassis_ctrl.o(.text.Task_chassis_ctrl) - [Anonymous Symbol] 0x0800a018 Section 0 cmd.o(.text.Task_cmd) - [Anonymous Symbol] 0x0800a100 Section 0 dr16_1.o(.text.Task_dr16) - [Anonymous Symbol] 0x0800a168 Section 0 gimbal_ctrl.o(.text.Task_gimbal_ctrl) - [Anonymous Symbol] 0x0800a220 Section 0 shoot_ctrl.o(.text.Task_shoot_ctrl) - [Anonymous Symbol] 0x0800a2b8 Section 0 step_motor_1.o(.text.Task_step_motor) - [Anonymous Symbol] 0x0800a328 Section 0 vofa_1.o(.text.Task_vofa) - UART_DMAAbortOnError 0x0800a389 Thumb Code 14 stm32f4xx_hal_uart.o(.text.UART_DMAAbortOnError) - [Anonymous Symbol] 0x0800a388 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMAAbortOnError) - UART_DMAError 0x0800a399 Thumb Code 76 stm32f4xx_hal_uart.o(.text.UART_DMAError) - [Anonymous Symbol] 0x0800a398 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMAError) - UART_DMAReceiveCplt 0x0800a3e5 Thumb Code 132 stm32f4xx_hal_uart.o(.text.UART_DMAReceiveCplt) - [Anonymous Symbol] 0x0800a3e4 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMAReceiveCplt) - UART_DMARxHalfCplt 0x0800a469 Thumb Code 30 stm32f4xx_hal_uart.o(.text.UART_DMARxHalfCplt) - [Anonymous Symbol] 0x0800a468 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMARxHalfCplt) - UART_DMATransmitCplt 0x0800a489 Thumb Code 64 stm32f4xx_hal_uart.o(.text.UART_DMATransmitCplt) - [Anonymous Symbol] 0x0800a488 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMATransmitCplt) - UART_DMATxHalfCplt 0x0800a4c9 Thumb Code 10 stm32f4xx_hal_uart.o(.text.UART_DMATxHalfCplt) - [Anonymous Symbol] 0x0800a4c8 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMATxHalfCplt) - UART_EndRxTransfer 0x0800a4d5 Thumb Code 80 stm32f4xx_hal_uart.o(.text.UART_EndRxTransfer) - [Anonymous Symbol] 0x0800a4d4 Section 0 stm32f4xx_hal_uart.o(.text.UART_EndRxTransfer) - UART_EndTransmit_IT 0x0800a525 Thumb Code 24 stm32f4xx_hal_uart.o(.text.UART_EndTransmit_IT) - [Anonymous Symbol] 0x0800a524 Section 0 stm32f4xx_hal_uart.o(.text.UART_EndTransmit_IT) - UART_EndTxTransfer 0x0800a53d Thumb Code 28 stm32f4xx_hal_uart.o(.text.UART_EndTxTransfer) - [Anonymous Symbol] 0x0800a53c Section 0 stm32f4xx_hal_uart.o(.text.UART_EndTxTransfer) - UART_Get 0x0800a559 Thumb Code 84 uart.o(.text.UART_Get) - [Anonymous Symbol] 0x0800a558 Section 0 uart.o(.text.UART_Get) - UART_Receive_IT 0x0800a5ad Thumb Code 200 stm32f4xx_hal_uart.o(.text.UART_Receive_IT) - [Anonymous Symbol] 0x0800a5ac Section 0 stm32f4xx_hal_uart.o(.text.UART_Receive_IT) - UART_SetConfig 0x0800a675 Thumb Code 220 stm32f4xx_hal_uart.o(.text.UART_SetConfig) - [Anonymous Symbol] 0x0800a674 Section 0 stm32f4xx_hal_uart.o(.text.UART_SetConfig) - [Anonymous Symbol] 0x0800a750 Section 0 stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA) - UART_Transmit_IT 0x0800a7fd Thumb Code 82 stm32f4xx_hal_uart.o(.text.UART_Transmit_IT) - [Anonymous Symbol] 0x0800a7fc Section 0 stm32f4xx_hal_uart.o(.text.UART_Transmit_IT) - [Anonymous Symbol] 0x0800a850 Section 0 stm32f4xx_it.o(.text.USART1_IRQHandler) - [Anonymous Symbol] 0x0800a868 Section 0 stm32f4xx_it.o(.text.USART3_IRQHandler) - [Anonymous Symbol] 0x0800a880 Section 0 stm32f4xx_it.o(.text.USART6_IRQHandler) - [Anonymous Symbol] 0x0800a898 Section 0 stm32f4xx_it.o(.text.UsageFault_Handler) - [Anonymous Symbol] 0x0800a89c Section 0 vofa.o(.text.VOFA_FireWater_Send) - [Anonymous Symbol] 0x0800a944 Section 0 vofa.o(.text.VOFA_JustFloat_Send) - [Anonymous Symbol] 0x0800a980 Section 0 vofa.o(.text.VOFA_RawData_Send) - [Anonymous Symbol] 0x0800a998 Section 0 vofa.o(.text.VOFA_Send) - [Anonymous Symbol] 0x0800aa48 Section 0 vofa.o(.text.VOFA_init) - __ARM_isfinitef 0x0800aa59 Thumb Code 14 filter.o(.text.__ARM_isfinitef) - [Anonymous Symbol] 0x0800aa58 Section 0 filter.o(.text.__ARM_isfinitef) - __ARM_isfinitef 0x0800aa69 Thumb Code 14 pid.o(.text.__ARM_isfinitef) - [Anonymous Symbol] 0x0800aa68 Section 0 pid.o(.text.__ARM_isfinitef) - __ARM_isinff 0x0800aa79 Thumb Code 16 filter.o(.text.__ARM_isinff) - [Anonymous Symbol] 0x0800aa78 Section 0 filter.o(.text.__ARM_isinff) - __NVIC_DisableIRQ 0x0800aa89 Thumb Code 40 stm32f4xx_hal_cortex.o(.text.__NVIC_DisableIRQ) - [Anonymous Symbol] 0x0800aa88 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_DisableIRQ) - __NVIC_EnableIRQ 0x0800aab1 Thumb Code 32 stm32f4xx_hal_cortex.o(.text.__NVIC_EnableIRQ) - [Anonymous Symbol] 0x0800aab0 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_EnableIRQ) - __NVIC_GetPriorityGrouping 0x0800aad1 Thumb Code 16 stm32f4xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) - [Anonymous Symbol] 0x0800aad0 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) - __NVIC_SetPriority 0x0800aae1 Thumb Code 34 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriority) - [Anonymous Symbol] 0x0800aae0 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriority) - __NVIC_SetPriority 0x0800ab05 Thumb Code 14 cmsis_os2.o(.text.__NVIC_SetPriority) - [Anonymous Symbol] 0x0800ab04 Section 0 cmsis_os2.o(.text.__NVIC_SetPriority) - __NVIC_SetPriorityGrouping 0x0800ab15 Thumb Code 32 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) - [Anonymous Symbol] 0x0800ab14 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) - [Anonymous Symbol] 0x0800ab34 Section 0 chassis.o(.text.chassis_init) - [Anonymous Symbol] 0x0800ad68 Section 0 freertos.o(.text.configureTimerForRunTimeStats) - copysignf 0x0800ad6d Thumb Code 22 ahrs.o(.text.copysignf) - [Anonymous Symbol] 0x0800ad6c Section 0 ahrs.o(.text.copysignf) - [Anonymous Symbol] 0x0800ad84 Section 0 tasks.o(.text.eTaskGetState) - float_to_uint 0x0800ae21 Thumb Code 44 motor_dm.o(.text.float_to_uint) - [Anonymous Symbol] 0x0800ae20 Section 0 motor_dm.o(.text.float_to_uint) - [Anonymous Symbol] 0x0800ae4c Section 0 freertos.o(.text.getRunTimeCounterValue) - [Anonymous Symbol] 0x0800ae50 Section 0 main.o(.text.main) - [Anonymous Symbol] 0x0800ae9c Section 0 gimbal.o(.text.major_yaw_Control) - [Anonymous Symbol] 0x0800aebc Section 0 calc_lib.o(.text.map_fp32) - motor_imu_offset 0x0800aed9 Thumb Code 68 gimbal.o(.text.motor_imu_offset) - [Anonymous Symbol] 0x0800aed8 Section 0 gimbal.o(.text.motor_imu_offset) - [Anonymous Symbol] 0x0800af1c Section 0 cmsis_os2.o(.text.osDelay) - [Anonymous Symbol] 0x0800af3c Section 0 cmsis_os2.o(.text.osDelayUntil) - [Anonymous Symbol] 0x0800af70 Section 0 cmsis_os2.o(.text.osKernelGetState) - [Anonymous Symbol] 0x0800af98 Section 0 cmsis_os2.o(.text.osKernelGetTickCount) - [Anonymous Symbol] 0x0800afac Section 0 cmsis_os2.o(.text.osKernelGetTickFreq) - [Anonymous Symbol] 0x0800afb4 Section 0 cmsis_os2.o(.text.osKernelInitialize) - [Anonymous Symbol] 0x0800afdc Section 0 cmsis_os2.o(.text.osKernelLock) - [Anonymous Symbol] 0x0800b008 Section 0 cmsis_os2.o(.text.osKernelStart) - [Anonymous Symbol] 0x0800b03c Section 0 cmsis_os2.o(.text.osKernelUnlock) - [Anonymous Symbol] 0x0800b080 Section 0 cmsis_os2.o(.text.osMessageQueueGet) - [Anonymous Symbol] 0x0800b108 Section 0 cmsis_os2.o(.text.osMessageQueueNew) - [Anonymous Symbol] 0x0800b1a8 Section 0 cmsis_os2.o(.text.osMessageQueuePut) - [Anonymous Symbol] 0x0800b238 Section 0 cmsis_os2.o(.text.osMessageQueueReset) - [Anonymous Symbol] 0x0800b25c Section 0 cmsis_os2.o(.text.osMutexAcquire) - [Anonymous Symbol] 0x0800b2b0 Section 0 cmsis_os2.o(.text.osMutexNew) - [Anonymous Symbol] 0x0800b348 Section 0 cmsis_os2.o(.text.osMutexRelease) - [Anonymous Symbol] 0x0800b388 Section 0 cmsis_os2.o(.text.osThreadFlagsSet) - [Anonymous Symbol] 0x0800b408 Section 0 cmsis_os2.o(.text.osThreadFlagsWait) - [Anonymous Symbol] 0x0800b4c4 Section 0 cmsis_os2.o(.text.osThreadGetId) - [Anonymous Symbol] 0x0800b4cc Section 0 cmsis_os2.o(.text.osThreadNew) - [Anonymous Symbol] 0x0800b580 Section 0 cmsis_os2.o(.text.osThreadTerminate) - prvAddCurrentTaskToDelayedList 0x0800b5b5 Thumb Code 128 tasks.o(.text.prvAddCurrentTaskToDelayedList) - [Anonymous Symbol] 0x0800b5b4 Section 0 tasks.o(.text.prvAddCurrentTaskToDelayedList) - prvAddNewTaskToReadyList 0x0800b635 Thumb Code 172 tasks.o(.text.prvAddNewTaskToReadyList) - [Anonymous Symbol] 0x0800b634 Section 0 tasks.o(.text.prvAddNewTaskToReadyList) - prvCheckForValidListAndQueue 0x0800b6e1 Thumb Code 116 timers.o(.text.prvCheckForValidListAndQueue) - [Anonymous Symbol] 0x0800b6e0 Section 0 timers.o(.text.prvCheckForValidListAndQueue) - prvCheckTasksWaitingTermination 0x0800b75d Thumb Code 78 tasks.o(.text.prvCheckTasksWaitingTermination) - [Anonymous Symbol] 0x0800b75c Section 0 tasks.o(.text.prvCheckTasksWaitingTermination) - prvCopyDataFromQueue 0x0800b7ad Thumb Code 38 queue.o(.text.prvCopyDataFromQueue) - [Anonymous Symbol] 0x0800b7ac Section 0 queue.o(.text.prvCopyDataFromQueue) - prvCopyDataToQueue 0x0800b7d5 Thumb Code 122 queue.o(.text.prvCopyDataToQueue) - [Anonymous Symbol] 0x0800b7d4 Section 0 queue.o(.text.prvCopyDataToQueue) - prvDeleteTCB 0x0800b851 Thumb Code 54 tasks.o(.text.prvDeleteTCB) - [Anonymous Symbol] 0x0800b850 Section 0 tasks.o(.text.prvDeleteTCB) - prvGetDisinheritPriorityAfterTimeout 0x0800b889 Thumb Code 18 queue.o(.text.prvGetDisinheritPriorityAfterTimeout) - [Anonymous Symbol] 0x0800b888 Section 0 queue.o(.text.prvGetDisinheritPriorityAfterTimeout) - prvGetNextExpireTime 0x0800b89d Thumb Code 32 timers.o(.text.prvGetNextExpireTime) - [Anonymous Symbol] 0x0800b89c Section 0 timers.o(.text.prvGetNextExpireTime) - prvHeapInit 0x0800b8bd Thumb Code 120 heap_4.o(.text.prvHeapInit) - [Anonymous Symbol] 0x0800b8bc Section 0 heap_4.o(.text.prvHeapInit) - prvIdleTask 0x0800b935 Thumb Code 42 tasks.o(.text.prvIdleTask) - [Anonymous Symbol] 0x0800b934 Section 0 tasks.o(.text.prvIdleTask) - prvInitialiseMutex 0x0800b961 Thumb Code 32 queue.o(.text.prvInitialiseMutex) - [Anonymous Symbol] 0x0800b960 Section 0 queue.o(.text.prvInitialiseMutex) - prvInitialiseNewQueue 0x0800b981 Thumb Code 32 queue.o(.text.prvInitialiseNewQueue) - [Anonymous Symbol] 0x0800b980 Section 0 queue.o(.text.prvInitialiseNewQueue) - prvInitialiseNewTask 0x0800b9a1 Thumb Code 154 tasks.o(.text.prvInitialiseNewTask) - [Anonymous Symbol] 0x0800b9a0 Section 0 tasks.o(.text.prvInitialiseNewTask) - prvInitialiseTaskLists 0x0800ba3d Thumb Code 112 tasks.o(.text.prvInitialiseTaskLists) - [Anonymous Symbol] 0x0800ba3c Section 0 tasks.o(.text.prvInitialiseTaskLists) - prvInsertBlockIntoFreeList 0x0800baad Thumb Code 90 heap_4.o(.text.prvInsertBlockIntoFreeList) - [Anonymous Symbol] 0x0800baac Section 0 heap_4.o(.text.prvInsertBlockIntoFreeList) - prvInsertTimerInActiveList 0x0800bb09 Thumb Code 64 timers.o(.text.prvInsertTimerInActiveList) - [Anonymous Symbol] 0x0800bb08 Section 0 timers.o(.text.prvInsertTimerInActiveList) - prvIsQueueEmpty 0x0800bb49 Thumb Code 24 queue.o(.text.prvIsQueueEmpty) - [Anonymous Symbol] 0x0800bb48 Section 0 queue.o(.text.prvIsQueueEmpty) - prvIsQueueFull 0x0800bb61 Thumb Code 28 queue.o(.text.prvIsQueueFull) - [Anonymous Symbol] 0x0800bb60 Section 0 queue.o(.text.prvIsQueueFull) - prvPortStartFirstTask 0x0800bb7d Thumb Code 34 port.o(.text.prvPortStartFirstTask) - [Anonymous Symbol] 0x0800bb7c Section 0 port.o(.text.prvPortStartFirstTask) - prvProcessExpiredTimer 0x0800bba5 Thumb Code 110 timers.o(.text.prvProcessExpiredTimer) - [Anonymous Symbol] 0x0800bba4 Section 0 timers.o(.text.prvProcessExpiredTimer) - prvProcessReceivedCommands 0x0800bc15 Thumb Code 290 timers.o(.text.prvProcessReceivedCommands) - [Anonymous Symbol] 0x0800bc14 Section 0 timers.o(.text.prvProcessReceivedCommands) - prvProcessTimerOrBlockTask 0x0800bd39 Thumb Code 128 timers.o(.text.prvProcessTimerOrBlockTask) - [Anonymous Symbol] 0x0800bd38 Section 0 timers.o(.text.prvProcessTimerOrBlockTask) - prvResetNextTaskUnblockTime 0x0800bdb9 Thumb Code 40 tasks.o(.text.prvResetNextTaskUnblockTime) - [Anonymous Symbol] 0x0800bdb8 Section 0 tasks.o(.text.prvResetNextTaskUnblockTime) - prvSampleTimeNow 0x0800bde1 Thumb Code 42 timers.o(.text.prvSampleTimeNow) - [Anonymous Symbol] 0x0800bde0 Section 0 timers.o(.text.prvSampleTimeNow) - prvSwitchTimerLists 0x0800be0d Thumb Code 142 timers.o(.text.prvSwitchTimerLists) - [Anonymous Symbol] 0x0800be0c Section 0 timers.o(.text.prvSwitchTimerLists) - prvTaskExitError 0x0800be9d Thumb Code 50 port.o(.text.prvTaskExitError) - [Anonymous Symbol] 0x0800be9c Section 0 port.o(.text.prvTaskExitError) - prvTimerTask 0x0800bed1 Thumb Code 22 timers.o(.text.prvTimerTask) - [Anonymous Symbol] 0x0800bed0 Section 0 timers.o(.text.prvTimerTask) - prvUnlockQueue 0x0800bee9 Thumb Code 114 queue.o(.text.prvUnlockQueue) - [Anonymous Symbol] 0x0800bee8 Section 0 queue.o(.text.prvUnlockQueue) - [Anonymous Symbol] 0x0800bf5c Section 0 heap_4.o(.text.pvPortMalloc) - [Anonymous Symbol] 0x0800c0a8 Section 0 tasks.o(.text.pvTaskIncrementMutexHeldCount) - [Anonymous Symbol] 0x0800c0c0 Section 0 port.o(.text.pxPortInitialiseStack) - uint_to_float 0x0800c0e9 Thumb Code 42 motor_dm.o(.text.uint_to_float) - [Anonymous Symbol] 0x0800c0e8 Section 0 motor_dm.o(.text.uint_to_float) - [Anonymous Symbol] 0x0800c114 Section 0 list.o(.text.uxListRemove) - [Anonymous Symbol] 0x0800c138 Section 0 cmsis_os2.o(.text.vApplicationGetIdleTaskMemory) - [Anonymous Symbol] 0x0800c154 Section 0 cmsis_os2.o(.text.vApplicationGetTimerTaskMemory) - [Anonymous Symbol] 0x0800c170 Section 0 freertos.o(.text.vApplicationStackOverflowHook) - [Anonymous Symbol] 0x0800c174 Section 0 list.o(.text.vListInitialise) - [Anonymous Symbol] 0x0800c18c Section 0 list.o(.text.vListInitialiseItem) - [Anonymous Symbol] 0x0800c194 Section 0 list.o(.text.vListInsert) - [Anonymous Symbol] 0x0800c1d0 Section 0 list.o(.text.vListInsertEnd) - vPortEnableVFP 0x0800c1ed Thumb Code 14 port.o(.text.vPortEnableVFP) - [Anonymous Symbol] 0x0800c1ec Section 0 port.o(.text.vPortEnableVFP) - [Anonymous Symbol] 0x0800c200 Section 0 port.o(.text.vPortEnterCritical) - [Anonymous Symbol] 0x0800c248 Section 0 port.o(.text.vPortExitCritical) - [Anonymous Symbol] 0x0800c278 Section 0 heap_4.o(.text.vPortFree) - [Anonymous Symbol] 0x0800c304 Section 0 port.o(.text.vPortSetupTimerInterrupt) - [Anonymous Symbol] 0x0800c338 Section 0 port.o(.text.vPortValidateInterruptPriority) - [Anonymous Symbol] 0x0800c39c Section 0 queue.o(.text.vQueueAddToRegistry) - [Anonymous Symbol] 0x0800c3c4 Section 0 queue.o(.text.vQueueWaitForMessageRestricted) - [Anonymous Symbol] 0x0800c408 Section 0 tasks.o(.text.vTaskDelay) - [Anonymous Symbol] 0x0800c45c Section 0 tasks.o(.text.vTaskDelayUntil) - [Anonymous Symbol] 0x0800c504 Section 0 tasks.o(.text.vTaskDelete) - [Anonymous Symbol] 0x0800c5c8 Section 0 tasks.o(.text.vTaskInternalSetTimeOutState) - [Anonymous Symbol] 0x0800c5e4 Section 0 tasks.o(.text.vTaskMissedYield) - [Anonymous Symbol] 0x0800c5f4 Section 0 tasks.o(.text.vTaskPlaceOnEventList) - [Anonymous Symbol] 0x0800c628 Section 0 tasks.o(.text.vTaskPlaceOnEventListRestricted) - [Anonymous Symbol] 0x0800c668 Section 0 tasks.o(.text.vTaskPriorityDisinheritAfterTimeout) - [Anonymous Symbol] 0x0800c70c Section 0 tasks.o(.text.vTaskStartScheduler) - [Anonymous Symbol] 0x0800c7b4 Section 0 tasks.o(.text.vTaskSuspendAll) - [Anonymous Symbol] 0x0800c7c4 Section 0 tasks.o(.text.vTaskSwitchContext) - [Anonymous Symbol] 0x0800c8a8 Section 0 port.o(.text.xPortStartScheduler) - [Anonymous Symbol] 0x0800c9bc Section 0 port.o(.text.xPortSysTickHandler) - [Anonymous Symbol] 0x0800c9ec Section 0 queue.o(.text.xQueueCreateMutex) - [Anonymous Symbol] 0x0800ca04 Section 0 queue.o(.text.xQueueCreateMutexStatic) - [Anonymous Symbol] 0x0800ca28 Section 0 queue.o(.text.xQueueGenericCreate) - [Anonymous Symbol] 0x0800ca70 Section 0 queue.o(.text.xQueueGenericCreateStatic) - [Anonymous Symbol] 0x0800cb08 Section 0 queue.o(.text.xQueueGenericReset) - [Anonymous Symbol] 0x0800cb88 Section 0 queue.o(.text.xQueueGenericSend) - [Anonymous Symbol] 0x0800cd2c Section 0 queue.o(.text.xQueueGenericSendFromISR) - [Anonymous Symbol] 0x0800cdfc Section 0 queue.o(.text.xQueueGiveMutexRecursive) - [Anonymous Symbol] 0x0800ce40 Section 0 queue.o(.text.xQueueReceive) - [Anonymous Symbol] 0x0800cfc4 Section 0 queue.o(.text.xQueueReceiveFromISR) - [Anonymous Symbol] 0x0800d070 Section 0 queue.o(.text.xQueueSemaphoreTake) - [Anonymous Symbol] 0x0800d238 Section 0 queue.o(.text.xQueueTakeMutexRecursive) - [Anonymous Symbol] 0x0800d274 Section 0 tasks.o(.text.xTaskCheckForTimeOut) - [Anonymous Symbol] 0x0800d2fc Section 0 tasks.o(.text.xTaskCreate) - [Anonymous Symbol] 0x0800d364 Section 0 tasks.o(.text.xTaskCreateStatic) - [Anonymous Symbol] 0x0800d3dc Section 0 tasks.o(.text.xTaskGenericNotify) - [Anonymous Symbol] 0x0800d4d8 Section 0 tasks.o(.text.xTaskGenericNotifyFromISR) - [Anonymous Symbol] 0x0800d604 Section 0 tasks.o(.text.xTaskGetCurrentTaskHandle) - [Anonymous Symbol] 0x0800d610 Section 0 tasks.o(.text.xTaskGetSchedulerState) - [Anonymous Symbol] 0x0800d638 Section 0 tasks.o(.text.xTaskGetTickCount) - [Anonymous Symbol] 0x0800d644 Section 0 tasks.o(.text.xTaskGetTickCountFromISR) - [Anonymous Symbol] 0x0800d658 Section 0 tasks.o(.text.xTaskIncrementTick) - [Anonymous Symbol] 0x0800d7ac Section 0 tasks.o(.text.xTaskNotifyWait) - [Anonymous Symbol] 0x0800d83c Section 0 tasks.o(.text.xTaskPriorityDisinherit) - [Anonymous Symbol] 0x0800d8d0 Section 0 tasks.o(.text.xTaskPriorityInherit) - [Anonymous Symbol] 0x0800d964 Section 0 tasks.o(.text.xTaskRemoveFromEventList) - [Anonymous Symbol] 0x0800d9f4 Section 0 tasks.o(.text.xTaskResumeAll) - [Anonymous Symbol] 0x0800db08 Section 0 timers.o(.text.xTimerCreateTimerTask) - [Anonymous Symbol] 0x0800db7c Section 0 timers.o(.text.xTimerGenericCommand) - CL$$btod_d2e 0x0800dbe4 Section 62 btod.o(CL$$btod_d2e) - CL$$btod_d2e_denorm_low 0x0800dc22 Section 70 btod.o(CL$$btod_d2e_denorm_low) - CL$$btod_d2e_norm_op1 0x0800dc68 Section 96 btod.o(CL$$btod_d2e_norm_op1) - CL$$btod_div_common 0x0800dcc8 Section 824 btod.o(CL$$btod_div_common) - CL$$btod_e2e 0x0800e000 Section 220 btod.o(CL$$btod_e2e) - CL$$btod_ediv 0x0800e0dc Section 42 btod.o(CL$$btod_ediv) - CL$$btod_emul 0x0800e106 Section 42 btod.o(CL$$btod_emul) - CL$$btod_mult_common 0x0800e130 Section 580 btod.o(CL$$btod_mult_common) - i.__ARM_fpclassify 0x0800e374 Section 0 fpclassify.o(i.__ARM_fpclassify) - i.__ARM_fpclassifyf 0x0800e3a4 Section 0 fpclassifyf.o(i.__ARM_fpclassifyf) - i.__hardfp_asinf 0x0800e3cc Section 0 asinf.o(i.__hardfp_asinf) - i.__hardfp_atan 0x0800e4f8 Section 0 atan.o(i.__hardfp_atan) - i.__hardfp_atan2 0x0800e7d0 Section 0 atan2.o(i.__hardfp_atan2) - i.__hardfp_atan2f 0x0800e9d0 Section 0 atan2f.o(i.__hardfp_atan2f) - i.__hardfp_tanf 0x0800ec7c Section 0 tanf.o(i.__hardfp_tanf) - i.__kernel_poly 0x0800edf8 Section 0 poly.o(i.__kernel_poly) - i.__mathlib_dbl_infnan 0x0800eef0 Section 0 dunder.o(i.__mathlib_dbl_infnan) - i.__mathlib_dbl_infnan2 0x0800ef04 Section 0 dunder.o(i.__mathlib_dbl_infnan2) - i.__mathlib_dbl_underflow 0x0800ef18 Section 0 dunder.o(i.__mathlib_dbl_underflow) - i.__mathlib_flt_infnan 0x0800ef38 Section 0 funder.o(i.__mathlib_flt_infnan) - i.__mathlib_flt_infnan2 0x0800ef3e Section 0 funder.o(i.__mathlib_flt_infnan2) - i.__mathlib_flt_invalid 0x0800ef44 Section 0 funder.o(i.__mathlib_flt_invalid) - i.__mathlib_flt_underflow 0x0800ef54 Section 0 funder.o(i.__mathlib_flt_underflow) - i.__mathlib_rredf2 0x0800ef64 Section 0 rredf.o(i.__mathlib_rredf2) - i._is_digit 0x0800f0b8 Section 0 __printf_wp.o(i._is_digit) - i.atan 0x0800f0c6 Section 0 atan.o(i.atan) - i.fabs 0x0800f0d6 Section 0 fabs.o(i.fabs) - i.sqrtf 0x0800f0ee Section 0 sqrtf.o(i.sqrtf) - locale$$code 0x0800f12c Section 44 lc_numeric_c.o(locale$$code) - $v0 0x0800f158 Number 0 basic.o(x$fpl$basic) - x$fpl$basic 0x0800f158 Section 24 basic.o(x$fpl$basic) - $v0 0x0800f170 Number 0 d2f.o(x$fpl$d2f) - x$fpl$d2f 0x0800f170 Section 98 d2f.o(x$fpl$d2f) - $v0 0x0800f1d4 Number 0 daddsub_clz.o(x$fpl$dadd) - x$fpl$dadd 0x0800f1d4 Section 336 daddsub_clz.o(x$fpl$dadd) - _dadd1 0x0800f1e5 Thumb Code 0 daddsub_clz.o(x$fpl$dadd) - $v0 0x0800f324 Number 0 dcmpi.o(x$fpl$dcmpinf) - x$fpl$dcmpinf 0x0800f324 Section 24 dcmpi.o(x$fpl$dcmpinf) - $v0 0x0800f33c Number 0 ddiv.o(x$fpl$ddiv) - x$fpl$ddiv 0x0800f33c Section 692 ddiv.o(x$fpl$ddiv) - ddiv_entry 0x0800f343 Thumb Code 0 ddiv.o(x$fpl$ddiv) - $v0 0x0800f5f0 Number 0 deqf.o(x$fpl$deqf) - x$fpl$deqf 0x0800f5f0 Section 120 deqf.o(x$fpl$deqf) - $v0 0x0800f668 Number 0 dfixu.o(x$fpl$dfixu) - x$fpl$dfixu 0x0800f668 Section 90 dfixu.o(x$fpl$dfixu) - $v0 0x0800f6c2 Number 0 dflt_clz.o(x$fpl$dfltu) - x$fpl$dfltu 0x0800f6c2 Section 38 dflt_clz.o(x$fpl$dfltu) - $v0 0x0800f6e8 Number 0 dgeqf.o(x$fpl$dgeqf) - x$fpl$dgeqf 0x0800f6e8 Section 120 dgeqf.o(x$fpl$dgeqf) - $v0 0x0800f760 Number 0 dleqf.o(x$fpl$dleqf) - x$fpl$dleqf 0x0800f760 Section 120 dleqf.o(x$fpl$dleqf) - $v0 0x0800f7d8 Number 0 dmul.o(x$fpl$dmul) - x$fpl$dmul 0x0800f7d8 Section 340 dmul.o(x$fpl$dmul) - $v0 0x0800f92c Number 0 dnaninf.o(x$fpl$dnaninf) - x$fpl$dnaninf 0x0800f92c Section 156 dnaninf.o(x$fpl$dnaninf) - $v0 0x0800f9c8 Number 0 dretinf.o(x$fpl$dretinf) - x$fpl$dretinf 0x0800f9c8 Section 12 dretinf.o(x$fpl$dretinf) - $v0 0x0800f9d4 Number 0 daddsub_clz.o(x$fpl$drsb) - x$fpl$drsb 0x0800f9d4 Section 22 daddsub_clz.o(x$fpl$drsb) - $v0 0x0800f9ec Number 0 daddsub_clz.o(x$fpl$dsub) - x$fpl$dsub 0x0800f9ec Section 476 daddsub_clz.o(x$fpl$dsub) - _dsub1 0x0800f9fd Thumb Code 0 daddsub_clz.o(x$fpl$dsub) - $v0 0x0800fbc8 Number 0 f2d.o(x$fpl$f2d) - x$fpl$f2d 0x0800fbc8 Section 86 f2d.o(x$fpl$f2d) - $v0 0x0800fc1e Number 0 dcmp.o(x$fpl$fcmp) - x$fpl$fcmp 0x0800fc1e Section 84 dcmp.o(x$fpl$fcmp) - $v0 0x0800fc72 Number 0 ffltll_clz.o(x$fpl$ffltll) - x$fpl$ffltll 0x0800fc72 Section 96 ffltll_clz.o(x$fpl$ffltll) - $v0 0x0800fcd2 Number 0 fnaninf.o(x$fpl$fnaninf) - x$fpl$fnaninf 0x0800fcd2 Section 140 fnaninf.o(x$fpl$fnaninf) - $v0 0x0800fd5e Number 0 fpinit.o(x$fpl$fpinit) - x$fpl$fpinit 0x0800fd5e Section 26 fpinit.o(x$fpl$fpinit) - $v0 0x0800fd78 Number 0 fretinf.o(x$fpl$fretinf) - x$fpl$fretinf 0x0800fd78 Section 10 fretinf.o(x$fpl$fretinf) - $v0 0x0800fd82 Number 0 printf1.o(x$fpl$printf1) - x$fpl$printf1 0x0800fd82 Section 4 printf1.o(x$fpl$printf1) - x$fpl$usenofp 0x0800fd86 Section 0 usenofp.o(x$fpl$usenofp) - atanhi 0x0800fd88 Data 32 atan.o(.constdata) - .constdata 0x0800fd88 Section 152 atan.o(.constdata) - atanlo 0x0800fda8 Data 32 atan.o(.constdata) - aTodd 0x0800fdc8 Data 40 atan.o(.constdata) - aTeven 0x0800fdf0 Data 48 atan.o(.constdata) - .constdata 0x0800fe20 Section 8 qnan.o(.constdata) - twooverpi 0x0800fe28 Data 32 rredf.o(.constdata) - .constdata 0x0800fe28 Section 32 rredf.o(.constdata) - tenpwrs_x 0x0800fe48 Data 60 bigflt0.o(.constdata) - .constdata 0x0800fe48 Section 148 bigflt0.o(.constdata) - tenpwrs_i 0x0800fe84 Data 64 bigflt0.o(.constdata) - GPIO_Map 0x0800fef4 Data 104 gpio_1.o(.rodata.GPIO_Map) - [Anonymous Symbol] 0x0800fef4 Section 0 gpio_1.o(.rodata.GPIO_Map) - PWM_Map 0x0800ff5c Data 16 pwm.o(.rodata.PWM_Map) - [Anonymous Symbol] 0x0800ff5c Section 0 pwm.o(.rodata.PWM_Map) - .L__const.chassis_init.motor_offset 0x080100f8 Data 16 chassis.o(.rodata.cst16) - g_behavior_configs 0x0801012c Data 176 cmd_behavior.o(.rodata.g_behavior_configs) - [Anonymous Symbol] 0x0801012c Section 0 cmd_behavior.o(.rodata.g_behavior_configs) - imu_temp_ctrl_pid_param 0x080101dc Data 32 atti_esti.o(.rodata.imu_temp_ctrl_pid_param) - [Anonymous Symbol] 0x080101dc Section 0 atti_esti.o(.rodata.imu_temp_ctrl_pid_param) - [Anonymous Symbol] 0x080101fc Section 0 freertos.o(.rodata.str1.1) - .L.str.1 0x08010208 Data 2 vofa.o(.rodata.str1.1) - [Anonymous Symbol] 0x08010208 Section 0 vofa.o(.rodata.str1.1) - [Anonymous Symbol] 0x0801020a Section 0 user_task.o(.rodata.str1.1) - .L.str.2 0x08010263 Data 1 user_task.o(.rodata.str1.1) - locale$$data 0x080102a4 Section 28 lc_numeric_c.o(locale$$data) - __lcnum_c_name 0x080102a8 Data 2 lc_numeric_c.o(locale$$data) - __lcnum_c_start 0x080102b0 Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_point 0x080102bc Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_thousands 0x080102be Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_grouping 0x080102bf Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_end 0x080102c0 Data 0 lc_numeric_c.o(locale$$data) - beta 0x20000010 Data 4 ahrs.o(.data.beta) - [Anonymous Symbol] 0x20000010 Section 0 ahrs.o(.data.beta) - current_protocol 0x20000014 Data 1 vofa.o(.data.current_protocol) - [Anonymous Symbol] 0x20000014 Section 0 vofa.o(.data.current_protocol) - uxCriticalNesting 0x20000018 Data 4 port.o(.data.uxCriticalNesting) - [Anonymous Symbol] 0x20000018 Section 0 port.o(.data.uxCriticalNesting) - CAN_Callback 0x20000020 Data 104 can_1.o(.bss.CAN_Callback) - [Anonymous Symbol] 0x20000020 Section 0 can_1.o(.bss.CAN_Callback) - GPIO_Callback 0x20000088 Data 64 gpio_1.o(.bss.GPIO_Callback) - [Anonymous Symbol] 0x20000088 Section 0 gpio_1.o(.bss.GPIO_Callback) - HAL_RCC_CAN1_CLK_ENABLED 0x200000c8 Data 4 can.o(.bss.HAL_RCC_CAN1_CLK_ENABLED) - [Anonymous Symbol] 0x200000c8 Section 0 can.o(.bss.HAL_RCC_CAN1_CLK_ENABLED) - SPI_Callback 0x200000d0 Data 32 spi_1.o(.bss.SPI_Callback) - [Anonymous Symbol] 0x200000d0 Section 0 spi_1.o(.bss.SPI_Callback) - Shoot_RunningFSM.pos 0x200000f0 Data 4 shoot.o(.bss.Shoot_RunningFSM.pos) - [Anonymous Symbol] 0x200000f0 Section 0 shoot.o(.bss.Shoot_RunningFSM.pos) - can_managers 0x20000128 Data 8 motor_rm.o(.bss.can_managers) - [Anonymous Symbol] 0x20000128 Section 0 motor_rm.o(.bss.can_managers) - inited 0x200004dc Data 1 bmi088.o(.bss.inited) - [Anonymous Symbol] 0x200004dc Section 0 bmi088.o(.bss.inited) - prvCheckForValidListAndQueue.ucStaticTimerQueueStorage 0x200004dd Data 160 timers.o(.bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage) - [Anonymous Symbol] 0x200004dd Section 0 timers.o(.bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage) - prvCheckForValidListAndQueue.xStaticTimerQueue 0x20000580 Data 80 timers.o(.bss.prvCheckForValidListAndQueue.xStaticTimerQueue) - [Anonymous Symbol] 0x20000580 Section 0 timers.o(.bss.prvCheckForValidListAndQueue.xStaticTimerQueue) - prvSampleTimeNow.xLastTime 0x200005d0 Data 4 timers.o(.bss.prvSampleTimeNow.xLastTime) - [Anonymous Symbol] 0x200005d0 Section 0 timers.o(.bss.prvSampleTimeNow.xLastTime) - pxCurrentTimerList 0x200005d8 Data 4 timers.o(.bss.pxCurrentTimerList) - [Anonymous Symbol] 0x200005d8 Section 0 timers.o(.bss.pxCurrentTimerList) - pxEnd 0x200005dc Data 4 heap_4.o(.bss.pxEnd) - [Anonymous Symbol] 0x200005dc Section 0 heap_4.o(.bss.pxEnd) - pxOverflowDelayedTaskList 0x200005e0 Data 4 tasks.o(.bss.pxOverflowDelayedTaskList) - [Anonymous Symbol] 0x200005e0 Section 0 tasks.o(.bss.pxOverflowDelayedTaskList) - pxReadyTasksLists 0x200005e4 Data 1120 tasks.o(.bss.pxReadyTasksLists) - [Anonymous Symbol] 0x200005e4 Section 0 tasks.o(.bss.pxReadyTasksLists) - queue_mutex 0x20000a44 Data 4 can_1.o(.bss.queue_mutex) - [Anonymous Symbol] 0x20000a44 Section 0 can_1.o(.bss.queue_mutex) - thread_alert 0x20000b2c Data 4 et16s.o(.bss.thread_alert) - [Anonymous Symbol] 0x20000b2c Section 0 et16s.o(.bss.thread_alert) - ucHeap 0x20000b30 Data 104857 heap_4.o(.bss.ucHeap) - [Anonymous Symbol] 0x20000b30 Section 0 heap_4.o(.bss.ucHeap) - ucMaxSysCallPriority 0x2001a4c9 Data 1 port.o(.bss.ucMaxSysCallPriority) - [Anonymous Symbol] 0x2001a4c9 Section 0 port.o(.bss.ucMaxSysCallPriority) - uxDeletedTasksWaitingCleanUp 0x2001a4d0 Data 4 tasks.o(.bss.uxDeletedTasksWaitingCleanUp) - [Anonymous Symbol] 0x2001a4d0 Section 0 tasks.o(.bss.uxDeletedTasksWaitingCleanUp) - vApplicationGetTimerTaskMemory.Timer_Stack 0x2001a4d4 Data 1024 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_Stack) - [Anonymous Symbol] 0x2001a4d4 Section 0 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_Stack) - vApplicationGetTimerTaskMemory.Timer_TCB 0x2001a8d4 Data 96 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_TCB) - [Anonymous Symbol] 0x2001a8d4 Section 0 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_TCB) - vofa_tx_buf 0x2001a934 Data 260 vofa.o(.bss.vofa_tx_buf) - [Anonymous Symbol] 0x2001a934 Section 0 vofa.o(.bss.vofa_tx_buf) - xActiveTimerList2 0x2001aa38 Data 20 timers.o(.bss.xActiveTimerList2) - [Anonymous Symbol] 0x2001aa38 Section 0 timers.o(.bss.xActiveTimerList2) - xDelayedTaskList2 0x2001aa4c Data 20 tasks.o(.bss.xDelayedTaskList2) - [Anonymous Symbol] 0x2001aa4c Section 0 tasks.o(.bss.xDelayedTaskList2) - xIdleTaskHandle 0x2001aa60 Data 4 tasks.o(.bss.xIdleTaskHandle) - [Anonymous Symbol] 0x2001aa60 Section 0 tasks.o(.bss.xIdleTaskHandle) - xMinimumEverFreeBytesRemaining 0x2001aa64 Data 4 heap_4.o(.bss.xMinimumEverFreeBytesRemaining) - [Anonymous Symbol] 0x2001aa64 Section 0 heap_4.o(.bss.xMinimumEverFreeBytesRemaining) - xNumOfOverflows 0x2001aa68 Data 4 tasks.o(.bss.xNumOfOverflows) - [Anonymous Symbol] 0x2001aa68 Section 0 tasks.o(.bss.xNumOfOverflows) - xNumberOfSuccessfulFrees 0x2001aa6c Data 4 heap_4.o(.bss.xNumberOfSuccessfulFrees) - [Anonymous Symbol] 0x2001aa6c Section 0 heap_4.o(.bss.xNumberOfSuccessfulFrees) - xPendingReadyList 0x2001aa70 Data 20 tasks.o(.bss.xPendingReadyList) - [Anonymous Symbol] 0x2001aa70 Section 0 tasks.o(.bss.xPendingReadyList) - xSchedulerRunning 0x2001aa84 Data 4 tasks.o(.bss.xSchedulerRunning) - [Anonymous Symbol] 0x2001aa84 Section 0 tasks.o(.bss.xSchedulerRunning) - xTasksWaitingTermination 0x2001aa88 Data 20 tasks.o(.bss.xTasksWaitingTermination) - [Anonymous Symbol] 0x2001aa88 Section 0 tasks.o(.bss.xTasksWaitingTermination) - xTickCount 0x2001aa9c Data 4 tasks.o(.bss.xTickCount) - [Anonymous Symbol] 0x2001aa9c Section 0 tasks.o(.bss.xTickCount) - xTimerQueue 0x2001aaa0 Data 4 timers.o(.bss.xTimerQueue) - [Anonymous Symbol] 0x2001aaa0 Section 0 timers.o(.bss.xTimerQueue) - xYieldPending 0x2001aaa4 Data 4 tasks.o(.bss.xYieldPending) - [Anonymous Symbol] 0x2001aaa4 Section 0 tasks.o(.bss.xYieldPending) - Heap_Mem 0x2001aaa8 Data 1280 startup_stm32f407xx.o(HEAP) - HEAP 0x2001aaa8 Section 1280 startup_stm32f407xx.o(HEAP) - g_adapter_ET16s 0x2001c010 Data 24 cmd_adapter.o(.data.g_adapter_ET16s) - [Anonymous Symbol] 0x2001c010 Section 0 cmd_adapter.o(.data.g_adapter_ET16s) - .bss 0x2001c4a8 Section 96 libspace.o(.bss) - KernelState 0x2001c508 Data 4 cmsis_os2.o(.bss.KernelState) - [Anonymous Symbol] 0x2001c508 Section 0 cmsis_os2.o(.bss.KernelState) - UART_Callback 0x2001c50c Data 144 uart.o(.bss.UART_Callback) - [Anonymous Symbol] 0x2001c50c Section 0 uart.o(.bss.UART_Callback) - bmi088_rxbuf 0x2001c59c Data 19 bmi088.o(.bss.bmi088_rxbuf) - [Anonymous Symbol] 0x2001c59c Section 0 bmi088.o(.bss.bmi088_rxbuf) - buffer 0x2001c5af Data 2 bmi088.o(.bss.buffer) - [Anonymous Symbol] 0x2001c5af Section 0 bmi088.o(.bss.buffer) - can_managers 0x2001c5b4 Data 8 motor_dm.o(.bss.can_managers) - [Anonymous Symbol] 0x2001c5b4 Section 0 motor_dm.o(.bss.can_managers) - id_parser 0x2001d5a8 Data 4 can_1.o(.bss.id_parser) - [Anonymous Symbol] 0x2001d5a8 Section 0 can_1.o(.bss.id_parser) - inited 0x2001d5ac Data 1 can_1.o(.bss.inited) - [Anonymous Symbol] 0x2001d5ac Section 0 can_1.o(.bss.inited) - inited 0x2001d5ad Data 1 dr16.o(.bss.inited) - [Anonymous Symbol] 0x2001d5ad Section 0 dr16.o(.bss.inited) - last_firecmd 0x2001d5ae Data 1 shoot.o(.bss.last_firecmd) - [Anonymous Symbol] 0x2001d5ae Section 0 shoot.o(.bss.last_firecmd) - pxDelayedTaskList 0x2001d5bc Data 4 tasks.o(.bss.pxDelayedTaskList) - [Anonymous Symbol] 0x2001d5bc Section 0 tasks.o(.bss.pxDelayedTaskList) - pxOverflowTimerList 0x2001d5c0 Data 4 timers.o(.bss.pxOverflowTimerList) - [Anonymous Symbol] 0x2001d5c0 Section 0 timers.o(.bss.pxOverflowTimerList) - queue_list 0x2001d5c4 Data 4 can_1.o(.bss.queue_list) - [Anonymous Symbol] 0x2001d5c4 Section 0 can_1.o(.bss.queue_list) - thread_alert 0x2001dc78 Data 4 bmi088.o(.bss.thread_alert) - [Anonymous Symbol] 0x2001dc78 Section 0 bmi088.o(.bss.thread_alert) - thread_alert 0x2001dc7c Data 4 dr16.o(.bss.thread_alert) - [Anonymous Symbol] 0x2001dc7c Section 0 dr16.o(.bss.thread_alert) - tx_queues 0x2001dc80 Data 2064 can_1.o(.bss.tx_queues) - [Anonymous Symbol] 0x2001dc80 Section 0 can_1.o(.bss.tx_queues) - ulMaxPRIGROUPValue 0x2001e490 Data 4 port.o(.bss.ulMaxPRIGROUPValue) - [Anonymous Symbol] 0x2001e490 Section 0 port.o(.bss.ulMaxPRIGROUPValue) - ulTaskSwitchedInTime 0x2001e494 Data 4 tasks.o(.bss.ulTaskSwitchedInTime) - [Anonymous Symbol] 0x2001e494 Section 0 tasks.o(.bss.ulTaskSwitchedInTime) - uxCurrentNumberOfTasks 0x2001e498 Data 4 tasks.o(.bss.uxCurrentNumberOfTasks) - [Anonymous Symbol] 0x2001e498 Section 0 tasks.o(.bss.uxCurrentNumberOfTasks) - uxSchedulerSuspended 0x2001e49c Data 4 tasks.o(.bss.uxSchedulerSuspended) - [Anonymous Symbol] 0x2001e49c Section 0 tasks.o(.bss.uxSchedulerSuspended) - uxTaskNumber 0x2001e4a0 Data 4 tasks.o(.bss.uxTaskNumber) - [Anonymous Symbol] 0x2001e4a0 Section 0 tasks.o(.bss.uxTaskNumber) - uxTopReadyPriority 0x2001e4a4 Data 4 tasks.o(.bss.uxTopReadyPriority) - [Anonymous Symbol] 0x2001e4a4 Section 0 tasks.o(.bss.uxTopReadyPriority) - vApplicationGetIdleTaskMemory.Idle_Stack 0x2001e4a8 Data 512 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_Stack) - [Anonymous Symbol] 0x2001e4a8 Section 0 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_Stack) - vApplicationGetIdleTaskMemory.Idle_TCB 0x2001e6a8 Data 96 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_TCB) - [Anonymous Symbol] 0x2001e6a8 Section 0 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_TCB) - xActiveTimerList1 0x2001e708 Data 20 timers.o(.bss.xActiveTimerList1) - [Anonymous Symbol] 0x2001e708 Section 0 timers.o(.bss.xActiveTimerList1) - xBlockAllocatedBit 0x2001e71c Data 1 heap_4.o(.bss.xBlockAllocatedBit) - [Anonymous Symbol] 0x2001e71c Section 0 heap_4.o(.bss.xBlockAllocatedBit) - xDelayedTaskList1 0x2001e720 Data 20 tasks.o(.bss.xDelayedTaskList1) - [Anonymous Symbol] 0x2001e720 Section 0 tasks.o(.bss.xDelayedTaskList1) - xFreeBytesRemaining 0x2001e734 Data 4 heap_4.o(.bss.xFreeBytesRemaining) - [Anonymous Symbol] 0x2001e734 Section 0 heap_4.o(.bss.xFreeBytesRemaining) - xNextTaskUnblockTime 0x2001e738 Data 4 tasks.o(.bss.xNextTaskUnblockTime) - [Anonymous Symbol] 0x2001e738 Section 0 tasks.o(.bss.xNextTaskUnblockTime) - xNumberOfSuccessfulAllocations 0x2001e73c Data 4 heap_4.o(.bss.xNumberOfSuccessfulAllocations) - [Anonymous Symbol] 0x2001e73c Section 0 heap_4.o(.bss.xNumberOfSuccessfulAllocations) - xPendedTicks 0x2001e740 Data 4 tasks.o(.bss.xPendedTicks) - [Anonymous Symbol] 0x2001e740 Section 0 tasks.o(.bss.xPendedTicks) - xStart 0x2001e784 Data 8 heap_4.o(.bss.xStart) - [Anonymous Symbol] 0x2001e784 Section 0 heap_4.o(.bss.xStart) - xSuspendedTaskList 0x2001e78c Data 20 tasks.o(.bss.xSuspendedTaskList) - [Anonymous Symbol] 0x2001e78c Section 0 tasks.o(.bss.xSuspendedTaskList) - xTimerTaskHandle 0x2001e7a0 Data 4 timers.o(.bss.xTimerTaskHandle) - [Anonymous Symbol] 0x2001e7a0 Section 0 timers.o(.bss.xTimerTaskHandle) - Stack_Mem 0x2001e7a8 Data 2048 startup_stm32f407xx.o(STACK) - STACK 0x2001e7a8 Section 2048 startup_stm32f407xx.o(STACK) - __initial_sp 0x2001efa8 Data 0 startup_stm32f407xx.o(STACK) + .ARM.Collect$$libinit$$0000000D 0x0800027a Section 4 libinit2.o(.ARM.Collect$$libinit$$0000000D) + .ARM.Collect$$libinit$$0000000E 0x0800027e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000E) + .ARM.Collect$$libinit$$0000000F 0x0800027e Section 6 libinit2.o(.ARM.Collect$$libinit$$0000000F) + .ARM.Collect$$libinit$$00000011 0x08000284 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011) + .ARM.Collect$$libinit$$00000013 0x08000284 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013) + .ARM.Collect$$libinit$$00000015 0x08000284 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015) + .ARM.Collect$$libinit$$00000016 0x08000284 Section 10 libinit2.o(.ARM.Collect$$libinit$$00000016) + .ARM.Collect$$libinit$$00000017 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017) + .ARM.Collect$$libinit$$00000019 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019) + .ARM.Collect$$libinit$$0000001B 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B) + .ARM.Collect$$libinit$$0000001D 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D) + .ARM.Collect$$libinit$$0000001F 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F) + .ARM.Collect$$libinit$$00000021 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021) + .ARM.Collect$$libinit$$00000023 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023) + .ARM.Collect$$libinit$$00000025 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000025) + .ARM.Collect$$libinit$$0000002C 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C) + .ARM.Collect$$libinit$$0000002E 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E) + .ARM.Collect$$libinit$$00000030 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030) + .ARM.Collect$$libinit$$00000032 0x0800028e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000032) + .ARM.Collect$$libinit$$00000033 0x0800028e Section 2 libinit2.o(.ARM.Collect$$libinit$$00000033) + .ARM.Collect$$libshutdown$$00000000 0x08000290 Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000) + .ARM.Collect$$libshutdown$$00000002 0x08000292 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) + .ARM.Collect$$libshutdown$$00000004 0x08000292 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) + .ARM.Collect$$libshutdown$$00000007 0x08000292 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) + .ARM.Collect$$libshutdown$$0000000A 0x08000292 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) + .ARM.Collect$$libshutdown$$0000000C 0x08000292 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) + .ARM.Collect$$libshutdown$$0000000F 0x08000292 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) + .ARM.Collect$$libshutdown$$00000010 0x08000292 Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) + .ARM.Collect$$rtentry$$00000000 0x08000294 Section 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000) + .ARM.Collect$$rtentry$$00000002 0x08000294 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002) + .ARM.Collect$$rtentry$$00000004 0x08000294 Section 6 __rtentry4.o(.ARM.Collect$$rtentry$$00000004) + .ARM.Collect$$rtentry$$00000009 0x0800029a Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009) + .ARM.Collect$$rtentry$$0000000A 0x0800029a Section 4 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) + .ARM.Collect$$rtentry$$0000000C 0x0800029e Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) + .ARM.Collect$$rtentry$$0000000D 0x0800029e Section 8 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) + .ARM.Collect$$rtexit$$00000000 0x080002a6 Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000) + .ARM.Collect$$rtexit$$00000002 0x080002a8 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002) + .ARM.Collect$$rtexit$$00000003 0x080002a8 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003) + .ARM.Collect$$rtexit$$00000004 0x080002ac Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004) + $v0 0x080002b4 Number 0 startup_stm32f407xx.o(.text) + .text 0x080002b4 Section 64 startup_stm32f407xx.o(.text) + .text 0x080002f4 Section 240 lludivv7m.o(.text) + .text 0x080003e4 Section 0 __2sprintf.o(.text) + .text 0x08000410 Section 0 __2snprintf.o(.text) + .text 0x08000448 Section 0 _printf_str.o(.text) + .text 0x0800049c Section 0 _printf_dec.o(.text) + .text 0x08000514 Section 0 __printf_wp.o(.text) + .text 0x08000624 Section 0 rand.o(.text) + .text 0x08000660 Section 0 strlen.o(.text) + .text 0x0800069e Section 138 rt_memcpy_v6.o(.text) + .text 0x08000728 Section 100 rt_memcpy_w.o(.text) + .text 0x0800078c Section 16 aeabi_memset4.o(.text) + .text 0x0800079c Section 78 rt_memclr_w.o(.text) + .text 0x080007ea Section 0 heapauxi.o(.text) + .text 0x080007f0 Section 0 _rserrno.o(.text) + .text 0x08000806 Section 0 _printf_intcommon.o(.text) + _fp_digits 0x080008b9 Thumb Code 432 _printf_fp_dec.o(.text) + .text 0x080008b8 Section 0 _printf_fp_dec.o(.text) + _printf_input_char 0x08000cd5 Thumb Code 10 _printf_char_common.o(.text) + .text 0x08000cd4 Section 0 _printf_char_common.o(.text) + .text 0x08000d04 Section 0 _sputc.o(.text) + .text 0x08000d0e Section 0 _snputc.o(.text) + .text 0x08000d1e Section 0 _printf_char.o(.text) + .text 0x08000d4c Section 8 rt_locale_intlibspace.o(.text) + .text 0x08000d54 Section 8 rt_errno_addr_intlibspace.o(.text) + .text 0x08000d5c Section 138 lludiv10.o(.text) + .text 0x08000de8 Section 0 _printf_fp_infnan.o(.text) + .text 0x08000e68 Section 0 bigflt0.o(.text) + .text 0x08000f4c Section 8 libspace.o(.text) + .text 0x08000f54 Section 74 sys_stackheap_outer.o(.text) + .text 0x08000f9e Section 0 exit.o(.text) + .text 0x08000fb0 Section 124 strcmpv7em.o(.text) + .text 0x0800102c Section 0 sys_exit.o(.text) + .text 0x08001038 Section 2 use_no_semi.o(.text) + .text 0x0800103a Section 0 indicate_semi.o(.text) + [Anonymous Symbol] 0x0800103c Section 0 ahrs.o(.text.AHRS_GetEulr) + [Anonymous Symbol] 0x08001118 Section 0 ahrs.o(.text.AHRS_Init) + [Anonymous Symbol] 0x0800129c Section 0 ahrs.o(.text.AHRS_ResetEulr) + [Anonymous Symbol] 0x080012a8 Section 0 ahrs.o(.text.AHRS_Update) + AHRS_UpdateIMU 0x08001839 Thumb Code 752 ahrs.o(.text.AHRS_UpdateIMU) + [Anonymous Symbol] 0x08001838 Section 0 ahrs.o(.text.AHRS_UpdateIMU) + [Anonymous Symbol] 0x08001b28 Section 0 user_math.o(.text.AbsClip) + BMI088_AcclIntCallback 0x08001b4d Thumb Code 20 bmi088.o(.text.BMI088_AcclIntCallback) + [Anonymous Symbol] 0x08001b4c Section 0 bmi088.o(.text.BMI088_AcclIntCallback) + [Anonymous Symbol] 0x08001b60 Section 0 bmi088.o(.text.BMI088_AcclStartDmaRecv) + [Anonymous Symbol] 0x08001b78 Section 0 bmi088.o(.text.BMI088_AcclWaitDmaCplt) + [Anonymous Symbol] 0x08001b88 Section 0 bmi088.o(.text.BMI088_GetUpdateFreq) + BMI088_GyroIntCallback 0x08001b95 Thumb Code 20 bmi088.o(.text.BMI088_GyroIntCallback) + [Anonymous Symbol] 0x08001b94 Section 0 bmi088.o(.text.BMI088_GyroIntCallback) + [Anonymous Symbol] 0x08001ba8 Section 0 bmi088.o(.text.BMI088_GyroStartDmaRecv) + [Anonymous Symbol] 0x08001bc4 Section 0 bmi088.o(.text.BMI088_GyroWaitDmaCplt) + [Anonymous Symbol] 0x08001bd4 Section 0 bmi088.o(.text.BMI088_Init) + [Anonymous Symbol] 0x08001d18 Section 0 bmi088.o(.text.BMI088_ParseAccl) + [Anonymous Symbol] 0x08001dac Section 0 bmi088.o(.text.BMI088_ParseGyro) + BMI088_RxCpltCallback 0x08001e31 Thumb Code 64 bmi088.o(.text.BMI088_RxCpltCallback) + [Anonymous Symbol] 0x08001e30 Section 0 bmi088.o(.text.BMI088_RxCpltCallback) + [Anonymous Symbol] 0x08001e70 Section 0 bmi088.o(.text.BMI088_WaitNew) + BMI_Read 0x08001e81 Thumb Code 74 bmi088.o(.text.BMI_Read) + [Anonymous Symbol] 0x08001e80 Section 0 bmi088.o(.text.BMI_Read) + BMI_ReadSingle 0x08001ecd Thumb Code 108 bmi088.o(.text.BMI_ReadSingle) + [Anonymous Symbol] 0x08001ecc Section 0 bmi088.o(.text.BMI_ReadSingle) + BMI_WriteSingle 0x08001f39 Thumb Code 84 bmi088.o(.text.BMI_WriteSingle) + [Anonymous Symbol] 0x08001f38 Section 0 bmi088.o(.text.BMI_WriteSingle) + BSP_CAN_CreateIdQueue 0x08001f8d Thumb Code 146 can_1.o(.text.BSP_CAN_CreateIdQueue) + [Anonymous Symbol] 0x08001f8c Section 0 can_1.o(.text.BSP_CAN_CreateIdQueue) + BSP_CAN_DefaultIdParser 0x08002021 Thumb Code 2 can_1.o(.text.BSP_CAN_DefaultIdParser) + [Anonymous Symbol] 0x08002020 Section 0 can_1.o(.text.BSP_CAN_DefaultIdParser) + BSP_CAN_FindQueue 0x08002025 Thumb Code 38 can_1.o(.text.BSP_CAN_FindQueue) + [Anonymous Symbol] 0x08002024 Section 0 can_1.o(.text.BSP_CAN_FindQueue) + BSP_CAN_GetFrameType 0x0800204d Thumb Code 26 can_1.o(.text.BSP_CAN_GetFrameType) + [Anonymous Symbol] 0x0800204c Section 0 can_1.o(.text.BSP_CAN_GetFrameType) + [Anonymous Symbol] 0x08002068 Section 0 can_1.o(.text.BSP_CAN_GetHandle) + [Anonymous Symbol] 0x08002090 Section 0 can_1.o(.text.BSP_CAN_GetMessage) + [Anonymous Symbol] 0x08002110 Section 0 can_1.o(.text.BSP_CAN_Init) + [Anonymous Symbol] 0x08002244 Section 0 can_1.o(.text.BSP_CAN_ParseId) + [Anonymous Symbol] 0x08002258 Section 0 can_1.o(.text.BSP_CAN_RegisterCallback) + [Anonymous Symbol] 0x0800229c Section 0 can_1.o(.text.BSP_CAN_RegisterId) + BSP_CAN_RxFifo0Callback 0x080022bd Thumb Code 194 can_1.o(.text.BSP_CAN_RxFifo0Callback) + [Anonymous Symbol] 0x080022bc Section 0 can_1.o(.text.BSP_CAN_RxFifo0Callback) + BSP_CAN_RxFifo1Callback 0x08002381 Thumb Code 194 can_1.o(.text.BSP_CAN_RxFifo1Callback) + [Anonymous Symbol] 0x08002380 Section 0 can_1.o(.text.BSP_CAN_RxFifo1Callback) + [Anonymous Symbol] 0x08002444 Section 0 can_1.o(.text.BSP_CAN_Transmit) + [Anonymous Symbol] 0x08002528 Section 0 can_1.o(.text.BSP_CAN_TransmitStdDataFrame) + BSP_CAN_TxCompleteCallback 0x08002551 Thumb Code 100 can_1.o(.text.BSP_CAN_TxCompleteCallback) + [Anonymous Symbol] 0x08002550 Section 0 can_1.o(.text.BSP_CAN_TxCompleteCallback) + BSP_CAN_TxQueueInit 0x080025b5 Thumb Code 28 can_1.o(.text.BSP_CAN_TxQueueInit) + [Anonymous Symbol] 0x080025b4 Section 0 can_1.o(.text.BSP_CAN_TxQueueInit) + BSP_CAN_TxQueueIsEmpty 0x080025d1 Thumb Code 34 can_1.o(.text.BSP_CAN_TxQueueIsEmpty) + [Anonymous Symbol] 0x080025d0 Section 0 can_1.o(.text.BSP_CAN_TxQueueIsEmpty) + BSP_CAN_TxQueuePop 0x080025f5 Thumb Code 116 can_1.o(.text.BSP_CAN_TxQueuePop) + [Anonymous Symbol] 0x080025f4 Section 0 can_1.o(.text.BSP_CAN_TxQueuePop) + BSP_CAN_TxQueuePush 0x08002669 Thumb Code 126 can_1.o(.text.BSP_CAN_TxQueuePush) + [Anonymous Symbol] 0x08002668 Section 0 can_1.o(.text.BSP_CAN_TxQueuePush) + [Anonymous Symbol] 0x080026e8 Section 0 mm.o(.text.BSP_Free) + [Anonymous Symbol] 0x080026f0 Section 0 gpio_1.o(.text.BSP_GPIO_DisableIRQ) + [Anonymous Symbol] 0x08002724 Section 0 gpio_1.o(.text.BSP_GPIO_EnableIRQ) + [Anonymous Symbol] 0x08002758 Section 0 gpio_1.o(.text.BSP_GPIO_ReadPin) + [Anonymous Symbol] 0x08002784 Section 0 gpio_1.o(.text.BSP_GPIO_RegisterCallback) + [Anonymous Symbol] 0x080027d0 Section 0 gpio_1.o(.text.BSP_GPIO_WritePin) + [Anonymous Symbol] 0x08002800 Section 0 mm.o(.text.BSP_Malloc) + [Anonymous Symbol] 0x08002808 Section 0 pwm.o(.text.BSP_PWM_SetComp) + [Anonymous Symbol] 0x08002868 Section 0 pwm.o(.text.BSP_PWM_Start) + [Anonymous Symbol] 0x08002894 Section 0 spi_1.o(.text.BSP_SPI_GetHandle) + [Anonymous Symbol] 0x080028a8 Section 0 spi_1.o(.text.BSP_SPI_Receive) + [Anonymous Symbol] 0x080028dc Section 0 spi_1.o(.text.BSP_SPI_RegisterCallback) + [Anonymous Symbol] 0x080028fc Section 0 spi_1.o(.text.BSP_SPI_Transmit) + [Anonymous Symbol] 0x08002930 Section 0 time.o(.text.BSP_TIME_Delay_ms) + [Anonymous Symbol] 0x08002988 Section 0 time.o(.text.BSP_TIME_Get_us) + [Anonymous Symbol] 0x080029d8 Section 0 uart.o(.text.BSP_UART_GetHandle) + [Anonymous Symbol] 0x080029f8 Section 0 uart.o(.text.BSP_UART_IRQHandler) + [Anonymous Symbol] 0x08002a34 Section 0 uart.o(.text.BSP_UART_RegisterCallback) + [Anonymous Symbol] 0x08002a68 Section 0 uart.o(.text.BSP_UART_Transmit) + [Anonymous Symbol] 0x08002aa8 Section 0 stm32f4xx_it.o(.text.BusFault_Handler) + [Anonymous Symbol] 0x08002aac Section 0 stm32f4xx_it.o(.text.CAN1_RX0_IRQHandler) + [Anonymous Symbol] 0x08002abc Section 0 stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler) + [Anonymous Symbol] 0x08002acc Section 0 stm32f4xx_it.o(.text.CAN1_TX_IRQHandler) + [Anonymous Symbol] 0x08002adc Section 0 stm32f4xx_it.o(.text.CAN2_RX0_IRQHandler) + [Anonymous Symbol] 0x08002aec Section 0 stm32f4xx_it.o(.text.CAN2_RX1_IRQHandler) + [Anonymous Symbol] 0x08002afc Section 0 stm32f4xx_it.o(.text.CAN2_TX_IRQHandler) + CAN_Get 0x08002b0d Thumb Code 36 can_1.o(.text.CAN_Get) + [Anonymous Symbol] 0x08002b0c Section 0 can_1.o(.text.CAN_Get) + [Anonymous Symbol] 0x08002b30 Section 0 cmd_adapter.o(.text.CMD_Adapter_GetInput) + [Anonymous Symbol] 0x08002b64 Section 0 cmd_adapter.o(.text.CMD_Adapter_InitAll) + [Anonymous Symbol] 0x08002ba0 Section 0 cmd_adapter.o(.text.CMD_Adapter_Register) + [Anonymous Symbol] 0x08002bc0 Section 0 cmd_1.o(.text.CMD_Arbitrate) + [Anonymous Symbol] 0x08002c24 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_ACCELERATE) + [Anonymous Symbol] 0x08002c48 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_AUTOAIM) + [Anonymous Symbol] 0x08002c4c Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_BACK) + [Anonymous Symbol] 0x08002c64 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_CHECKSOURCERCPC) + [Anonymous Symbol] 0x08002c88 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_DECELERATE) + [Anonymous Symbol] 0x08002cac Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE) + [Anonymous Symbol] 0x08002cb8 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE_MODE) + [Anonymous Symbol] 0x08002ccc Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_FORE) + [Anonymous Symbol] 0x08002ce4 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_LEFT) + [Anonymous Symbol] 0x08002cfc Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_RIGHT) + [Anonymous Symbol] 0x08002d14 Section 0 cmd_behavior.o(.text.CMD_Behavior_Handle_ROTOR) + [Anonymous Symbol] 0x08002d28 Section 0 cmd_behavior.o(.text.CMD_Behavior_Init) + [Anonymous Symbol] 0x08002d2c Section 0 cmd_behavior.o(.text.CMD_Behavior_IsTriggered) + [Anonymous Symbol] 0x08002df8 Section 0 cmd_behavior.o(.text.CMD_Behavior_ProcessAll) + [Anonymous Symbol] 0x08002e4c Section 0 cmd_adapter.o(.text.CMD_ET16s_GetInput) + [Anonymous Symbol] 0x08002f40 Section 0 cmd_adapter.o(.text.CMD_ET16s_Init) + [Anonymous Symbol] 0x08002f48 Section 0 cmd_adapter.o(.text.CMD_ET16s_IsOnline) + [Anonymous Symbol] 0x08002f50 Section 0 cmd_1.o(.text.CMD_GenerateCommands) + [Anonymous Symbol] 0x08002fe8 Section 0 cmd_1.o(.text.CMD_Init) + CMD_PC_BuildChassisCmd 0x08003011 Thumb Code 42 cmd_1.o(.text.CMD_PC_BuildChassisCmd) + [Anonymous Symbol] 0x08003010 Section 0 cmd_1.o(.text.CMD_PC_BuildChassisCmd) + CMD_PC_BuildGimbalCmd 0x0800303d Thumb Code 104 cmd_1.o(.text.CMD_PC_BuildGimbalCmd) + [Anonymous Symbol] 0x0800303c Section 0 cmd_1.o(.text.CMD_PC_BuildGimbalCmd) + CMD_PC_BuildShootCmd 0x080030a5 Thumb Code 44 cmd_1.o(.text.CMD_PC_BuildShootCmd) + [Anonymous Symbol] 0x080030a4 Section 0 cmd_1.o(.text.CMD_PC_BuildShootCmd) + CMD_RC_BuildChassisCmd 0x080030d1 Thumb Code 58 cmd_1.o(.text.CMD_RC_BuildChassisCmd) + [Anonymous Symbol] 0x080030d0 Section 0 cmd_1.o(.text.CMD_RC_BuildChassisCmd) + CMD_RC_BuildGimbalCmd 0x0800310d Thumb Code 72 cmd_1.o(.text.CMD_RC_BuildGimbalCmd) + [Anonymous Symbol] 0x0800310c Section 0 cmd_1.o(.text.CMD_RC_BuildGimbalCmd) + CMD_RC_BuildShootCmd 0x08003155 Thumb Code 94 cmd_1.o(.text.CMD_RC_BuildShootCmd) + [Anonymous Symbol] 0x08003154 Section 0 cmd_1.o(.text.CMD_RC_BuildShootCmd) + CMD_SetOfflineMode 0x080031b5 Thumb Code 18 cmd_1.o(.text.CMD_SetOfflineMode) + [Anonymous Symbol] 0x080031b4 Section 0 cmd_1.o(.text.CMD_SetOfflineMode) + [Anonymous Symbol] 0x080031c8 Section 0 cmd_1.o(.text.CMD_Update) + [Anonymous Symbol] 0x080031e4 Section 0 cmd_1.o(.text.CMD_UpdateInput) + Chassis_CalcWz 0x08003251 Thumb Code 108 chassis.o(.text.Chassis_CalcWz) + [Anonymous Symbol] 0x08003250 Section 0 chassis.o(.text.Chassis_CalcWz) + [Anonymous Symbol] 0x080032bc Section 0 chassis.o(.text.Chassis_Control) + Chassis_SetMode 0x080034f5 Thumb Code 120 chassis.o(.text.Chassis_SetMode) + [Anonymous Symbol] 0x080034f4 Section 0 chassis.o(.text.Chassis_SetMode) + [Anonymous Symbol] 0x0800356c Section 0 chassis.o(.text.Chassis_Setoutput) + [Anonymous Symbol] 0x080035d8 Section 0 chassis.o(.text.Chassis_speed_calculate) + [Anonymous Symbol] 0x08003bc8 Section 0 chassis.o(.text.Chassis_update) + [Anonymous Symbol] 0x08003d6c Section 0 user_math.o(.text.CircleAdd) + [Anonymous Symbol] 0x08003da8 Section 0 user_math.o(.text.CircleError) + [Anonymous Symbol] 0x08003de4 Section 0 user_math.o(.text.Clip) + [Anonymous Symbol] 0x08003e0c Section 0 config.o(.text.Config_GetRobotParam) + [Anonymous Symbol] 0x08003e18 Section 0 stm32f4xx_it.o(.text.DMA1_Stream1_IRQHandler) + [Anonymous Symbol] 0x08003e28 Section 0 stm32f4xx_it.o(.text.DMA2_Stream1_IRQHandler) + [Anonymous Symbol] 0x08003e38 Section 0 stm32f4xx_it.o(.text.DMA2_Stream2_IRQHandler) + [Anonymous Symbol] 0x08003e48 Section 0 stm32f4xx_it.o(.text.DMA2_Stream3_IRQHandler) + [Anonymous Symbol] 0x08003e58 Section 0 stm32f4xx_it.o(.text.DMA2_Stream6_IRQHandler) + DMA_CalcBaseAndBitshift 0x08003e69 Thumb Code 52 stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift) + [Anonymous Symbol] 0x08003e68 Section 0 stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift) + DMA_CalcBaseAndBitshift.flagBitshiftOffset 0x08003e9c Number 0 stm32f4xx_hal_dma.o(.text.DMA_CalcBaseAndBitshift) + DMA_CheckFifoParam 0x08003ea5 Thumb Code 80 stm32f4xx_hal_dma.o(.text.DMA_CheckFifoParam) + [Anonymous Symbol] 0x08003ea4 Section 0 stm32f4xx_hal_dma.o(.text.DMA_CheckFifoParam) + DMA_SetConfig 0x08003ef5 Thumb Code 48 stm32f4xx_hal_dma.o(.text.DMA_SetConfig) + [Anonymous Symbol] 0x08003ef4 Section 0 stm32f4xx_hal_dma.o(.text.DMA_SetConfig) + [Anonymous Symbol] 0x08003f24 Section 0 dr16.o(.text.DR16_Init) + DR16_RxCpltCallback 0x08003f6d Thumb Code 20 dr16.o(.text.DR16_RxCpltCallback) + [Anonymous Symbol] 0x08003f6c Section 0 dr16.o(.text.DR16_RxCpltCallback) + [Anonymous Symbol] 0x08003f80 Section 0 stm32f4xx_it.o(.text.DebugMon_Handler) + [Anonymous Symbol] 0x08003f84 Section 0 et16s.o(.text.ET16S_ParseRC) + [Anonymous Symbol] 0x08004018 Section 0 et16s.o(.text.ET16s_HandleOffline) + [Anonymous Symbol] 0x08004050 Section 0 et16s.o(.text.ET16s_ParseRaw) + [Anonymous Symbol] 0x080042b8 Section 0 stm32f4xx_it.o(.text.EXTI0_IRQHandler) + [Anonymous Symbol] 0x080042c4 Section 0 stm32f4xx_it.o(.text.EXTI3_IRQHandler) + [Anonymous Symbol] 0x080042d0 Section 0 stm32f4xx_it.o(.text.EXTI4_IRQHandler) + [Anonymous Symbol] 0x080042dc Section 0 stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) + [Anonymous Symbol] 0x080042e8 Section 0 main.o(.text.Error_Handler) + [Anonymous Symbol] 0x080042f0 Section 0 gimbal.o(.text.Gimbal_Control) + [Anonymous Symbol] 0x08004690 Section 0 gimbal.o(.text.Gimbal_Control_mode) + Gimbal_Direction 0x080046e9 Thumb Code 164 gimbal.o(.text.Gimbal_Direction) + [Anonymous Symbol] 0x080046e8 Section 0 gimbal.o(.text.Gimbal_Direction) + [Anonymous Symbol] 0x0800478c Section 0 gimbal.o(.text.Gimbal_Init) + [Anonymous Symbol] 0x080048e4 Section 0 gimbal.o(.text.Gimbal_Output) + Gimbal_SetMode 0x08004a01 Thumb Code 136 gimbal.o(.text.Gimbal_SetMode) + [Anonymous Symbol] 0x08004a00 Section 0 gimbal.o(.text.Gimbal_SetMode) + [Anonymous Symbol] 0x08004a88 Section 0 gimbal.o(.text.Gimbal_UpdateFeedback) + [Anonymous Symbol] 0x08004ba8 Section 0 gimbal.o(.text.Gimbal_UpdateIMU) + [Anonymous Symbol] 0x08004bf8 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_ActivateNotification) + [Anonymous Symbol] 0x08004c20 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_AddTxMessage) + [Anonymous Symbol] 0x08004cb4 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_ConfigFilter) + [Anonymous Symbol] 0x08004d94 Section 0 can_1.o(.text.HAL_CAN_ErrorCallback) + [Anonymous Symbol] 0x08004db8 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxFifoFillLevel) + [Anonymous Symbol] 0x08004dd8 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxMessage) + [Anonymous Symbol] 0x08004efc Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_GetTxMailboxesFreeLevel) + [Anonymous Symbol] 0x08004f24 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_IRQHandler) + [Anonymous Symbol] 0x08005160 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_Init) + [Anonymous Symbol] 0x08005254 Section 0 can.o(.text.HAL_CAN_MspInit) + [Anonymous Symbol] 0x0800539c Section 0 can_1.o(.text.HAL_CAN_RxFifo0FullCallback) + [Anonymous Symbol] 0x080053c0 Section 0 can_1.o(.text.HAL_CAN_RxFifo0MsgPendingCallback) + [Anonymous Symbol] 0x080053e4 Section 0 can_1.o(.text.HAL_CAN_RxFifo1FullCallback) + [Anonymous Symbol] 0x08005408 Section 0 can_1.o(.text.HAL_CAN_RxFifo1MsgPendingCallback) + [Anonymous Symbol] 0x0800542c Section 0 can_1.o(.text.HAL_CAN_SleepCallback) + [Anonymous Symbol] 0x08005450 Section 0 stm32f4xx_hal_can.o(.text.HAL_CAN_Start) + [Anonymous Symbol] 0x080054ac Section 0 can_1.o(.text.HAL_CAN_TxMailbox0AbortCallback) + [Anonymous Symbol] 0x080054d0 Section 0 can_1.o(.text.HAL_CAN_TxMailbox0CompleteCallback) + [Anonymous Symbol] 0x080054f4 Section 0 can_1.o(.text.HAL_CAN_TxMailbox1AbortCallback) + [Anonymous Symbol] 0x08005518 Section 0 can_1.o(.text.HAL_CAN_TxMailbox1CompleteCallback) + [Anonymous Symbol] 0x0800553c Section 0 can_1.o(.text.HAL_CAN_TxMailbox2AbortCallback) + [Anonymous Symbol] 0x08005560 Section 0 can_1.o(.text.HAL_CAN_TxMailbox2CompleteCallback) + [Anonymous Symbol] 0x08005584 Section 0 can_1.o(.text.HAL_CAN_WakeUpFromRxMsgCallback) + [Anonymous Symbol] 0x080055a8 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort) + [Anonymous Symbol] 0x08005628 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort_IT) + [Anonymous Symbol] 0x0800564c Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_IRQHandler) + [Anonymous Symbol] 0x080057d8 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Init) + [Anonymous Symbol] 0x080058a8 Section 0 stm32f4xx_hal_dma.o(.text.HAL_DMA_Start_IT) + [Anonymous Symbol] 0x0800590c Section 0 stm32f4xx_hal.o(.text.HAL_Delay) + [Anonymous Symbol] 0x08005934 Section 0 gpio_1.o(.text.HAL_GPIO_EXTI_Callback) + [Anonymous Symbol] 0x08005960 Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) + [Anonymous Symbol] 0x0800597c Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init) + [Anonymous Symbol] 0x08005b18 Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) + [Anonymous Symbol] 0x08005b24 Section 0 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_WritePin) + [Anonymous Symbol] 0x08005b30 Section 0 stm32f4xx_hal.o(.text.HAL_GetTick) + [Anonymous Symbol] 0x08005b3c Section 0 stm32f4xx_hal_i2c.o(.text.HAL_I2C_Init) + [Anonymous Symbol] 0x08005cd4 Section 0 i2c.o(.text.HAL_I2C_MspInit) + [Anonymous Symbol] 0x08005dac Section 0 stm32f4xx_hal.o(.text.HAL_IncTick) + [Anonymous Symbol] 0x08005dc8 Section 0 stm32f4xx_hal.o(.text.HAL_Init) + [Anonymous Symbol] 0x08005e00 Section 0 stm32f4xx_hal.o(.text.HAL_InitTick) + [Anonymous Symbol] 0x08005e50 Section 0 stm32f4xx_hal_msp.o(.text.HAL_MspInit) + [Anonymous Symbol] 0x08005e98 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) + [Anonymous Symbol] 0x08005ea0 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) + [Anonymous Symbol] 0x08005ea8 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) + [Anonymous Symbol] 0x08005ec8 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) + [Anonymous Symbol] 0x08005ed0 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) + [Anonymous Symbol] 0x08006030 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) + [Anonymous Symbol] 0x0800603c Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) + [Anonymous Symbol] 0x08006060 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) + [Anonymous Symbol] 0x08006084 Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) + [Anonymous Symbol] 0x080060ec Section 0 stm32f4xx_hal_rcc.o(.text.HAL_RCC_OscConfig) + [Anonymous Symbol] 0x08006434 Section 0 spi_1.o(.text.HAL_SPI_ErrorCallback) + [Anonymous Symbol] 0x08006458 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Init) + [Anonymous Symbol] 0x0800650c Section 0 spi.o(.text.HAL_SPI_MspInit) + [Anonymous Symbol] 0x0800663c Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive) + [Anonymous Symbol] 0x080067b0 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA) + [Anonymous Symbol] 0x0800689c Section 0 spi_1.o(.text.HAL_SPI_RxCpltCallback) + [Anonymous Symbol] 0x080068c0 Section 0 spi_1.o(.text.HAL_SPI_RxHalfCpltCallback) + [Anonymous Symbol] 0x080068e4 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit) + [Anonymous Symbol] 0x08006a70 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive) + [Anonymous Symbol] 0x08006c68 Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA) + [Anonymous Symbol] 0x08006d8c Section 0 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA) + [Anonymous Symbol] 0x08006e58 Section 0 spi_1.o(.text.HAL_SPI_TxCpltCallback) + [Anonymous Symbol] 0x08006e78 Section 0 spi_1.o(.text.HAL_SPI_TxHalfCpltCallback) + [Anonymous Symbol] 0x08006e9c Section 0 spi_1.o(.text.HAL_SPI_TxRxCpltCallback) + [Anonymous Symbol] 0x08006ec0 Section 0 spi_1.o(.text.HAL_SPI_TxRxHalfCpltCallback) + [Anonymous Symbol] 0x08006ee4 Section 0 stm32f4xx_hal_cortex.o(.text.HAL_SYSTICK_Config) + [Anonymous Symbol] 0x08006eec Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) + [Anonymous Symbol] 0x08006ef0 Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) + [Anonymous Symbol] 0x08006ef4 Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) + [Anonymous Symbol] 0x08006f40 Section 0 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) + [Anonymous Symbol] 0x08006ff8 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init) + [Anonymous Symbol] 0x08007054 Section 0 tim.o(.text.HAL_TIM_Base_MspInit) + [Anonymous Symbol] 0x08007108 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) + [Anonymous Symbol] 0x080071e8 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) + [Anonymous Symbol] 0x080071ec Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler) + [Anonymous Symbol] 0x08007320 Section 0 tim.o(.text.HAL_TIM_MspPostInit) + [Anonymous Symbol] 0x080073c4 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) + [Anonymous Symbol] 0x080073c8 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) + [Anonymous Symbol] 0x08007460 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init) + [Anonymous Symbol] 0x080074bc Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit) + [Anonymous Symbol] 0x080074c0 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) + [Anonymous Symbol] 0x080074c4 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Start) + [Anonymous Symbol] 0x080075e8 Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback) + [Anonymous Symbol] 0x080075ec Section 0 stm32f4xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) + [Anonymous Symbol] 0x080075f0 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UARTEx_RxEventCallback) + [Anonymous Symbol] 0x080075f4 Section 0 uart.o(.text.HAL_UART_ErrorCallback) + [Anonymous Symbol] 0x0800761c Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler) + [Anonymous Symbol] 0x08007878 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Init) + [Anonymous Symbol] 0x080078d8 Section 0 usart.o(.text.HAL_UART_MspInit) + [Anonymous Symbol] 0x08007bb4 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Receive_DMA) + [Anonymous Symbol] 0x08007be0 Section 0 uart.o(.text.HAL_UART_RxCpltCallback) + [Anonymous Symbol] 0x08007c08 Section 0 uart.o(.text.HAL_UART_RxHalfCpltCallback) + [Anonymous Symbol] 0x08007c30 Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA) + [Anonymous Symbol] 0x08007cbc Section 0 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_IT) + [Anonymous Symbol] 0x08007cf4 Section 0 uart.o(.text.HAL_UART_TxCpltCallback) + [Anonymous Symbol] 0x08007d1c Section 0 uart.o(.text.HAL_UART_TxHalfCpltCallback) + [Anonymous Symbol] 0x08007d40 Section 0 stm32f4xx_it.o(.text.HardFault_Handler) + [Anonymous Symbol] 0x08007d44 Section 0 user_math.o(.text.InvSqrt) + [Anonymous Symbol] 0x08007d88 Section 0 et16s.o(.text.Keymap) + [Anonymous Symbol] 0x08007dac Section 0 filter.o(.text.LowPassFilter2p_Apply) + [Anonymous Symbol] 0x08007e28 Section 0 filter.o(.text.LowPassFilter2p_Init) + [Anonymous Symbol] 0x08007ecc Section 0 filter.o(.text.LowPassFilter2p_Reset) + MOTOR_DM_CreateCANManager 0x08007f29 Thumb Code 60 motor_dm.o(.text.MOTOR_DM_CreateCANManager) + [Anonymous Symbol] 0x08007f28 Section 0 motor_dm.o(.text.MOTOR_DM_CreateCANManager) + [Anonymous Symbol] 0x08007f64 Section 0 motor_dm.o(.text.MOTOR_DM_Enable) + MOTOR_DM_GetCANManager 0x08007fad Thumb Code 20 motor_dm.o(.text.MOTOR_DM_GetCANManager) + [Anonymous Symbol] 0x08007fac Section 0 motor_dm.o(.text.MOTOR_DM_GetCANManager) + [Anonymous Symbol] 0x08007fc0 Section 0 motor_dm.o(.text.MOTOR_DM_GetMotor) + [Anonymous Symbol] 0x08008018 Section 0 motor_dm.o(.text.MOTOR_DM_MITCtrl) + MOTOR_DM_ParseFeedbackFrame 0x08008049 Thumb Code 248 motor_dm.o(.text.MOTOR_DM_ParseFeedbackFrame) + [Anonymous Symbol] 0x08008048 Section 0 motor_dm.o(.text.MOTOR_DM_ParseFeedbackFrame) + [Anonymous Symbol] 0x08008140 Section 0 motor_dm.o(.text.MOTOR_DM_Register) + MOTOR_DM_SendMITCmd 0x080081e5 Thumb Code 280 motor_dm.o(.text.MOTOR_DM_SendMITCmd) + [Anonymous Symbol] 0x080081e4 Section 0 motor_dm.o(.text.MOTOR_DM_SendMITCmd) + [Anonymous Symbol] 0x080082fc Section 0 motor_dm.o(.text.MOTOR_DM_Update) + MOTOR_RM_CreateCANManager 0x0800839d Thumb Code 60 motor_rm.o(.text.MOTOR_RM_CreateCANManager) + [Anonymous Symbol] 0x0800839c Section 0 motor_rm.o(.text.MOTOR_RM_CreateCANManager) + [Anonymous Symbol] 0x080083d8 Section 0 motor_rm.o(.text.MOTOR_RM_Ctrl) + MOTOR_RM_GetCANManager 0x080084b1 Thumb Code 20 motor_rm.o(.text.MOTOR_RM_GetCANManager) + [Anonymous Symbol] 0x080084b0 Section 0 motor_rm.o(.text.MOTOR_RM_GetCANManager) + MOTOR_RM_GetLSB 0x080084c5 Thumb Code 38 motor_rm.o(.text.MOTOR_RM_GetLSB) + [Anonymous Symbol] 0x080084c4 Section 0 motor_rm.o(.text.MOTOR_RM_GetLSB) + MOTOR_RM_GetLogicalIndex 0x080084ed Thumb Code 40 motor_rm.o(.text.MOTOR_RM_GetLogicalIndex) + [Anonymous Symbol] 0x080084ec Section 0 motor_rm.o(.text.MOTOR_RM_GetLogicalIndex) + [Anonymous Symbol] 0x08008514 Section 0 motor_rm.o(.text.MOTOR_RM_GetMotor) + MOTOR_RM_GetRatio 0x08008565 Thumb Code 36 motor_rm.o(.text.MOTOR_RM_GetRatio) + [Anonymous Symbol] 0x08008564 Section 0 motor_rm.o(.text.MOTOR_RM_GetRatio) + [Anonymous Symbol] 0x08008588 Section 0 motor_rm.o(.text.MOTOR_RM_Register) + [Anonymous Symbol] 0x08008630 Section 0 motor_rm.o(.text.MOTOR_RM_SetOutput) + [Anonymous Symbol] 0x080086d0 Section 0 motor_rm.o(.text.MOTOR_RM_Update) + [Anonymous Symbol] 0x08008798 Section 0 can.o(.text.MX_CAN1_Init) + [Anonymous Symbol] 0x080087dc Section 0 can.o(.text.MX_CAN2_Init) + [Anonymous Symbol] 0x08008820 Section 0 dma.o(.text.MX_DMA_Init) + [Anonymous Symbol] 0x080088ac Section 0 freertos.o(.text.MX_FREERTOS_Init) + [Anonymous Symbol] 0x080088e8 Section 0 gpio.o(.text.MX_GPIO_Init) + [Anonymous Symbol] 0x08008aec Section 0 i2c.o(.text.MX_I2C1_Init) + [Anonymous Symbol] 0x08008b2c Section 0 i2c.o(.text.MX_I2C2_Init) + [Anonymous Symbol] 0x08008b6c Section 0 spi.o(.text.MX_SPI1_Init) + [Anonymous Symbol] 0x08008bbc Section 0 tim.o(.text.MX_TIM10_Init) + [Anonymous Symbol] 0x08008c44 Section 0 tim.o(.text.MX_TIM1_Init) + [Anonymous Symbol] 0x08008d50 Section 0 usart.o(.text.MX_USART1_UART_Init) + [Anonymous Symbol] 0x08008d88 Section 0 usart.o(.text.MX_USART2_UART_Init) + [Anonymous Symbol] 0x08008dc0 Section 0 usart.o(.text.MX_USART3_UART_Init) + [Anonymous Symbol] 0x08008e04 Section 0 usart.o(.text.MX_USART6_UART_Init) + [Anonymous Symbol] 0x08008e3c Section 0 stm32f4xx_it.o(.text.MemManage_Handler) + Motor_RM_Decode 0x08008e41 Thumb Code 348 motor_rm.o(.text.Motor_RM_Decode) + [Anonymous Symbol] 0x08008e40 Section 0 motor_rm.o(.text.Motor_RM_Decode) + [Anonymous Symbol] 0x08008f9c Section 0 motor_step.o(.text.Motor_Step_Init) + [Anonymous Symbol] 0x08008fa8 Section 0 stm32f4xx_it.o(.text.NMI_Handler) + NVIC_EncodePriority 0x08008fad Thumb Code 44 stm32f4xx_hal_cortex.o(.text.NVIC_EncodePriority) + [Anonymous Symbol] 0x08008fac Section 0 stm32f4xx_hal_cortex.o(.text.NVIC_EncodePriority) + [Anonymous Symbol] 0x08008fd8 Section 0 pid.o(.text.PID_Calc) + [Anonymous Symbol] 0x08009148 Section 0 pid.o(.text.PID_Init) + [Anonymous Symbol] 0x080091d8 Section 0 pid.o(.text.PID_Reset) + [Anonymous Symbol] 0x08009210 Section 0 port.o(.text.PendSV_Handler) + pxCurrentTCBConst 0x08009270 Number 0 port.o(.text.PendSV_Handler) + [Anonymous Symbol] 0x08009274 Section 0 et16s.o(.text.REMOTE_Init) + REMOTE_RxCpltCallback 0x080092b9 Thumb Code 20 et16s.o(.text.REMOTE_RxCpltCallback) + [Anonymous Symbol] 0x080092b8 Section 0 et16s.o(.text.REMOTE_RxCpltCallback) + [Anonymous Symbol] 0x080092cc Section 0 et16s.o(.text.REMOTE_StartDmaRecv) + [Anonymous Symbol] 0x080092ec Section 0 et16s.o(.text.REMOTE_WaitDmaCplt) + SPI_DMAError 0x08009305 Thumb Code 34 stm32f4xx_hal_spi.o(.text.SPI_DMAError) + [Anonymous Symbol] 0x08009304 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAError) + SPI_DMAHalfReceiveCplt 0x08009329 Thumb Code 10 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfReceiveCplt) + [Anonymous Symbol] 0x08009328 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfReceiveCplt) + SPI_DMAHalfTransmitCplt 0x08009335 Thumb Code 10 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitCplt) + [Anonymous Symbol] 0x08009334 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitCplt) + SPI_DMAHalfTransmitReceiveCplt 0x08009341 Thumb Code 10 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitReceiveCplt) + [Anonymous Symbol] 0x08009340 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAHalfTransmitReceiveCplt) + SPI_DMAReceiveCplt 0x0800934d Thumb Code 104 stm32f4xx_hal_spi.o(.text.SPI_DMAReceiveCplt) + [Anonymous Symbol] 0x0800934c Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMAReceiveCplt) + SPI_DMATransmitCplt 0x080093b5 Thumb Code 112 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitCplt) + [Anonymous Symbol] 0x080093b4 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitCplt) + SPI_DMATransmitReceiveCplt 0x08009425 Thumb Code 90 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitReceiveCplt) + [Anonymous Symbol] 0x08009424 Section 0 stm32f4xx_hal_spi.o(.text.SPI_DMATransmitReceiveCplt) + SPI_EndRxTransaction 0x08009481 Thumb Code 144 stm32f4xx_hal_spi.o(.text.SPI_EndRxTransaction) + [Anonymous Symbol] 0x08009480 Section 0 stm32f4xx_hal_spi.o(.text.SPI_EndRxTransaction) + SPI_EndRxTxTransaction 0x08009511 Thumb Code 138 stm32f4xx_hal_spi.o(.text.SPI_EndRxTxTransaction) + [Anonymous Symbol] 0x08009510 Section 0 stm32f4xx_hal_spi.o(.text.SPI_EndRxTxTransaction) + SPI_Get 0x0800959d Thumb Code 20 spi_1.o(.text.SPI_Get) + [Anonymous Symbol] 0x0800959c Section 0 spi_1.o(.text.SPI_Get) + SPI_WaitFlagStateUntilTimeout 0x080095b1 Thumb Code 224 stm32f4xx_hal_spi.o(.text.SPI_WaitFlagStateUntilTimeout) + [Anonymous Symbol] 0x080095b0 Section 0 stm32f4xx_hal_spi.o(.text.SPI_WaitFlagStateUntilTimeout) + [Anonymous Symbol] 0x08009690 Section 0 port.o(.text.SVC_Handler) + pxCurrentTCBConst2 0x080096b0 Number 0 port.o(.text.SVC_Handler) + SVC_Setup 0x080096b5 Thumb Code 8 cmsis_os2.o(.text.SVC_Setup) + [Anonymous Symbol] 0x080096b4 Section 0 cmsis_os2.o(.text.SVC_Setup) + [Anonymous Symbol] 0x080096bc Section 0 shoot.o(.text.Shoot_Init) + [Anonymous Symbol] 0x08009804 Section 0 shoot.o(.text.Shoot_SetMode) + [Anonymous Symbol] 0x08009814 Section 0 shoot.o(.text.Shoot_UpdateFeedback) + [Anonymous Symbol] 0x08009a08 Section 0 freertos.o(.text.StartDefaultTask) + SysTick_Config 0x08009a15 Thumb Code 46 stm32f4xx_hal_cortex.o(.text.SysTick_Config) + [Anonymous Symbol] 0x08009a14 Section 0 stm32f4xx_hal_cortex.o(.text.SysTick_Config) + [Anonymous Symbol] 0x08009a44 Section 0 stm32f4xx_it.o(.text.SysTick_Handler) + [Anonymous Symbol] 0x08009a58 Section 0 main.o(.text.SystemClock_Config) + [Anonymous Symbol] 0x08009afc Section 0 system_stm32f4xx.o(.text.SystemInit) + [Anonymous Symbol] 0x08009b10 Section 0 stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) + [Anonymous Symbol] 0x08009b20 Section 0 stm32f4xx_hal_tim.o(.text.TIM_Base_SetConfig) + [Anonymous Symbol] 0x08009c4c Section 0 stm32f4xx_hal_tim.o(.text.TIM_CCxChannelCmd) + [Anonymous Symbol] 0x08009c70 Section 0 stm32f4xx_hal_tim.o(.text.TIM_ETR_SetConfig) + TIM_ITRx_SetConfig 0x08009c89 Thumb Code 16 stm32f4xx_hal_tim.o(.text.TIM_ITRx_SetConfig) + [Anonymous Symbol] 0x08009c88 Section 0 stm32f4xx_hal_tim.o(.text.TIM_ITRx_SetConfig) + TIM_OC1_SetConfig 0x08009c99 Thumb Code 100 stm32f4xx_hal_tim.o(.text.TIM_OC1_SetConfig) + [Anonymous Symbol] 0x08009c98 Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC1_SetConfig) + [Anonymous Symbol] 0x08009cfc Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC2_SetConfig) + TIM_OC3_SetConfig 0x08009d69 Thumb Code 104 stm32f4xx_hal_tim.o(.text.TIM_OC3_SetConfig) + [Anonymous Symbol] 0x08009d68 Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC3_SetConfig) + TIM_OC4_SetConfig 0x08009dd1 Thumb Code 78 stm32f4xx_hal_tim.o(.text.TIM_OC4_SetConfig) + [Anonymous Symbol] 0x08009dd0 Section 0 stm32f4xx_hal_tim.o(.text.TIM_OC4_SetConfig) + TIM_TI1_ConfigInputStage 0x08009e21 Thumb Code 34 stm32f4xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) + [Anonymous Symbol] 0x08009e20 Section 0 stm32f4xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) + TIM_TI2_ConfigInputStage 0x08009e45 Thumb Code 36 stm32f4xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) + [Anonymous Symbol] 0x08009e44 Section 0 stm32f4xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) + [Anonymous Symbol] 0x08009e68 Section 0 et16s_1.o(.text.Task_ET16s) + [Anonymous Symbol] 0x08009ee8 Section 0 init.o(.text.Task_Init) + [Anonymous Symbol] 0x0800a058 Section 0 ai_1.o(.text.Task_ai) + [Anonymous Symbol] 0x0800a098 Section 0 atti_esti.o(.text.Task_atti_esti) + [Anonymous Symbol] 0x0800a210 Section 0 chassis_ctrl.o(.text.Task_chassis_ctrl) + [Anonymous Symbol] 0x0800a2a8 Section 0 cmd.o(.text.Task_cmd) + [Anonymous Symbol] 0x0800a390 Section 0 dr16_1.o(.text.Task_dr16) + [Anonymous Symbol] 0x0800a3f8 Section 0 gimbal_ctrl.o(.text.Task_gimbal_ctrl) + [Anonymous Symbol] 0x0800a4b0 Section 0 shoot_ctrl.o(.text.Task_shoot_ctrl) + [Anonymous Symbol] 0x0800a538 Section 0 step_motor_1.o(.text.Task_step_motor) + [Anonymous Symbol] 0x0800a580 Section 0 vofa_1.o(.text.Task_vofa) + UART_DMAAbortOnError 0x0800a5e1 Thumb Code 14 stm32f4xx_hal_uart.o(.text.UART_DMAAbortOnError) + [Anonymous Symbol] 0x0800a5e0 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMAAbortOnError) + UART_DMAError 0x0800a5f1 Thumb Code 76 stm32f4xx_hal_uart.o(.text.UART_DMAError) + [Anonymous Symbol] 0x0800a5f0 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMAError) + UART_DMAReceiveCplt 0x0800a63d Thumb Code 132 stm32f4xx_hal_uart.o(.text.UART_DMAReceiveCplt) + [Anonymous Symbol] 0x0800a63c Section 0 stm32f4xx_hal_uart.o(.text.UART_DMAReceiveCplt) + UART_DMARxHalfCplt 0x0800a6c1 Thumb Code 30 stm32f4xx_hal_uart.o(.text.UART_DMARxHalfCplt) + [Anonymous Symbol] 0x0800a6c0 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMARxHalfCplt) + UART_DMATransmitCplt 0x0800a6e1 Thumb Code 64 stm32f4xx_hal_uart.o(.text.UART_DMATransmitCplt) + [Anonymous Symbol] 0x0800a6e0 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMATransmitCplt) + UART_DMATxHalfCplt 0x0800a721 Thumb Code 10 stm32f4xx_hal_uart.o(.text.UART_DMATxHalfCplt) + [Anonymous Symbol] 0x0800a720 Section 0 stm32f4xx_hal_uart.o(.text.UART_DMATxHalfCplt) + UART_EndRxTransfer 0x0800a72d Thumb Code 80 stm32f4xx_hal_uart.o(.text.UART_EndRxTransfer) + [Anonymous Symbol] 0x0800a72c Section 0 stm32f4xx_hal_uart.o(.text.UART_EndRxTransfer) + UART_EndTransmit_IT 0x0800a77d Thumb Code 24 stm32f4xx_hal_uart.o(.text.UART_EndTransmit_IT) + [Anonymous Symbol] 0x0800a77c Section 0 stm32f4xx_hal_uart.o(.text.UART_EndTransmit_IT) + UART_EndTxTransfer 0x0800a795 Thumb Code 28 stm32f4xx_hal_uart.o(.text.UART_EndTxTransfer) + [Anonymous Symbol] 0x0800a794 Section 0 stm32f4xx_hal_uart.o(.text.UART_EndTxTransfer) + UART_Get 0x0800a7b1 Thumb Code 84 uart.o(.text.UART_Get) + [Anonymous Symbol] 0x0800a7b0 Section 0 uart.o(.text.UART_Get) + UART_Receive_IT 0x0800a805 Thumb Code 200 stm32f4xx_hal_uart.o(.text.UART_Receive_IT) + [Anonymous Symbol] 0x0800a804 Section 0 stm32f4xx_hal_uart.o(.text.UART_Receive_IT) + UART_SetConfig 0x0800a8cd Thumb Code 220 stm32f4xx_hal_uart.o(.text.UART_SetConfig) + [Anonymous Symbol] 0x0800a8cc Section 0 stm32f4xx_hal_uart.o(.text.UART_SetConfig) + [Anonymous Symbol] 0x0800a9a8 Section 0 stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA) + UART_Transmit_IT 0x0800aa55 Thumb Code 82 stm32f4xx_hal_uart.o(.text.UART_Transmit_IT) + [Anonymous Symbol] 0x0800aa54 Section 0 stm32f4xx_hal_uart.o(.text.UART_Transmit_IT) + [Anonymous Symbol] 0x0800aaa8 Section 0 stm32f4xx_it.o(.text.USART1_IRQHandler) + [Anonymous Symbol] 0x0800aac0 Section 0 stm32f4xx_it.o(.text.USART3_IRQHandler) + [Anonymous Symbol] 0x0800aad8 Section 0 stm32f4xx_it.o(.text.USART6_IRQHandler) + [Anonymous Symbol] 0x0800aaf0 Section 0 stm32f4xx_it.o(.text.UsageFault_Handler) + [Anonymous Symbol] 0x0800aaf4 Section 0 vofa.o(.text.VOFA_FireWater_Send) + [Anonymous Symbol] 0x0800ab9c Section 0 vofa.o(.text.VOFA_JustFloat_Send) + [Anonymous Symbol] 0x0800abd8 Section 0 vofa.o(.text.VOFA_RawData_Send) + [Anonymous Symbol] 0x0800abf0 Section 0 vofa.o(.text.VOFA_Send) + [Anonymous Symbol] 0x0800aca0 Section 0 vofa.o(.text.VOFA_init) + __ARM_isfinitef 0x0800acb1 Thumb Code 14 filter.o(.text.__ARM_isfinitef) + [Anonymous Symbol] 0x0800acb0 Section 0 filter.o(.text.__ARM_isfinitef) + __ARM_isfinitef 0x0800acc1 Thumb Code 14 pid.o(.text.__ARM_isfinitef) + [Anonymous Symbol] 0x0800acc0 Section 0 pid.o(.text.__ARM_isfinitef) + __ARM_isinff 0x0800acd1 Thumb Code 16 filter.o(.text.__ARM_isinff) + [Anonymous Symbol] 0x0800acd0 Section 0 filter.o(.text.__ARM_isinff) + __NVIC_DisableIRQ 0x0800ace1 Thumb Code 40 stm32f4xx_hal_cortex.o(.text.__NVIC_DisableIRQ) + [Anonymous Symbol] 0x0800ace0 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_DisableIRQ) + __NVIC_EnableIRQ 0x0800ad09 Thumb Code 32 stm32f4xx_hal_cortex.o(.text.__NVIC_EnableIRQ) + [Anonymous Symbol] 0x0800ad08 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_EnableIRQ) + __NVIC_GetPriorityGrouping 0x0800ad29 Thumb Code 16 stm32f4xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) + [Anonymous Symbol] 0x0800ad28 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) + __NVIC_SetPriority 0x0800ad39 Thumb Code 34 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriority) + [Anonymous Symbol] 0x0800ad38 Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriority) + __NVIC_SetPriority 0x0800ad5d Thumb Code 14 cmsis_os2.o(.text.__NVIC_SetPriority) + [Anonymous Symbol] 0x0800ad5c Section 0 cmsis_os2.o(.text.__NVIC_SetPriority) + __NVIC_SetPriorityGrouping 0x0800ad6d Thumb Code 32 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) + [Anonymous Symbol] 0x0800ad6c Section 0 stm32f4xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) + [Anonymous Symbol] 0x0800ad8c Section 0 chassis.o(.text.chassis_init) + [Anonymous Symbol] 0x0800af4c Section 0 freertos.o(.text.configureTimerForRunTimeStats) + copysignf 0x0800af51 Thumb Code 22 ahrs.o(.text.copysignf) + [Anonymous Symbol] 0x0800af50 Section 0 ahrs.o(.text.copysignf) + [Anonymous Symbol] 0x0800af68 Section 0 tasks.o(.text.eTaskGetState) + float_to_uint 0x0800b005 Thumb Code 44 motor_dm.o(.text.float_to_uint) + [Anonymous Symbol] 0x0800b004 Section 0 motor_dm.o(.text.float_to_uint) + [Anonymous Symbol] 0x0800b030 Section 0 freertos.o(.text.getRunTimeCounterValue) + [Anonymous Symbol] 0x0800b034 Section 0 main.o(.text.main) + [Anonymous Symbol] 0x0800b080 Section 0 gimbal.o(.text.major_yaw_Control) + [Anonymous Symbol] 0x0800b0a0 Section 0 calc_lib.o(.text.map_fp32) + [Anonymous Symbol] 0x0800b0bc Section 0 chassis.o(.text.motor_add_anagle) + motor_imu_offset 0x0800b125 Thumb Code 68 gimbal.o(.text.motor_imu_offset) + [Anonymous Symbol] 0x0800b124 Section 0 gimbal.o(.text.motor_imu_offset) + [Anonymous Symbol] 0x0800b168 Section 0 cmsis_os2.o(.text.osDelay) + [Anonymous Symbol] 0x0800b188 Section 0 cmsis_os2.o(.text.osDelayUntil) + [Anonymous Symbol] 0x0800b1bc Section 0 cmsis_os2.o(.text.osKernelGetState) + [Anonymous Symbol] 0x0800b1e4 Section 0 cmsis_os2.o(.text.osKernelGetTickCount) + [Anonymous Symbol] 0x0800b1f8 Section 0 cmsis_os2.o(.text.osKernelGetTickFreq) + [Anonymous Symbol] 0x0800b200 Section 0 cmsis_os2.o(.text.osKernelInitialize) + [Anonymous Symbol] 0x0800b228 Section 0 cmsis_os2.o(.text.osKernelLock) + [Anonymous Symbol] 0x0800b254 Section 0 cmsis_os2.o(.text.osKernelStart) + [Anonymous Symbol] 0x0800b288 Section 0 cmsis_os2.o(.text.osKernelUnlock) + [Anonymous Symbol] 0x0800b2cc Section 0 cmsis_os2.o(.text.osMessageQueueGet) + [Anonymous Symbol] 0x0800b354 Section 0 cmsis_os2.o(.text.osMessageQueueNew) + [Anonymous Symbol] 0x0800b3f4 Section 0 cmsis_os2.o(.text.osMessageQueuePut) + [Anonymous Symbol] 0x0800b484 Section 0 cmsis_os2.o(.text.osMessageQueueReset) + [Anonymous Symbol] 0x0800b4a8 Section 0 cmsis_os2.o(.text.osMutexAcquire) + [Anonymous Symbol] 0x0800b4fc Section 0 cmsis_os2.o(.text.osMutexNew) + [Anonymous Symbol] 0x0800b594 Section 0 cmsis_os2.o(.text.osMutexRelease) + [Anonymous Symbol] 0x0800b5d4 Section 0 cmsis_os2.o(.text.osThreadFlagsSet) + [Anonymous Symbol] 0x0800b654 Section 0 cmsis_os2.o(.text.osThreadFlagsWait) + [Anonymous Symbol] 0x0800b710 Section 0 cmsis_os2.o(.text.osThreadGetId) + [Anonymous Symbol] 0x0800b718 Section 0 cmsis_os2.o(.text.osThreadNew) + [Anonymous Symbol] 0x0800b7cc Section 0 cmsis_os2.o(.text.osThreadTerminate) + prvAddCurrentTaskToDelayedList 0x0800b801 Thumb Code 128 tasks.o(.text.prvAddCurrentTaskToDelayedList) + [Anonymous Symbol] 0x0800b800 Section 0 tasks.o(.text.prvAddCurrentTaskToDelayedList) + prvAddNewTaskToReadyList 0x0800b881 Thumb Code 172 tasks.o(.text.prvAddNewTaskToReadyList) + [Anonymous Symbol] 0x0800b880 Section 0 tasks.o(.text.prvAddNewTaskToReadyList) + prvCheckForValidListAndQueue 0x0800b92d Thumb Code 116 timers.o(.text.prvCheckForValidListAndQueue) + [Anonymous Symbol] 0x0800b92c Section 0 timers.o(.text.prvCheckForValidListAndQueue) + prvCheckTasksWaitingTermination 0x0800b9a9 Thumb Code 78 tasks.o(.text.prvCheckTasksWaitingTermination) + [Anonymous Symbol] 0x0800b9a8 Section 0 tasks.o(.text.prvCheckTasksWaitingTermination) + prvCopyDataFromQueue 0x0800b9f9 Thumb Code 38 queue.o(.text.prvCopyDataFromQueue) + [Anonymous Symbol] 0x0800b9f8 Section 0 queue.o(.text.prvCopyDataFromQueue) + prvCopyDataToQueue 0x0800ba21 Thumb Code 122 queue.o(.text.prvCopyDataToQueue) + [Anonymous Symbol] 0x0800ba20 Section 0 queue.o(.text.prvCopyDataToQueue) + prvDeleteTCB 0x0800ba9d Thumb Code 54 tasks.o(.text.prvDeleteTCB) + [Anonymous Symbol] 0x0800ba9c Section 0 tasks.o(.text.prvDeleteTCB) + prvGetDisinheritPriorityAfterTimeout 0x0800bad5 Thumb Code 18 queue.o(.text.prvGetDisinheritPriorityAfterTimeout) + [Anonymous Symbol] 0x0800bad4 Section 0 queue.o(.text.prvGetDisinheritPriorityAfterTimeout) + prvGetNextExpireTime 0x0800bae9 Thumb Code 32 timers.o(.text.prvGetNextExpireTime) + [Anonymous Symbol] 0x0800bae8 Section 0 timers.o(.text.prvGetNextExpireTime) + prvHeapInit 0x0800bb09 Thumb Code 120 heap_4.o(.text.prvHeapInit) + [Anonymous Symbol] 0x0800bb08 Section 0 heap_4.o(.text.prvHeapInit) + prvIdleTask 0x0800bb81 Thumb Code 42 tasks.o(.text.prvIdleTask) + [Anonymous Symbol] 0x0800bb80 Section 0 tasks.o(.text.prvIdleTask) + prvInitialiseMutex 0x0800bbad Thumb Code 32 queue.o(.text.prvInitialiseMutex) + [Anonymous Symbol] 0x0800bbac Section 0 queue.o(.text.prvInitialiseMutex) + prvInitialiseNewQueue 0x0800bbcd Thumb Code 32 queue.o(.text.prvInitialiseNewQueue) + [Anonymous Symbol] 0x0800bbcc Section 0 queue.o(.text.prvInitialiseNewQueue) + prvInitialiseNewTask 0x0800bbed Thumb Code 154 tasks.o(.text.prvInitialiseNewTask) + [Anonymous Symbol] 0x0800bbec Section 0 tasks.o(.text.prvInitialiseNewTask) + prvInitialiseTaskLists 0x0800bc89 Thumb Code 112 tasks.o(.text.prvInitialiseTaskLists) + [Anonymous Symbol] 0x0800bc88 Section 0 tasks.o(.text.prvInitialiseTaskLists) + prvInsertBlockIntoFreeList 0x0800bcf9 Thumb Code 90 heap_4.o(.text.prvInsertBlockIntoFreeList) + [Anonymous Symbol] 0x0800bcf8 Section 0 heap_4.o(.text.prvInsertBlockIntoFreeList) + prvInsertTimerInActiveList 0x0800bd55 Thumb Code 64 timers.o(.text.prvInsertTimerInActiveList) + [Anonymous Symbol] 0x0800bd54 Section 0 timers.o(.text.prvInsertTimerInActiveList) + prvIsQueueEmpty 0x0800bd95 Thumb Code 24 queue.o(.text.prvIsQueueEmpty) + [Anonymous Symbol] 0x0800bd94 Section 0 queue.o(.text.prvIsQueueEmpty) + prvIsQueueFull 0x0800bdad Thumb Code 28 queue.o(.text.prvIsQueueFull) + [Anonymous Symbol] 0x0800bdac Section 0 queue.o(.text.prvIsQueueFull) + prvPortStartFirstTask 0x0800bdc9 Thumb Code 34 port.o(.text.prvPortStartFirstTask) + [Anonymous Symbol] 0x0800bdc8 Section 0 port.o(.text.prvPortStartFirstTask) + prvProcessExpiredTimer 0x0800bdf1 Thumb Code 110 timers.o(.text.prvProcessExpiredTimer) + [Anonymous Symbol] 0x0800bdf0 Section 0 timers.o(.text.prvProcessExpiredTimer) + prvProcessReceivedCommands 0x0800be61 Thumb Code 290 timers.o(.text.prvProcessReceivedCommands) + [Anonymous Symbol] 0x0800be60 Section 0 timers.o(.text.prvProcessReceivedCommands) + prvProcessTimerOrBlockTask 0x0800bf85 Thumb Code 128 timers.o(.text.prvProcessTimerOrBlockTask) + [Anonymous Symbol] 0x0800bf84 Section 0 timers.o(.text.prvProcessTimerOrBlockTask) + prvResetNextTaskUnblockTime 0x0800c005 Thumb Code 40 tasks.o(.text.prvResetNextTaskUnblockTime) + [Anonymous Symbol] 0x0800c004 Section 0 tasks.o(.text.prvResetNextTaskUnblockTime) + prvSampleTimeNow 0x0800c02d Thumb Code 42 timers.o(.text.prvSampleTimeNow) + [Anonymous Symbol] 0x0800c02c Section 0 timers.o(.text.prvSampleTimeNow) + prvSwitchTimerLists 0x0800c059 Thumb Code 142 timers.o(.text.prvSwitchTimerLists) + [Anonymous Symbol] 0x0800c058 Section 0 timers.o(.text.prvSwitchTimerLists) + prvTaskExitError 0x0800c0e9 Thumb Code 50 port.o(.text.prvTaskExitError) + [Anonymous Symbol] 0x0800c0e8 Section 0 port.o(.text.prvTaskExitError) + prvTimerTask 0x0800c11d Thumb Code 22 timers.o(.text.prvTimerTask) + [Anonymous Symbol] 0x0800c11c Section 0 timers.o(.text.prvTimerTask) + prvUnlockQueue 0x0800c135 Thumb Code 114 queue.o(.text.prvUnlockQueue) + [Anonymous Symbol] 0x0800c134 Section 0 queue.o(.text.prvUnlockQueue) + [Anonymous Symbol] 0x0800c1a8 Section 0 heap_4.o(.text.pvPortMalloc) + [Anonymous Symbol] 0x0800c2f4 Section 0 tasks.o(.text.pvTaskIncrementMutexHeldCount) + [Anonymous Symbol] 0x0800c30c Section 0 port.o(.text.pxPortInitialiseStack) + uint_to_float 0x0800c335 Thumb Code 42 motor_dm.o(.text.uint_to_float) + [Anonymous Symbol] 0x0800c334 Section 0 motor_dm.o(.text.uint_to_float) + [Anonymous Symbol] 0x0800c360 Section 0 list.o(.text.uxListRemove) + [Anonymous Symbol] 0x0800c384 Section 0 cmsis_os2.o(.text.vApplicationGetIdleTaskMemory) + [Anonymous Symbol] 0x0800c3a0 Section 0 cmsis_os2.o(.text.vApplicationGetTimerTaskMemory) + [Anonymous Symbol] 0x0800c3bc Section 0 freertos.o(.text.vApplicationStackOverflowHook) + [Anonymous Symbol] 0x0800c3c0 Section 0 list.o(.text.vListInitialise) + [Anonymous Symbol] 0x0800c3d8 Section 0 list.o(.text.vListInitialiseItem) + [Anonymous Symbol] 0x0800c3e0 Section 0 list.o(.text.vListInsert) + [Anonymous Symbol] 0x0800c41c Section 0 list.o(.text.vListInsertEnd) + vPortEnableVFP 0x0800c439 Thumb Code 14 port.o(.text.vPortEnableVFP) + [Anonymous Symbol] 0x0800c438 Section 0 port.o(.text.vPortEnableVFP) + [Anonymous Symbol] 0x0800c44c Section 0 port.o(.text.vPortEnterCritical) + [Anonymous Symbol] 0x0800c494 Section 0 port.o(.text.vPortExitCritical) + [Anonymous Symbol] 0x0800c4c4 Section 0 heap_4.o(.text.vPortFree) + [Anonymous Symbol] 0x0800c550 Section 0 port.o(.text.vPortSetupTimerInterrupt) + [Anonymous Symbol] 0x0800c584 Section 0 port.o(.text.vPortValidateInterruptPriority) + [Anonymous Symbol] 0x0800c5e8 Section 0 queue.o(.text.vQueueAddToRegistry) + [Anonymous Symbol] 0x0800c610 Section 0 queue.o(.text.vQueueWaitForMessageRestricted) + [Anonymous Symbol] 0x0800c654 Section 0 tasks.o(.text.vTaskDelay) + [Anonymous Symbol] 0x0800c6a8 Section 0 tasks.o(.text.vTaskDelayUntil) + [Anonymous Symbol] 0x0800c750 Section 0 tasks.o(.text.vTaskDelete) + [Anonymous Symbol] 0x0800c814 Section 0 tasks.o(.text.vTaskInternalSetTimeOutState) + [Anonymous Symbol] 0x0800c830 Section 0 tasks.o(.text.vTaskMissedYield) + [Anonymous Symbol] 0x0800c840 Section 0 tasks.o(.text.vTaskPlaceOnEventList) + [Anonymous Symbol] 0x0800c874 Section 0 tasks.o(.text.vTaskPlaceOnEventListRestricted) + [Anonymous Symbol] 0x0800c8b4 Section 0 tasks.o(.text.vTaskPriorityDisinheritAfterTimeout) + [Anonymous Symbol] 0x0800c958 Section 0 tasks.o(.text.vTaskStartScheduler) + [Anonymous Symbol] 0x0800ca00 Section 0 tasks.o(.text.vTaskSuspendAll) + [Anonymous Symbol] 0x0800ca10 Section 0 tasks.o(.text.vTaskSwitchContext) + [Anonymous Symbol] 0x0800caf4 Section 0 port.o(.text.xPortStartScheduler) + [Anonymous Symbol] 0x0800cc08 Section 0 port.o(.text.xPortSysTickHandler) + [Anonymous Symbol] 0x0800cc38 Section 0 queue.o(.text.xQueueCreateMutex) + [Anonymous Symbol] 0x0800cc50 Section 0 queue.o(.text.xQueueCreateMutexStatic) + [Anonymous Symbol] 0x0800cc74 Section 0 queue.o(.text.xQueueGenericCreate) + [Anonymous Symbol] 0x0800ccbc Section 0 queue.o(.text.xQueueGenericCreateStatic) + [Anonymous Symbol] 0x0800cd54 Section 0 queue.o(.text.xQueueGenericReset) + [Anonymous Symbol] 0x0800cdd4 Section 0 queue.o(.text.xQueueGenericSend) + [Anonymous Symbol] 0x0800cf78 Section 0 queue.o(.text.xQueueGenericSendFromISR) + [Anonymous Symbol] 0x0800d048 Section 0 queue.o(.text.xQueueGiveMutexRecursive) + [Anonymous Symbol] 0x0800d08c Section 0 queue.o(.text.xQueueReceive) + [Anonymous Symbol] 0x0800d210 Section 0 queue.o(.text.xQueueReceiveFromISR) + [Anonymous Symbol] 0x0800d2bc Section 0 queue.o(.text.xQueueSemaphoreTake) + [Anonymous Symbol] 0x0800d484 Section 0 queue.o(.text.xQueueTakeMutexRecursive) + [Anonymous Symbol] 0x0800d4c0 Section 0 tasks.o(.text.xTaskCheckForTimeOut) + [Anonymous Symbol] 0x0800d548 Section 0 tasks.o(.text.xTaskCreate) + [Anonymous Symbol] 0x0800d5b0 Section 0 tasks.o(.text.xTaskCreateStatic) + [Anonymous Symbol] 0x0800d628 Section 0 tasks.o(.text.xTaskGenericNotify) + [Anonymous Symbol] 0x0800d724 Section 0 tasks.o(.text.xTaskGenericNotifyFromISR) + [Anonymous Symbol] 0x0800d850 Section 0 tasks.o(.text.xTaskGetCurrentTaskHandle) + [Anonymous Symbol] 0x0800d85c Section 0 tasks.o(.text.xTaskGetSchedulerState) + [Anonymous Symbol] 0x0800d884 Section 0 tasks.o(.text.xTaskGetTickCount) + [Anonymous Symbol] 0x0800d890 Section 0 tasks.o(.text.xTaskGetTickCountFromISR) + [Anonymous Symbol] 0x0800d8a4 Section 0 tasks.o(.text.xTaskIncrementTick) + [Anonymous Symbol] 0x0800d9f8 Section 0 tasks.o(.text.xTaskNotifyWait) + [Anonymous Symbol] 0x0800da88 Section 0 tasks.o(.text.xTaskPriorityDisinherit) + [Anonymous Symbol] 0x0800db1c Section 0 tasks.o(.text.xTaskPriorityInherit) + [Anonymous Symbol] 0x0800dbb0 Section 0 tasks.o(.text.xTaskRemoveFromEventList) + [Anonymous Symbol] 0x0800dc40 Section 0 tasks.o(.text.xTaskResumeAll) + [Anonymous Symbol] 0x0800dd54 Section 0 timers.o(.text.xTimerCreateTimerTask) + [Anonymous Symbol] 0x0800ddc8 Section 0 timers.o(.text.xTimerGenericCommand) + CL$$btod_d2e 0x0800de30 Section 62 btod.o(CL$$btod_d2e) + CL$$btod_d2e_denorm_low 0x0800de6e Section 70 btod.o(CL$$btod_d2e_denorm_low) + CL$$btod_d2e_norm_op1 0x0800deb4 Section 96 btod.o(CL$$btod_d2e_norm_op1) + CL$$btod_div_common 0x0800df14 Section 824 btod.o(CL$$btod_div_common) + CL$$btod_e2e 0x0800e24c Section 220 btod.o(CL$$btod_e2e) + CL$$btod_ediv 0x0800e328 Section 42 btod.o(CL$$btod_ediv) + CL$$btod_emul 0x0800e352 Section 42 btod.o(CL$$btod_emul) + CL$$btod_mult_common 0x0800e37c Section 580 btod.o(CL$$btod_mult_common) + i.__ARM_fpclassify 0x0800e5c0 Section 0 fpclassify.o(i.__ARM_fpclassify) + i.__ARM_fpclassifyf 0x0800e5f0 Section 0 fpclassifyf.o(i.__ARM_fpclassifyf) + i.__hardfp_asinf 0x0800e618 Section 0 asinf.o(i.__hardfp_asinf) + i.__hardfp_atan 0x0800e748 Section 0 atan.o(i.__hardfp_atan) + i.__hardfp_atan2 0x0800ea20 Section 0 atan2.o(i.__hardfp_atan2) + i.__hardfp_atan2f 0x0800ec20 Section 0 atan2f.o(i.__hardfp_atan2f) + i.__hardfp_cosf 0x0800eecc Section 0 cosf.o(i.__hardfp_cosf) + i.__hardfp_fmod 0x0800f01c Section 0 fmod.o(i.__hardfp_fmod) + i.__hardfp_sinf 0x0800f120 Section 0 sinf.o(i.__hardfp_sinf) + i.__hardfp_sqrt 0x0800f2b0 Section 0 sqrt.o(i.__hardfp_sqrt) + i.__hardfp_tanf 0x0800f32c Section 0 tanf.o(i.__hardfp_tanf) + i.__kernel_poly 0x0800f4a8 Section 0 poly.o(i.__kernel_poly) + i.__mathlib_dbl_infnan 0x0800f5a0 Section 0 dunder.o(i.__mathlib_dbl_infnan) + i.__mathlib_dbl_infnan2 0x0800f5b4 Section 0 dunder.o(i.__mathlib_dbl_infnan2) + i.__mathlib_dbl_invalid 0x0800f5c8 Section 0 dunder.o(i.__mathlib_dbl_invalid) + i.__mathlib_dbl_underflow 0x0800f5e8 Section 0 dunder.o(i.__mathlib_dbl_underflow) + i.__mathlib_flt_infnan 0x0800f608 Section 0 funder.o(i.__mathlib_flt_infnan) + i.__mathlib_flt_infnan2 0x0800f60e Section 0 funder.o(i.__mathlib_flt_infnan2) + i.__mathlib_flt_invalid 0x0800f614 Section 0 funder.o(i.__mathlib_flt_invalid) + i.__mathlib_flt_underflow 0x0800f624 Section 0 funder.o(i.__mathlib_flt_underflow) + i.__mathlib_rredf2 0x0800f634 Section 0 rredf.o(i.__mathlib_rredf2) + i._is_digit 0x0800f788 Section 0 __printf_wp.o(i._is_digit) + i.atan 0x0800f796 Section 0 atan.o(i.atan) + i.fabs 0x0800f7a6 Section 0 fabs.o(i.fabs) + i.sqrtf 0x0800f7be Section 0 sqrtf.o(i.sqrtf) + locale$$code 0x0800f7fc Section 44 lc_numeric_c.o(locale$$code) + $v0 0x0800f828 Number 0 basic.o(x$fpl$basic) + x$fpl$basic 0x0800f828 Section 24 basic.o(x$fpl$basic) + $v0 0x0800f840 Number 0 d2f.o(x$fpl$d2f) + x$fpl$d2f 0x0800f840 Section 98 d2f.o(x$fpl$d2f) + $v0 0x0800f8a4 Number 0 daddsub_clz.o(x$fpl$dadd) + x$fpl$dadd 0x0800f8a4 Section 336 daddsub_clz.o(x$fpl$dadd) + _dadd1 0x0800f8b5 Thumb Code 0 daddsub_clz.o(x$fpl$dadd) + $v0 0x0800f9f4 Number 0 dcmpi.o(x$fpl$dcmpinf) + x$fpl$dcmpinf 0x0800f9f4 Section 24 dcmpi.o(x$fpl$dcmpinf) + $v0 0x0800fa0c Number 0 ddiv.o(x$fpl$ddiv) + x$fpl$ddiv 0x0800fa0c Section 692 ddiv.o(x$fpl$ddiv) + ddiv_entry 0x0800fa13 Thumb Code 0 ddiv.o(x$fpl$ddiv) + $v0 0x0800fcc0 Number 0 deqf.o(x$fpl$deqf) + x$fpl$deqf 0x0800fcc0 Section 120 deqf.o(x$fpl$deqf) + $v0 0x0800fd38 Number 0 dfixu.o(x$fpl$dfixu) + x$fpl$dfixu 0x0800fd38 Section 90 dfixu.o(x$fpl$dfixu) + $v0 0x0800fd92 Number 0 dflt_clz.o(x$fpl$dfltu) + x$fpl$dfltu 0x0800fd92 Section 38 dflt_clz.o(x$fpl$dfltu) + $v0 0x0800fdb8 Number 0 dgeqf.o(x$fpl$dgeqf) + x$fpl$dgeqf 0x0800fdb8 Section 120 dgeqf.o(x$fpl$dgeqf) + $v0 0x0800fe30 Number 0 dleqf.o(x$fpl$dleqf) + x$fpl$dleqf 0x0800fe30 Section 120 dleqf.o(x$fpl$dleqf) + $v0 0x0800fea8 Number 0 dmul.o(x$fpl$dmul) + x$fpl$dmul 0x0800fea8 Section 340 dmul.o(x$fpl$dmul) + $v0 0x0800fffc Number 0 dnaninf.o(x$fpl$dnaninf) + x$fpl$dnaninf 0x0800fffc Section 156 dnaninf.o(x$fpl$dnaninf) + $v0 0x08010098 Number 0 drem_clz.o(x$fpl$drem) + x$fpl$drem 0x08010098 Section 336 drem_clz.o(x$fpl$drem) + $v0 0x080101e8 Number 0 dretinf.o(x$fpl$dretinf) + x$fpl$dretinf 0x080101e8 Section 12 dretinf.o(x$fpl$dretinf) + $v0 0x080101f4 Number 0 daddsub_clz.o(x$fpl$drsb) + x$fpl$drsb 0x080101f4 Section 22 daddsub_clz.o(x$fpl$drsb) + $v0 0x0801020c Number 0 dsqrt_umaal.o(x$fpl$dsqrt) + x$fpl$dsqrt 0x0801020c Section 408 dsqrt_umaal.o(x$fpl$dsqrt) + $v0 0x080103a4 Number 0 daddsub_clz.o(x$fpl$dsub) + x$fpl$dsub 0x080103a4 Section 476 daddsub_clz.o(x$fpl$dsub) + _dsub1 0x080103b5 Thumb Code 0 daddsub_clz.o(x$fpl$dsub) + $v0 0x08010580 Number 0 f2d.o(x$fpl$f2d) + x$fpl$f2d 0x08010580 Section 86 f2d.o(x$fpl$f2d) + $v0 0x080105d6 Number 0 dcmp.o(x$fpl$fcmp) + x$fpl$fcmp 0x080105d6 Section 84 dcmp.o(x$fpl$fcmp) + $v0 0x0801062a Number 0 ffltll_clz.o(x$fpl$ffltll) + x$fpl$ffltll 0x0801062a Section 96 ffltll_clz.o(x$fpl$ffltll) + $v0 0x0801068a Number 0 fnaninf.o(x$fpl$fnaninf) + x$fpl$fnaninf 0x0801068a Section 140 fnaninf.o(x$fpl$fnaninf) + $v0 0x08010716 Number 0 fpinit.o(x$fpl$fpinit) + x$fpl$fpinit 0x08010716 Section 26 fpinit.o(x$fpl$fpinit) + $v0 0x08010730 Number 0 fretinf.o(x$fpl$fretinf) + x$fpl$fretinf 0x08010730 Section 10 fretinf.o(x$fpl$fretinf) + $v0 0x0801073a Number 0 printf1.o(x$fpl$printf1) + x$fpl$printf1 0x0801073a Section 4 printf1.o(x$fpl$printf1) + x$fpl$usenofp 0x0801073e Section 0 usenofp.o(x$fpl$usenofp) + atanhi 0x08010740 Data 32 atan.o(.constdata) + .constdata 0x08010740 Section 152 atan.o(.constdata) + atanlo 0x08010760 Data 32 atan.o(.constdata) + aTodd 0x08010780 Data 40 atan.o(.constdata) + aTeven 0x080107a8 Data 48 atan.o(.constdata) + .constdata 0x080107d8 Section 8 qnan.o(.constdata) + twooverpi 0x080107e0 Data 32 rredf.o(.constdata) + .constdata 0x080107e0 Section 32 rredf.o(.constdata) + tenpwrs_x 0x08010800 Data 60 bigflt0.o(.constdata) + .constdata 0x08010800 Section 148 bigflt0.o(.constdata) + tenpwrs_i 0x0801083c Data 64 bigflt0.o(.constdata) + GPIO_Map 0x080108ac Data 88 gpio_1.o(.rodata.GPIO_Map) + [Anonymous Symbol] 0x080108ac Section 0 gpio_1.o(.rodata.GPIO_Map) + PWM_Map 0x08010904 Data 16 pwm.o(.rodata.PWM_Map) + [Anonymous Symbol] 0x08010904 Section 0 pwm.o(.rodata.PWM_Map) + .L__const.chassis_init.motor_offset 0x08010aa0 Data 16 chassis.o(.rodata.cst16) + g_behavior_configs 0x08010ad4 Data 176 cmd_behavior.o(.rodata.g_behavior_configs) + [Anonymous Symbol] 0x08010ad4 Section 0 cmd_behavior.o(.rodata.g_behavior_configs) + imu_temp_ctrl_pid_param 0x08010b84 Data 32 atti_esti.o(.rodata.imu_temp_ctrl_pid_param) + [Anonymous Symbol] 0x08010b84 Section 0 atti_esti.o(.rodata.imu_temp_ctrl_pid_param) + [Anonymous Symbol] 0x08010ba4 Section 0 freertos.o(.rodata.str1.1) + .L.str.1 0x08010bb0 Data 2 vofa.o(.rodata.str1.1) + [Anonymous Symbol] 0x08010bb0 Section 0 vofa.o(.rodata.str1.1) + [Anonymous Symbol] 0x08010bb2 Section 0 user_task.o(.rodata.str1.1) + .L.str.2 0x08010c0b Data 1 user_task.o(.rodata.str1.1) + locale$$data 0x08010c4c Section 28 lc_numeric_c.o(locale$$data) + __lcnum_c_name 0x08010c50 Data 2 lc_numeric_c.o(locale$$data) + __lcnum_c_start 0x08010c58 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_point 0x08010c64 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_thousands 0x08010c66 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_grouping 0x08010c67 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_end 0x08010c68 Data 0 lc_numeric_c.o(locale$$data) + current_protocol 0x20000010 Data 1 vofa.o(.data.current_protocol) + [Anonymous Symbol] 0x20000010 Section 0 vofa.o(.data.current_protocol) + .bss 0x20000060 Section 96 libspace.o(.bss) + CAN_Callback 0x200000c0 Data 104 can_1.o(.bss.CAN_Callback) + [Anonymous Symbol] 0x200000c0 Section 0 can_1.o(.bss.CAN_Callback) + KernelState 0x20000128 Data 4 cmsis_os2.o(.bss.KernelState) + [Anonymous Symbol] 0x20000128 Section 0 cmsis_os2.o(.bss.KernelState) + SPI_Callback 0x2000012c Data 32 spi_1.o(.bss.SPI_Callback) + [Anonymous Symbol] 0x2000012c Section 0 spi_1.o(.bss.SPI_Callback) + bmi088_rxbuf 0x20000180 Data 19 bmi088.o(.bss.bmi088_rxbuf) + [Anonymous Symbol] 0x20000180 Section 0 bmi088.o(.bss.bmi088_rxbuf) + can_managers 0x20000194 Data 8 motor_dm.o(.bss.can_managers) + [Anonymous Symbol] 0x20000194 Section 0 motor_dm.o(.bss.can_managers) + id_parser 0x2000079c Data 4 can_1.o(.bss.id_parser) + [Anonymous Symbol] 0x2000079c Section 0 can_1.o(.bss.id_parser) + inited 0x200007a0 Data 1 bmi088.o(.bss.inited) + [Anonymous Symbol] 0x200007a0 Section 0 bmi088.o(.bss.inited) + motor_add_anagle.prev_angle 0x200007b0 Data 4 chassis.o(.bss.motor_add_anagle.prev_angle) + [Anonymous Symbol] 0x200007b0 Section 0 chassis.o(.bss.motor_add_anagle.prev_angle) + prvCheckForValidListAndQueue.ucStaticTimerQueueStorage 0x200007b4 Data 160 timers.o(.bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage) + [Anonymous Symbol] 0x200007b4 Section 0 timers.o(.bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage) + pxDelayedTaskList 0x20000854 Data 4 tasks.o(.bss.pxDelayedTaskList) + [Anonymous Symbol] 0x20000854 Section 0 tasks.o(.bss.pxDelayedTaskList) + pxOverflowTimerList 0x20000858 Data 4 timers.o(.bss.pxOverflowTimerList) + [Anonymous Symbol] 0x20000858 Section 0 timers.o(.bss.pxOverflowTimerList) + queue_list 0x2000085c Data 4 can_1.o(.bss.queue_list) + [Anonymous Symbol] 0x2000085c Section 0 can_1.o(.bss.queue_list) + thread_alert 0x20000944 Data 4 bmi088.o(.bss.thread_alert) + [Anonymous Symbol] 0x20000944 Section 0 bmi088.o(.bss.thread_alert) + thread_alert 0x20000948 Data 4 dr16.o(.bss.thread_alert) + [Anonymous Symbol] 0x20000948 Section 0 dr16.o(.bss.thread_alert) + ucHeap 0x2000094c Data 104857 heap_4.o(.bss.ucHeap) + [Anonymous Symbol] 0x2000094c Section 0 heap_4.o(.bss.ucHeap) + ucMaxSysCallPriority 0x2001a2e5 Data 1 port.o(.bss.ucMaxSysCallPriority) + [Anonymous Symbol] 0x2001a2e5 Section 0 port.o(.bss.ucMaxSysCallPriority) + ulMaxPRIGROUPValue 0x2001a2e8 Data 4 port.o(.bss.ulMaxPRIGROUPValue) + [Anonymous Symbol] 0x2001a2e8 Section 0 port.o(.bss.ulMaxPRIGROUPValue) + ulTaskSwitchedInTime 0x2001a2ec Data 4 tasks.o(.bss.ulTaskSwitchedInTime) + [Anonymous Symbol] 0x2001a2ec Section 0 tasks.o(.bss.ulTaskSwitchedInTime) + uxCurrentNumberOfTasks 0x2001a2f0 Data 4 tasks.o(.bss.uxCurrentNumberOfTasks) + [Anonymous Symbol] 0x2001a2f0 Section 0 tasks.o(.bss.uxCurrentNumberOfTasks) + uxSchedulerSuspended 0x2001a2f4 Data 4 tasks.o(.bss.uxSchedulerSuspended) + [Anonymous Symbol] 0x2001a2f4 Section 0 tasks.o(.bss.uxSchedulerSuspended) + uxTaskNumber 0x2001a2f8 Data 4 tasks.o(.bss.uxTaskNumber) + [Anonymous Symbol] 0x2001a2f8 Section 0 tasks.o(.bss.uxTaskNumber) + uxTopReadyPriority 0x2001a2fc Data 4 tasks.o(.bss.uxTopReadyPriority) + [Anonymous Symbol] 0x2001a2fc Section 0 tasks.o(.bss.uxTopReadyPriority) + vApplicationGetIdleTaskMemory.Idle_Stack 0x2001a300 Data 512 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_Stack) + [Anonymous Symbol] 0x2001a300 Section 0 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_Stack) + vApplicationGetIdleTaskMemory.Idle_TCB 0x2001a500 Data 96 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_TCB) + [Anonymous Symbol] 0x2001a500 Section 0 cmsis_os2.o(.bss.vApplicationGetIdleTaskMemory.Idle_TCB) + vApplicationGetTimerTaskMemory.Timer_Stack 0x2001a560 Data 1024 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_Stack) + [Anonymous Symbol] 0x2001a560 Section 0 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_Stack) + xActiveTimerList1 0x2001a960 Data 20 timers.o(.bss.xActiveTimerList1) + [Anonymous Symbol] 0x2001a960 Section 0 timers.o(.bss.xActiveTimerList1) + xDelayedTaskList1 0x2001a974 Data 20 tasks.o(.bss.xDelayedTaskList1) + [Anonymous Symbol] 0x2001a974 Section 0 tasks.o(.bss.xDelayedTaskList1) + xFreeBytesRemaining 0x2001a988 Data 4 heap_4.o(.bss.xFreeBytesRemaining) + [Anonymous Symbol] 0x2001a988 Section 0 heap_4.o(.bss.xFreeBytesRemaining) + xNextTaskUnblockTime 0x2001a98c Data 4 tasks.o(.bss.xNextTaskUnblockTime) + [Anonymous Symbol] 0x2001a98c Section 0 tasks.o(.bss.xNextTaskUnblockTime) + xNumberOfSuccessfulAllocations 0x2001a990 Data 4 heap_4.o(.bss.xNumberOfSuccessfulAllocations) + [Anonymous Symbol] 0x2001a990 Section 0 heap_4.o(.bss.xNumberOfSuccessfulAllocations) + xPendedTicks 0x2001a994 Data 4 tasks.o(.bss.xPendedTicks) + [Anonymous Symbol] 0x2001a994 Section 0 tasks.o(.bss.xPendedTicks) + xStart 0x2001a9d8 Data 8 heap_4.o(.bss.xStart) + [Anonymous Symbol] 0x2001a9d8 Section 0 heap_4.o(.bss.xStart) + xSuspendedTaskList 0x2001a9e0 Data 20 tasks.o(.bss.xSuspendedTaskList) + [Anonymous Symbol] 0x2001a9e0 Section 0 tasks.o(.bss.xSuspendedTaskList) + xTasksWaitingTermination 0x2001a9f4 Data 20 tasks.o(.bss.xTasksWaitingTermination) + [Anonymous Symbol] 0x2001a9f4 Section 0 tasks.o(.bss.xTasksWaitingTermination) + xTimerTaskHandle 0x2001aa08 Data 4 timers.o(.bss.xTimerTaskHandle) + [Anonymous Symbol] 0x2001aa08 Section 0 timers.o(.bss.xTimerTaskHandle) + Heap_Mem 0x2001aa10 Data 1280 startup_stm32f407xx.o(HEAP) + HEAP 0x2001aa10 Section 1280 startup_stm32f407xx.o(HEAP) + beta 0x2001c008 Data 4 ahrs.o(.data.beta) + [Anonymous Symbol] 0x2001c008 Section 0 ahrs.o(.data.beta) + g_adapter_ET16s 0x2001c00c Data 24 cmd_adapter.o(.data.g_adapter_ET16s) + [Anonymous Symbol] 0x2001c00c Section 0 cmd_adapter.o(.data.g_adapter_ET16s) + uxCriticalNesting 0x2001c424 Data 4 port.o(.data.uxCriticalNesting) + [Anonymous Symbol] 0x2001c424 Section 0 port.o(.data.uxCriticalNesting) + .bss 0x2001c428 Section 228 rand.o(.bss) + GPIO_Callback 0x2001c50c Data 64 gpio_1.o(.bss.GPIO_Callback) + [Anonymous Symbol] 0x2001c50c Section 0 gpio_1.o(.bss.GPIO_Callback) + HAL_RCC_CAN1_CLK_ENABLED 0x2001c54c Data 4 can.o(.bss.HAL_RCC_CAN1_CLK_ENABLED) + [Anonymous Symbol] 0x2001c54c Section 0 can.o(.bss.HAL_RCC_CAN1_CLK_ENABLED) + UART_Callback 0x2001c550 Data 144 uart.o(.bss.UART_Callback) + [Anonymous Symbol] 0x2001c550 Section 0 uart.o(.bss.UART_Callback) + buffer 0x2001c5e0 Data 2 bmi088.o(.bss.buffer) + [Anonymous Symbol] 0x2001c5e0 Section 0 bmi088.o(.bss.buffer) + can_managers 0x2001c5e4 Data 8 motor_rm.o(.bss.can_managers) + [Anonymous Symbol] 0x2001c5e4 Section 0 motor_rm.o(.bss.can_managers) + inited 0x2001d19c Data 1 can_1.o(.bss.inited) + [Anonymous Symbol] 0x2001d19c Section 0 can_1.o(.bss.inited) + inited 0x2001d19d Data 1 dr16.o(.bss.inited) + [Anonymous Symbol] 0x2001d19d Section 0 dr16.o(.bss.inited) + motor_add_anagle.cirle 0x2001d1a0 Data 4 chassis.o(.bss.motor_add_anagle.cirle) + [Anonymous Symbol] 0x2001d1a0 Section 0 chassis.o(.bss.motor_add_anagle.cirle) + prvCheckForValidListAndQueue.xStaticTimerQueue 0x2001d1a4 Data 80 timers.o(.bss.prvCheckForValidListAndQueue.xStaticTimerQueue) + [Anonymous Symbol] 0x2001d1a4 Section 0 timers.o(.bss.prvCheckForValidListAndQueue.xStaticTimerQueue) + prvSampleTimeNow.xLastTime 0x2001d1f4 Data 4 timers.o(.bss.prvSampleTimeNow.xLastTime) + [Anonymous Symbol] 0x2001d1f4 Section 0 timers.o(.bss.prvSampleTimeNow.xLastTime) + pxCurrentTimerList 0x2001d1fc Data 4 timers.o(.bss.pxCurrentTimerList) + [Anonymous Symbol] 0x2001d1fc Section 0 timers.o(.bss.pxCurrentTimerList) + pxEnd 0x2001d200 Data 4 heap_4.o(.bss.pxEnd) + [Anonymous Symbol] 0x2001d200 Section 0 heap_4.o(.bss.pxEnd) + pxOverflowDelayedTaskList 0x2001d204 Data 4 tasks.o(.bss.pxOverflowDelayedTaskList) + [Anonymous Symbol] 0x2001d204 Section 0 tasks.o(.bss.pxOverflowDelayedTaskList) + pxReadyTasksLists 0x2001d208 Data 1120 tasks.o(.bss.pxReadyTasksLists) + [Anonymous Symbol] 0x2001d208 Section 0 tasks.o(.bss.pxReadyTasksLists) + queue_mutex 0x2001d668 Data 4 can_1.o(.bss.queue_mutex) + [Anonymous Symbol] 0x2001d668 Section 0 can_1.o(.bss.queue_mutex) + thread_alert 0x2001dd20 Data 4 et16s.o(.bss.thread_alert) + [Anonymous Symbol] 0x2001dd20 Section 0 et16s.o(.bss.thread_alert) + tx_queues 0x2001dd24 Data 2064 can_1.o(.bss.tx_queues) + [Anonymous Symbol] 0x2001dd24 Section 0 can_1.o(.bss.tx_queues) + uxDeletedTasksWaitingCleanUp 0x2001e538 Data 4 tasks.o(.bss.uxDeletedTasksWaitingCleanUp) + [Anonymous Symbol] 0x2001e538 Section 0 tasks.o(.bss.uxDeletedTasksWaitingCleanUp) + vApplicationGetTimerTaskMemory.Timer_TCB 0x2001e53c Data 96 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_TCB) + [Anonymous Symbol] 0x2001e53c Section 0 cmsis_os2.o(.bss.vApplicationGetTimerTaskMemory.Timer_TCB) + vofa_tx_buf 0x2001e59c Data 260 vofa.o(.bss.vofa_tx_buf) + [Anonymous Symbol] 0x2001e59c Section 0 vofa.o(.bss.vofa_tx_buf) + xActiveTimerList2 0x2001e6a0 Data 20 timers.o(.bss.xActiveTimerList2) + [Anonymous Symbol] 0x2001e6a0 Section 0 timers.o(.bss.xActiveTimerList2) + xBlockAllocatedBit 0x2001e6b4 Data 1 heap_4.o(.bss.xBlockAllocatedBit) + [Anonymous Symbol] 0x2001e6b4 Section 0 heap_4.o(.bss.xBlockAllocatedBit) + xDelayedTaskList2 0x2001e6b8 Data 20 tasks.o(.bss.xDelayedTaskList2) + [Anonymous Symbol] 0x2001e6b8 Section 0 tasks.o(.bss.xDelayedTaskList2) + xIdleTaskHandle 0x2001e6cc Data 4 tasks.o(.bss.xIdleTaskHandle) + [Anonymous Symbol] 0x2001e6cc Section 0 tasks.o(.bss.xIdleTaskHandle) + xMinimumEverFreeBytesRemaining 0x2001e6d0 Data 4 heap_4.o(.bss.xMinimumEverFreeBytesRemaining) + [Anonymous Symbol] 0x2001e6d0 Section 0 heap_4.o(.bss.xMinimumEverFreeBytesRemaining) + xNumOfOverflows 0x2001e6d4 Data 4 tasks.o(.bss.xNumOfOverflows) + [Anonymous Symbol] 0x2001e6d4 Section 0 tasks.o(.bss.xNumOfOverflows) + xNumberOfSuccessfulFrees 0x2001e6d8 Data 4 heap_4.o(.bss.xNumberOfSuccessfulFrees) + [Anonymous Symbol] 0x2001e6d8 Section 0 heap_4.o(.bss.xNumberOfSuccessfulFrees) + xPendingReadyList 0x2001e6dc Data 20 tasks.o(.bss.xPendingReadyList) + [Anonymous Symbol] 0x2001e6dc Section 0 tasks.o(.bss.xPendingReadyList) + xSchedulerRunning 0x2001e6f0 Data 4 tasks.o(.bss.xSchedulerRunning) + [Anonymous Symbol] 0x2001e6f0 Section 0 tasks.o(.bss.xSchedulerRunning) + xTickCount 0x2001e6f4 Data 4 tasks.o(.bss.xTickCount) + [Anonymous Symbol] 0x2001e6f4 Section 0 tasks.o(.bss.xTickCount) + xTimerQueue 0x2001e6f8 Data 4 timers.o(.bss.xTimerQueue) + [Anonymous Symbol] 0x2001e6f8 Section 0 timers.o(.bss.xTimerQueue) + xYieldPending 0x2001e6fc Data 4 tasks.o(.bss.xYieldPending) + [Anonymous Symbol] 0x2001e6fc Section 0 tasks.o(.bss.xYieldPending) + Stack_Mem 0x2001e700 Data 2048 startup_stm32f407xx.o(STACK) + STACK 0x2001e700 Section 2048 startup_stm32f407xx.o(STACK) + __initial_sp 0x2001ef00 Data 0 startup_stm32f407xx.o(STACK) Global Symbols @@ -8813,688 +8843,691 @@ Image Symbol Table __rt_lib_init 0x08000275 Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000) __rt_lib_init_fp_1 0x08000277 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000001) __rt_lib_init_heap_1 0x0800027b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000A) - __rt_lib_init_lc_common 0x0800027b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000F) __rt_lib_init_preinit_1 0x0800027b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000004) - __rt_lib_init_rand_1 0x0800027b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000E) + __rt_lib_init_rand_2 0x0800027b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000D) __rt_lib_init_user_alloc_1 0x0800027b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C) - __rt_lib_init_lc_collate_1 0x08000281 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011) - __rt_lib_init_lc_ctype_1 0x08000281 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013) - __rt_lib_init_lc_monetary_1 0x08000281 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015) - __rt_lib_init_lc_numeric_2 0x08000281 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000016) - __rt_lib_init_alloca_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E) - __rt_lib_init_argv_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C) - __rt_lib_init_atexit_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B) - __rt_lib_init_clock_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021) - __rt_lib_init_cpp_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000032) - __rt_lib_init_exceptions_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030) - __rt_lib_init_fp_trap_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F) - __rt_lib_init_getenv_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023) - __rt_lib_init_lc_numeric_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017) - __rt_lib_init_lc_time_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019) - __rt_lib_init_return 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000033) - __rt_lib_init_signal_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D) - __rt_lib_init_stdio_1 0x0800028b Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000025) - __rt_lib_shutdown 0x0800028d Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000) - __rt_lib_shutdown_cpp_1 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) - __rt_lib_shutdown_fp_trap_1 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) - __rt_lib_shutdown_heap_1 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) - __rt_lib_shutdown_return 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) - __rt_lib_shutdown_signal_1 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) - __rt_lib_shutdown_stdio_1 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) - __rt_lib_shutdown_user_alloc_1 0x0800028f Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) - __rt_entry 0x08000291 Thumb Code 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000) - __rt_entry_presh_1 0x08000291 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002) - __rt_entry_sh 0x08000291 Thumb Code 0 __rtentry4.o(.ARM.Collect$$rtentry$$00000004) - __rt_entry_li 0x08000297 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) - __rt_entry_postsh_1 0x08000297 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009) - __rt_entry_main 0x0800029b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) - __rt_entry_postli_1 0x0800029b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) - __rt_exit 0x080002a3 Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000) - __rt_exit_ls 0x080002a5 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003) - __rt_exit_prels_1 0x080002a5 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002) - __rt_exit_exit 0x080002a9 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004) - Reset_Handler 0x080002b1 Thumb Code 8 startup_stm32f407xx.o(.text) - ADC_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - CAN1_SCE_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - CAN2_SCE_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DCMI_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream0_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream2_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream3_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream4_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream5_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream6_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA1_Stream7_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA2_Stream0_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA2_Stream4_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA2_Stream5_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - DMA2_Stream7_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - ETH_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - ETH_WKUP_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - EXTI15_10_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - EXTI1_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - EXTI2_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - FLASH_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - FMC_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - FPU_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - HASH_RNG_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - I2C1_ER_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - I2C1_EV_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - I2C2_ER_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - I2C2_EV_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - I2C3_ER_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - I2C3_EV_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - OTG_FS_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - OTG_FS_WKUP_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - OTG_HS_EP1_IN_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - OTG_HS_EP1_OUT_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - OTG_HS_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - OTG_HS_WKUP_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - PVD_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - RCC_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - RTC_Alarm_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - RTC_WKUP_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - SDIO_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - SPI1_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - SPI2_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - SPI3_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TAMP_STAMP_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM1_BRK_TIM9_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM1_CC_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM1_TRG_COM_TIM11_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM2_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM3_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM4_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM5_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM6_DAC_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM7_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM8_BRK_TIM12_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM8_CC_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM8_TRG_COM_TIM14_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - TIM8_UP_TIM13_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - UART4_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - UART5_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - USART2_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - WWDG_IRQHandler 0x080002cb Thumb Code 0 startup_stm32f407xx.o(.text) - __user_initial_stackheap 0x080002cd Thumb Code 0 startup_stm32f407xx.o(.text) - __aeabi_uldivmod 0x080002f1 Thumb Code 0 lludivv7m.o(.text) - _ll_udiv 0x080002f1 Thumb Code 240 lludivv7m.o(.text) - __2sprintf 0x080003e1 Thumb Code 38 __2sprintf.o(.text) - __2snprintf 0x0800040d Thumb Code 50 __2snprintf.o(.text) - _printf_str 0x08000445 Thumb Code 82 _printf_str.o(.text) - _printf_int_dec 0x08000499 Thumb Code 104 _printf_dec.o(.text) - __printf 0x08000511 Thumb Code 270 __printf_wp.o(.text) - strlen 0x0800061f Thumb Code 62 strlen.o(.text) - __aeabi_memcpy 0x0800065d Thumb Code 0 rt_memcpy_v6.o(.text) - __rt_memcpy 0x0800065d Thumb Code 138 rt_memcpy_v6.o(.text) - _memcpy_lastbytes 0x080006c3 Thumb Code 0 rt_memcpy_v6.o(.text) - __aeabi_memcpy4 0x080006e7 Thumb Code 0 rt_memcpy_w.o(.text) - __aeabi_memcpy8 0x080006e7 Thumb Code 0 rt_memcpy_w.o(.text) - __rt_memcpy_w 0x080006e7 Thumb Code 100 rt_memcpy_w.o(.text) - _memcpy_lastbytes_aligned 0x0800072f Thumb Code 0 rt_memcpy_w.o(.text) - __aeabi_memset4 0x0800074b Thumb Code 16 aeabi_memset4.o(.text) - __aeabi_memset8 0x0800074b Thumb Code 0 aeabi_memset4.o(.text) - __aeabi_memclr4 0x0800075b Thumb Code 0 rt_memclr_w.o(.text) - __aeabi_memclr8 0x0800075b Thumb Code 0 rt_memclr_w.o(.text) - __rt_memclr_w 0x0800075b Thumb Code 0 rt_memclr_w.o(.text) - _memset_w 0x0800075f Thumb Code 74 rt_memclr_w.o(.text) - __use_two_region_memory 0x080007a9 Thumb Code 2 heapauxi.o(.text) - __rt_heap_escrow$2region 0x080007ab Thumb Code 2 heapauxi.o(.text) - __rt_heap_expand$2region 0x080007ad Thumb Code 2 heapauxi.o(.text) - __read_errno 0x080007af Thumb Code 10 _rserrno.o(.text) - __set_errno 0x080007b9 Thumb Code 12 _rserrno.o(.text) - _printf_int_common 0x080007c5 Thumb Code 178 _printf_intcommon.o(.text) - _printf_fp_dec_real 0x08000a27 Thumb Code 620 _printf_fp_dec.o(.text) - _printf_char_common 0x08000c9f Thumb Code 32 _printf_char_common.o(.text) - _sputc 0x08000cc5 Thumb Code 10 _sputc.o(.text) - _snputc 0x08000ccf Thumb Code 16 _snputc.o(.text) - _printf_cs_common 0x08000cdf Thumb Code 20 _printf_char.o(.text) - _printf_char 0x08000cf3 Thumb Code 16 _printf_char.o(.text) - _printf_string 0x08000d03 Thumb Code 8 _printf_char.o(.text) - __rt_locale 0x08000d0d Thumb Code 8 rt_locale_intlibspace.o(.text) - __aeabi_errno_addr 0x08000d15 Thumb Code 8 rt_errno_addr_intlibspace.o(.text) - __errno$intlibspace 0x08000d15 Thumb Code 0 rt_errno_addr_intlibspace.o(.text) - __rt_errno_addr$intlibspace 0x08000d15 Thumb Code 0 rt_errno_addr_intlibspace.o(.text) - _ll_udiv10 0x08000d1d Thumb Code 138 lludiv10.o(.text) - _printf_fp_infnan 0x08000da9 Thumb Code 112 _printf_fp_infnan.o(.text) - _btod_etento 0x08000e29 Thumb Code 224 bigflt0.o(.text) - __user_libspace 0x08000f0d Thumb Code 8 libspace.o(.text) - __user_perproc_libspace 0x08000f0d Thumb Code 0 libspace.o(.text) - __user_perthread_libspace 0x08000f0d Thumb Code 0 libspace.o(.text) - __user_setup_stackheap 0x08000f15 Thumb Code 74 sys_stackheap_outer.o(.text) - exit 0x08000f5f Thumb Code 18 exit.o(.text) - strcmp 0x08000f71 Thumb Code 124 strcmpv7em.o(.text) - _sys_exit 0x08000fed Thumb Code 8 sys_exit.o(.text) - __I$use$semihosting 0x08000ff9 Thumb Code 0 use_no_semi.o(.text) - __use_no_semihosting_swi 0x08000ff9 Thumb Code 2 use_no_semi.o(.text) - __semihosting_library_function 0x08000ffb Thumb Code 0 indicate_semi.o(.text) - AHRS_GetEulr 0x08000ffd Thumb Code 220 ahrs.o(.text.AHRS_GetEulr) - AHRS_Init 0x080010d9 Thumb Code 388 ahrs.o(.text.AHRS_Init) - AHRS_ResetEulr 0x0800125d Thumb Code 10 ahrs.o(.text.AHRS_ResetEulr) - AHRS_Update 0x08001269 Thumb Code 1422 ahrs.o(.text.AHRS_Update) - AbsClip 0x08001ae9 Thumb Code 34 user_math.o(.text.AbsClip) - BMI088_AcclStartDmaRecv 0x08001b21 Thumb Code 24 bmi088.o(.text.BMI088_AcclStartDmaRecv) - BMI088_AcclWaitDmaCplt 0x08001b39 Thumb Code 16 bmi088.o(.text.BMI088_AcclWaitDmaCplt) - BMI088_GetUpdateFreq 0x08001b49 Thumb Code 12 bmi088.o(.text.BMI088_GetUpdateFreq) - BMI088_GyroStartDmaRecv 0x08001b69 Thumb Code 26 bmi088.o(.text.BMI088_GyroStartDmaRecv) - BMI088_GyroWaitDmaCplt 0x08001b85 Thumb Code 16 bmi088.o(.text.BMI088_GyroWaitDmaCplt) - BMI088_Init 0x08001b95 Thumb Code 322 bmi088.o(.text.BMI088_Init) - BMI088_ParseAccl 0x08001cd9 Thumb Code 148 bmi088.o(.text.BMI088_ParseAccl) - BMI088_ParseGyro 0x08001d6d Thumb Code 132 bmi088.o(.text.BMI088_ParseGyro) - BMI088_WaitNew 0x08001e31 Thumb Code 16 bmi088.o(.text.BMI088_WaitNew) - BSP_CAN_GetHandle 0x08002029 Thumb Code 38 can_1.o(.text.BSP_CAN_GetHandle) - BSP_CAN_GetMessage 0x08002051 Thumb Code 128 can_1.o(.text.BSP_CAN_GetMessage) - BSP_CAN_Init 0x080020d1 Thumb Code 308 can_1.o(.text.BSP_CAN_Init) - BSP_CAN_ParseId 0x08002205 Thumb Code 20 can_1.o(.text.BSP_CAN_ParseId) - BSP_CAN_RegisterCallback 0x08002219 Thumb Code 68 can_1.o(.text.BSP_CAN_RegisterCallback) - BSP_CAN_RegisterId 0x0800225d Thumb Code 30 can_1.o(.text.BSP_CAN_RegisterId) - BSP_CAN_Transmit 0x08002405 Thumb Code 226 can_1.o(.text.BSP_CAN_Transmit) - BSP_CAN_TransmitStdDataFrame 0x080024e9 Thumb Code 40 can_1.o(.text.BSP_CAN_TransmitStdDataFrame) - BSP_Free 0x080026a9 Thumb Code 8 mm.o(.text.BSP_Free) - BSP_GPIO_DisableIRQ 0x080026b1 Thumb Code 52 gpio_1.o(.text.BSP_GPIO_DisableIRQ) - BSP_GPIO_EnableIRQ 0x080026e5 Thumb Code 52 gpio_1.o(.text.BSP_GPIO_EnableIRQ) - BSP_GPIO_ReadPin 0x08002719 Thumb Code 44 gpio_1.o(.text.BSP_GPIO_ReadPin) - BSP_GPIO_RegisterCallback 0x08002745 Thumb Code 74 gpio_1.o(.text.BSP_GPIO_RegisterCallback) - BSP_GPIO_WritePin 0x08002791 Thumb Code 48 gpio_1.o(.text.BSP_GPIO_WritePin) - BSP_Malloc 0x080027c1 Thumb Code 8 mm.o(.text.BSP_Malloc) - BSP_PWM_SetComp 0x080027c9 Thumb Code 116 pwm.o(.text.BSP_PWM_SetComp) - BSP_PWM_Start 0x0800283d Thumb Code 44 pwm.o(.text.BSP_PWM_Start) - BSP_SPI_GetHandle 0x08002869 Thumb Code 18 spi_1.o(.text.BSP_SPI_GetHandle) - BSP_SPI_Receive 0x0800287d Thumb Code 52 spi_1.o(.text.BSP_SPI_Receive) - BSP_SPI_RegisterCallback 0x080028b1 Thumb Code 30 spi_1.o(.text.BSP_SPI_RegisterCallback) - BSP_SPI_Transmit 0x080028d1 Thumb Code 52 spi_1.o(.text.BSP_SPI_Transmit) - BSP_TIME_Delay 0x08002905 Thumb Code 88 time.o(.text.BSP_TIME_Delay_ms) - BSP_TIME_Delay_ms 0x08002905 Thumb Code 88 time.o(.text.BSP_TIME_Delay_ms) - BSP_TIME_Get 0x0800295d Thumb Code 80 time.o(.text.BSP_TIME_Get_us) - BSP_TIME_Get_us 0x0800295d Thumb Code 80 time.o(.text.BSP_TIME_Get_us) - BSP_UART_GetHandle 0x080029ad Thumb Code 16 uart.o(.text.BSP_UART_GetHandle) - BSP_UART_IRQHandler 0x080029cd Thumb Code 58 uart.o(.text.BSP_UART_IRQHandler) - BSP_UART_RegisterCallback 0x08002a09 Thumb Code 50 uart.o(.text.BSP_UART_RegisterCallback) - BSP_UART_Transmit 0x08002a3d Thumb Code 64 uart.o(.text.BSP_UART_Transmit) - BusFault_Handler 0x08002a7d Thumb Code 2 stm32f4xx_it.o(.text.BusFault_Handler) - CAN1_RX0_IRQHandler 0x08002a81 Thumb Code 16 stm32f4xx_it.o(.text.CAN1_RX0_IRQHandler) - CAN1_RX1_IRQHandler 0x08002a91 Thumb Code 16 stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler) - CAN1_TX_IRQHandler 0x08002aa1 Thumb Code 16 stm32f4xx_it.o(.text.CAN1_TX_IRQHandler) - CAN2_RX0_IRQHandler 0x08002ab1 Thumb Code 16 stm32f4xx_it.o(.text.CAN2_RX0_IRQHandler) - CAN2_RX1_IRQHandler 0x08002ac1 Thumb Code 16 stm32f4xx_it.o(.text.CAN2_RX1_IRQHandler) - CAN2_TX_IRQHandler 0x08002ad1 Thumb Code 16 stm32f4xx_it.o(.text.CAN2_TX_IRQHandler) - CMD_Adapter_GetInput 0x08002b05 Thumb Code 52 cmd_adapter.o(.text.CMD_Adapter_GetInput) - CMD_Adapter_InitAll 0x08002b39 Thumb Code 58 cmd_adapter.o(.text.CMD_Adapter_InitAll) - CMD_Adapter_Register 0x08002b75 Thumb Code 32 cmd_adapter.o(.text.CMD_Adapter_Register) - CMD_Arbitrate 0x08002b95 Thumb Code 96 cmd_1.o(.text.CMD_Arbitrate) - CMD_Behavior_Handle_ACCELERATE 0x08002bf9 Thumb Code 36 cmd_behavior.o(.text.CMD_Behavior_Handle_ACCELERATE) - CMD_Behavior_Handle_AUTOAIM 0x08002c1d Thumb Code 4 cmd_behavior.o(.text.CMD_Behavior_Handle_AUTOAIM) - CMD_Behavior_Handle_BACK 0x08002c21 Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_BACK) - CMD_Behavior_Handle_CHECKSOURCERCPC 0x08002c39 Thumb Code 36 cmd_behavior.o(.text.CMD_Behavior_Handle_CHECKSOURCERCPC) - CMD_Behavior_Handle_DECELERATE 0x08002c5d Thumb Code 36 cmd_behavior.o(.text.CMD_Behavior_Handle_DECELERATE) - CMD_Behavior_Handle_FIRE 0x08002c81 Thumb Code 12 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE) - CMD_Behavior_Handle_FIRE_MODE 0x08002c8d Thumb Code 20 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE_MODE) - CMD_Behavior_Handle_FORE 0x08002ca1 Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_FORE) - CMD_Behavior_Handle_LEFT 0x08002cb9 Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_LEFT) - CMD_Behavior_Handle_RIGHT 0x08002cd1 Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_RIGHT) - CMD_Behavior_Handle_ROTOR 0x08002ce9 Thumb Code 18 cmd_behavior.o(.text.CMD_Behavior_Handle_ROTOR) - CMD_Behavior_Init 0x08002cfd Thumb Code 4 cmd_behavior.o(.text.CMD_Behavior_Init) - CMD_Behavior_IsTriggered 0x08002d01 Thumb Code 204 cmd_behavior.o(.text.CMD_Behavior_IsTriggered) - CMD_Behavior_ProcessAll 0x08002dcd Thumb Code 82 cmd_behavior.o(.text.CMD_Behavior_ProcessAll) - CMD_ET16s_GetInput 0x08002e21 Thumb Code 244 cmd_adapter.o(.text.CMD_ET16s_GetInput) - CMD_ET16s_Init 0x08002f15 Thumb Code 8 cmd_adapter.o(.text.CMD_ET16s_Init) - CMD_ET16s_IsOnline 0x08002f1d Thumb Code 6 cmd_adapter.o(.text.CMD_ET16s_IsOnline) - CMD_GenerateCommands 0x08002f25 Thumb Code 152 cmd_1.o(.text.CMD_GenerateCommands) - CMD_Init 0x08002fbd Thumb Code 40 cmd_1.o(.text.CMD_Init) - CMD_Update 0x08003191 Thumb Code 28 cmd_1.o(.text.CMD_Update) - CMD_UpdateInput 0x080031ad Thumb Code 104 cmd_1.o(.text.CMD_UpdateInput) - CircleAdd 0x08003215 Thumb Code 58 user_math.o(.text.CircleAdd) - CircleError 0x08003251 Thumb Code 60 user_math.o(.text.CircleError) - Clip 0x0800328d Thumb Code 38 user_math.o(.text.Clip) - Config_GetRobotParam 0x080032b5 Thumb Code 10 config.o(.text.Config_GetRobotParam) - DMA1_Stream1_IRQHandler 0x080032c1 Thumb Code 16 stm32f4xx_it.o(.text.DMA1_Stream1_IRQHandler) - DMA2_Stream1_IRQHandler 0x080032d1 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream1_IRQHandler) - DMA2_Stream2_IRQHandler 0x080032e1 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream2_IRQHandler) - DMA2_Stream3_IRQHandler 0x080032f1 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream3_IRQHandler) - DMA2_Stream6_IRQHandler 0x08003301 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream6_IRQHandler) - DR16_Init 0x080033cd Thumb Code 70 dr16.o(.text.DR16_Init) - DebugMon_Handler 0x08003429 Thumb Code 2 stm32f4xx_it.o(.text.DebugMon_Handler) - ET16S_ParseRC 0x0800342d Thumb Code 146 et16s.o(.text.ET16S_ParseRC) - ET16s_HandleOffline 0x080034c1 Thumb Code 54 et16s.o(.text.ET16s_HandleOffline) - ET16s_ParseRaw 0x080034f9 Thumb Code 616 et16s.o(.text.ET16s_ParseRaw) - EXTI0_IRQHandler 0x08003761 Thumb Code 10 stm32f4xx_it.o(.text.EXTI0_IRQHandler) - EXTI3_IRQHandler 0x0800376d Thumb Code 10 stm32f4xx_it.o(.text.EXTI3_IRQHandler) - EXTI4_IRQHandler 0x08003779 Thumb Code 10 stm32f4xx_it.o(.text.EXTI4_IRQHandler) - EXTI9_5_IRQHandler 0x08003785 Thumb Code 10 stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) - Error_Handler 0x08003791 Thumb Code 6 main.o(.text.Error_Handler) - Gimbal_Control 0x08003799 Thumb Code 928 gimbal.o(.text.Gimbal_Control) - Gimbal_Control_mode 0x08003b39 Thumb Code 88 gimbal.o(.text.Gimbal_Control_mode) - Gimbal_Init 0x08003c35 Thumb Code 342 gimbal.o(.text.Gimbal_Init) - Gimbal_Output 0x08003d8d Thumb Code 284 gimbal.o(.text.Gimbal_Output) - Gimbal_UpdateFeedback 0x08003f31 Thumb Code 286 gimbal.o(.text.Gimbal_UpdateFeedback) - Gimbal_UpdateIMU 0x08004051 Thumb Code 78 gimbal.o(.text.Gimbal_UpdateIMU) - HAL_CAN_ActivateNotification 0x080040a1 Thumb Code 38 stm32f4xx_hal_can.o(.text.HAL_CAN_ActivateNotification) - HAL_CAN_AddTxMessage 0x080040c9 Thumb Code 146 stm32f4xx_hal_can.o(.text.HAL_CAN_AddTxMessage) - HAL_CAN_ConfigFilter 0x0800415d Thumb Code 222 stm32f4xx_hal_can.o(.text.HAL_CAN_ConfigFilter) - HAL_CAN_ErrorCallback 0x0800423d Thumb Code 36 can_1.o(.text.HAL_CAN_ErrorCallback) - HAL_CAN_GetRxFifoFillLevel 0x08004261 Thumb Code 32 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxFifoFillLevel) - HAL_CAN_GetRxMessage 0x08004281 Thumb Code 292 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxMessage) - HAL_CAN_GetTxMailboxesFreeLevel 0x080043a5 Thumb Code 40 stm32f4xx_hal_can.o(.text.HAL_CAN_GetTxMailboxesFreeLevel) - HAL_CAN_IRQHandler 0x080043cd Thumb Code 570 stm32f4xx_hal_can.o(.text.HAL_CAN_IRQHandler) - HAL_CAN_Init 0x08004609 Thumb Code 244 stm32f4xx_hal_can.o(.text.HAL_CAN_Init) - HAL_CAN_MspInit 0x080046fd Thumb Code 330 can.o(.text.HAL_CAN_MspInit) - HAL_CAN_RxFifo0FullCallback 0x08004849 Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo0FullCallback) - HAL_CAN_RxFifo0MsgPendingCallback 0x0800486d Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo0MsgPendingCallback) - HAL_CAN_RxFifo1FullCallback 0x08004891 Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo1FullCallback) - HAL_CAN_RxFifo1MsgPendingCallback 0x080048b5 Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo1MsgPendingCallback) - HAL_CAN_SleepCallback 0x080048d9 Thumb Code 36 can_1.o(.text.HAL_CAN_SleepCallback) - HAL_CAN_Start 0x080048fd Thumb Code 90 stm32f4xx_hal_can.o(.text.HAL_CAN_Start) - HAL_CAN_TxMailbox0AbortCallback 0x08004959 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox0AbortCallback) - HAL_CAN_TxMailbox0CompleteCallback 0x0800497d Thumb Code 34 can_1.o(.text.HAL_CAN_TxMailbox0CompleteCallback) - HAL_CAN_TxMailbox1AbortCallback 0x080049a1 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox1AbortCallback) - HAL_CAN_TxMailbox1CompleteCallback 0x080049c5 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox1CompleteCallback) - HAL_CAN_TxMailbox2AbortCallback 0x080049e9 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox2AbortCallback) - HAL_CAN_TxMailbox2CompleteCallback 0x08004a0d Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox2CompleteCallback) - HAL_CAN_WakeUpFromRxMsgCallback 0x08004a31 Thumb Code 36 can_1.o(.text.HAL_CAN_WakeUpFromRxMsgCallback) - HAL_DMA_Abort 0x08004a55 Thumb Code 128 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort) - HAL_DMA_Abort_IT 0x08004ad5 Thumb Code 36 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort_IT) - HAL_DMA_IRQHandler 0x08004af9 Thumb Code 396 stm32f4xx_hal_dma.o(.text.HAL_DMA_IRQHandler) - HAL_DMA_Init 0x08004c85 Thumb Code 206 stm32f4xx_hal_dma.o(.text.HAL_DMA_Init) - HAL_DMA_Start_IT 0x08004d55 Thumb Code 98 stm32f4xx_hal_dma.o(.text.HAL_DMA_Start_IT) - HAL_Delay 0x08004db9 Thumb Code 40 stm32f4xx_hal.o(.text.HAL_Delay) - HAL_GPIO_EXTI_Callback 0x08004de1 Thumb Code 44 gpio_1.o(.text.HAL_GPIO_EXTI_Callback) - HAL_GPIO_EXTI_IRQHandler 0x08004e0d Thumb Code 26 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) - HAL_GPIO_Init 0x08004e29 Thumb Code 410 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init) - HAL_GPIO_ReadPin 0x08004fc5 Thumb Code 10 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) - HAL_GPIO_WritePin 0x08004fd1 Thumb Code 10 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_WritePin) - HAL_GetTick 0x08004fdd Thumb Code 12 stm32f4xx_hal.o(.text.HAL_GetTick) - HAL_I2C_Init 0x08004fe9 Thumb Code 408 stm32f4xx_hal_i2c.o(.text.HAL_I2C_Init) - HAL_I2C_MspInit 0x08005181 Thumb Code 216 i2c.o(.text.HAL_I2C_MspInit) - HAL_IncTick 0x08005259 Thumb Code 26 stm32f4xx_hal.o(.text.HAL_IncTick) - HAL_Init 0x08005275 Thumb Code 54 stm32f4xx_hal.o(.text.HAL_Init) - HAL_InitTick 0x080052ad Thumb Code 80 stm32f4xx_hal.o(.text.HAL_InitTick) - HAL_MspInit 0x080052fd Thumb Code 70 stm32f4xx_hal_msp.o(.text.HAL_MspInit) - HAL_NVIC_DisableIRQ 0x08005345 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) - HAL_NVIC_EnableIRQ 0x0800534d Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) - HAL_NVIC_SetPriority 0x08005355 Thumb Code 30 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) - HAL_NVIC_SetPriorityGrouping 0x08005375 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) - HAL_RCC_ClockConfig 0x0800537d Thumb Code 352 stm32f4xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) - HAL_RCC_GetHCLKFreq 0x080054dd Thumb Code 12 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) - HAL_RCC_GetPCLK1Freq 0x080054e9 Thumb Code 34 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) - HAL_RCC_GetPCLK2Freq 0x0800550d Thumb Code 34 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) - HAL_RCC_GetSysClockFreq 0x08005531 Thumb Code 104 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) - HAL_RCC_OscConfig 0x08005599 Thumb Code 840 stm32f4xx_hal_rcc.o(.text.HAL_RCC_OscConfig) - HAL_SPI_ErrorCallback 0x080058e1 Thumb Code 34 spi_1.o(.text.HAL_SPI_ErrorCallback) - HAL_SPI_Init 0x08005905 Thumb Code 180 stm32f4xx_hal_spi.o(.text.HAL_SPI_Init) - HAL_SPI_MspInit 0x080059b9 Thumb Code 302 spi.o(.text.HAL_SPI_MspInit) - HAL_SPI_Receive 0x08005ae9 Thumb Code 370 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive) - HAL_SPI_Receive_DMA 0x08005c5d Thumb Code 236 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA) - HAL_SPI_RxCpltCallback 0x08005d49 Thumb Code 34 spi_1.o(.text.HAL_SPI_RxCpltCallback) - HAL_SPI_RxHalfCpltCallback 0x08005d6d Thumb Code 34 spi_1.o(.text.HAL_SPI_RxHalfCpltCallback) - HAL_SPI_Transmit 0x08005d91 Thumb Code 394 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit) - HAL_SPI_TransmitReceive 0x08005f1d Thumb Code 504 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive) - HAL_SPI_TransmitReceive_DMA 0x08006115 Thumb Code 292 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA) - HAL_SPI_Transmit_DMA 0x08006239 Thumb Code 204 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA) - HAL_SPI_TxCpltCallback 0x08006305 Thumb Code 32 spi_1.o(.text.HAL_SPI_TxCpltCallback) - HAL_SPI_TxHalfCpltCallback 0x08006325 Thumb Code 34 spi_1.o(.text.HAL_SPI_TxHalfCpltCallback) - HAL_SPI_TxRxCpltCallback 0x08006349 Thumb Code 34 spi_1.o(.text.HAL_SPI_TxRxCpltCallback) - HAL_SPI_TxRxHalfCpltCallback 0x0800636d Thumb Code 34 spi_1.o(.text.HAL_SPI_TxRxHalfCpltCallback) - HAL_SYSTICK_Config 0x08006391 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_SYSTICK_Config) - HAL_TIMEx_BreakCallback 0x08006399 Thumb Code 2 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) - HAL_TIMEx_CommutCallback 0x0800639d Thumb Code 2 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) - HAL_TIMEx_ConfigBreakDeadTime 0x080063a1 Thumb Code 76 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) - HAL_TIMEx_MasterConfigSynchronization 0x080063ed Thumb Code 184 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) - HAL_TIM_Base_Init 0x080064a5 Thumb Code 90 stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init) - HAL_TIM_Base_MspInit 0x08006501 Thumb Code 114 tim.o(.text.HAL_TIM_Base_MspInit) - HAL_TIM_ConfigClockSource 0x08006575 Thumb Code 222 stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) - HAL_TIM_IC_CaptureCallback 0x08006655 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) - HAL_TIM_IRQHandler 0x08006659 Thumb Code 308 stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler) - HAL_TIM_MspPostInit 0x0800678d Thumb Code 154 tim.o(.text.HAL_TIM_MspPostInit) - HAL_TIM_OC_DelayElapsedCallback 0x08006829 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) - HAL_TIM_PWM_ConfigChannel 0x0800682d Thumb Code 152 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) - HAL_TIM_PWM_Init 0x080068c5 Thumb Code 90 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init) - HAL_TIM_PWM_MspInit 0x08006921 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit) - HAL_TIM_PWM_PulseFinishedCallback 0x08006925 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) - HAL_TIM_PWM_Start 0x08006929 Thumb Code 290 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Start) - HAL_TIM_PeriodElapsedCallback 0x08006a4d Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback) - HAL_TIM_TriggerCallback 0x08006a51 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) - HAL_UARTEx_RxEventCallback 0x08006a55 Thumb Code 2 stm32f4xx_hal_uart.o(.text.HAL_UARTEx_RxEventCallback) - HAL_UART_ErrorCallback 0x08006a59 Thumb Code 38 uart.o(.text.HAL_UART_ErrorCallback) - HAL_UART_IRQHandler 0x08006a81 Thumb Code 602 stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler) - HAL_UART_Init 0x08006cdd Thumb Code 96 stm32f4xx_hal_uart.o(.text.HAL_UART_Init) - HAL_UART_MspInit 0x08006d3d Thumb Code 730 usart.o(.text.HAL_UART_MspInit) - HAL_UART_Receive_DMA 0x08007019 Thumb Code 44 stm32f4xx_hal_uart.o(.text.HAL_UART_Receive_DMA) - HAL_UART_RxCpltCallback 0x08007045 Thumb Code 38 uart.o(.text.HAL_UART_RxCpltCallback) - HAL_UART_RxHalfCpltCallback 0x0800706d Thumb Code 38 uart.o(.text.HAL_UART_RxHalfCpltCallback) - HAL_UART_Transmit_DMA 0x08007095 Thumb Code 140 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA) - HAL_UART_Transmit_IT 0x08007121 Thumb Code 56 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_IT) - HAL_UART_TxCpltCallback 0x08007159 Thumb Code 38 uart.o(.text.HAL_UART_TxCpltCallback) - HAL_UART_TxHalfCpltCallback 0x08007181 Thumb Code 36 uart.o(.text.HAL_UART_TxHalfCpltCallback) - HardFault_Handler 0x080071a5 Thumb Code 2 stm32f4xx_it.o(.text.HardFault_Handler) - InvSqrt 0x080071a9 Thumb Code 66 user_math.o(.text.InvSqrt) - Keymap 0x080071ed Thumb Code 36 et16s.o(.text.Keymap) - LowPassFilter2p_Apply 0x08007211 Thumb Code 124 filter.o(.text.LowPassFilter2p_Apply) - LowPassFilter2p_Init 0x0800728d Thumb Code 164 filter.o(.text.LowPassFilter2p_Init) - LowPassFilter2p_Reset 0x08007331 Thumb Code 92 filter.o(.text.LowPassFilter2p_Reset) - MOTOR_DM_Enable 0x080073c9 Thumb Code 70 motor_dm.o(.text.MOTOR_DM_Enable) - MOTOR_DM_GetMotor 0x08007425 Thumb Code 88 motor_dm.o(.text.MOTOR_DM_GetMotor) - MOTOR_DM_MITCtrl 0x0800747d Thumb Code 46 motor_dm.o(.text.MOTOR_DM_MITCtrl) - MOTOR_DM_Register 0x080075a5 Thumb Code 164 motor_dm.o(.text.MOTOR_DM_Register) - MOTOR_DM_Update 0x08007761 Thumb Code 160 motor_dm.o(.text.MOTOR_DM_Update) - MOTOR_RM_Ctrl 0x0800783d Thumb Code 216 motor_rm.o(.text.MOTOR_RM_Ctrl) - MOTOR_RM_GetMotor 0x08007979 Thumb Code 80 motor_rm.o(.text.MOTOR_RM_GetMotor) - MOTOR_RM_Register 0x080079ed Thumb Code 166 motor_rm.o(.text.MOTOR_RM_Register) - MOTOR_RM_Relax 0x08007a95 Thumb Code 16 motor_rm.o(.text.MOTOR_RM_Relax) - MOTOR_RM_SetOutput 0x08007aa5 Thumb Code 158 motor_rm.o(.text.MOTOR_RM_SetOutput) - MOTOR_RM_Update 0x08007b45 Thumb Code 198 motor_rm.o(.text.MOTOR_RM_Update) - MX_CAN1_Init 0x08007c0d Thumb Code 64 can.o(.text.MX_CAN1_Init) - MX_CAN2_Init 0x08007c4d Thumb Code 64 can.o(.text.MX_CAN2_Init) - MX_DMA_Init 0x08007c8d Thumb Code 138 dma.o(.text.MX_DMA_Init) - MX_FREERTOS_Init 0x08007d19 Thumb Code 58 freertos.o(.text.MX_FREERTOS_Init) - MX_GPIO_Init 0x08007d55 Thumb Code 484 gpio.o(.text.MX_GPIO_Init) - MX_I2C1_Init 0x08007f39 Thumb Code 62 i2c.o(.text.MX_I2C1_Init) - MX_I2C2_Init 0x08007f79 Thumb Code 62 i2c.o(.text.MX_I2C2_Init) - MX_SPI1_Init 0x08007fb9 Thumb Code 78 spi.o(.text.MX_SPI1_Init) - MX_TIM10_Init 0x08008009 Thumb Code 136 tim.o(.text.MX_TIM10_Init) - MX_TIM8_Init 0x08008091 Thumb Code 270 tim.o(.text.MX_TIM8_Init) - MX_USART1_UART_Init 0x080081a1 Thumb Code 56 usart.o(.text.MX_USART1_UART_Init) - MX_USART2_UART_Init 0x080081d9 Thumb Code 56 usart.o(.text.MX_USART2_UART_Init) - MX_USART3_UART_Init 0x08008211 Thumb Code 68 usart.o(.text.MX_USART3_UART_Init) - MX_USART6_UART_Init 0x08008255 Thumb Code 56 usart.o(.text.MX_USART6_UART_Init) - MemManage_Handler 0x0800828d Thumb Code 2 stm32f4xx_it.o(.text.MemManage_Handler) - Motor_Step_Ctrl 0x080083ed Thumb Code 36 motor_step.o(.text.Motor_Step_Ctrl) - Motor_Step_Init 0x08008411 Thumb Code 12 motor_step.o(.text.Motor_Step_Init) - NMI_Handler 0x0800841d Thumb Code 2 stm32f4xx_it.o(.text.NMI_Handler) - PID_Calc 0x0800844d Thumb Code 368 pid.o(.text.PID_Calc) - PID_Init 0x080085bd Thumb Code 144 pid.o(.text.PID_Init) - PID_Reset 0x0800864d Thumb Code 44 pid.o(.text.PID_Reset) - PID_ResetIntegral 0x08008679 Thumb Code 14 pid.o(.text.PID_ResetIntegral) - PendSV_Handler 0x08008691 Thumb Code 100 port.o(.text.PendSV_Handler) - REMOTE_Init 0x080086f5 Thumb Code 68 et16s.o(.text.REMOTE_Init) - REMOTE_StartDmaRecv 0x0800874d Thumb Code 32 et16s.o(.text.REMOTE_StartDmaRecv) - REMOTE_WaitDmaCplt 0x0800876d Thumb Code 22 et16s.o(.text.REMOTE_WaitDmaCplt) - SVC_Handler 0x08008b11 Thumb Code 36 port.o(.text.SVC_Handler) - ScaleSumTo1 0x08008b3d Thumb Code 54 user_math.o(.text.ScaleSumTo1) - Shoot_CaluTargetAngle 0x08008bf1 Thumb Code 160 shoot.o(.text.Shoot_CaluTargetAngle) - Shoot_CaluTargetRPM 0x08008c91 Thumb Code 44 shoot.o(.text.Shoot_CaluTargetRPM) - Shoot_Control 0x08008cbd Thumb Code 108 shoot.o(.text.Shoot_Control) - Shoot_Init 0x08008d29 Thumb Code 326 shoot.o(.text.Shoot_Init) - Shoot_JamDetectionFSM 0x08008e71 Thumb Code 304 shoot.o(.text.Shoot_JamDetectionFSM) - Shoot_ResetCalu 0x08008fa1 Thumb Code 152 shoot.o(.text.Shoot_ResetCalu) - Shoot_ResetIntegral 0x08009039 Thumb Code 70 shoot.o(.text.Shoot_ResetIntegral) - Shoot_ResetOutput 0x08009081 Thumb Code 50 shoot.o(.text.Shoot_ResetOutput) - Shoot_RunningFSM 0x080090b5 Thumb Code 1264 shoot.o(.text.Shoot_RunningFSM) - Shoot_SetMode 0x080095a5 Thumb Code 14 shoot.o(.text.Shoot_SetMode) - Shoot_UpdateFeedback 0x080095b5 Thumb Code 500 shoot.o(.text.Shoot_UpdateFeedback) - StartDefaultTask 0x080097a9 Thumb Code 12 freertos.o(.text.StartDefaultTask) - SysTick_Handler 0x080097e5 Thumb Code 20 stm32f4xx_it.o(.text.SysTick_Handler) - SystemClock_Config 0x080097f9 Thumb Code 164 main.o(.text.SystemClock_Config) - SystemInit 0x0800989d Thumb Code 18 system_stm32f4xx.o(.text.SystemInit) - TIM1_UP_TIM10_IRQHandler 0x080098b1 Thumb Code 16 stm32f4xx_it.o(.text.TIM1_UP_TIM10_IRQHandler) - TIM_Base_SetConfig 0x080098c1 Thumb Code 300 stm32f4xx_hal_tim.o(.text.TIM_Base_SetConfig) - TIM_CCxChannelCmd 0x080099ed Thumb Code 36 stm32f4xx_hal_tim.o(.text.TIM_CCxChannelCmd) - TIM_ETR_SetConfig 0x08009a11 Thumb Code 22 stm32f4xx_hal_tim.o(.text.TIM_ETR_SetConfig) - TIM_OC2_SetConfig 0x08009a9d Thumb Code 106 stm32f4xx_hal_tim.o(.text.TIM_OC2_SetConfig) - Task_ET16s 0x08009c09 Thumb Code 128 et16s_1.o(.text.Task_ET16s) - Task_Init 0x08009c89 Thumb Code 352 init.o(.text.Task_Init) - Task_ai 0x08009de9 Thumb Code 64 ai_1.o(.text.Task_ai) - Task_atti_esti 0x08009e29 Thumb Code 376 atti_esti.o(.text.Task_atti_esti) - Task_chassis_ctrl 0x08009fa1 Thumb Code 116 chassis_ctrl.o(.text.Task_chassis_ctrl) - Task_cmd 0x0800a019 Thumb Code 232 cmd.o(.text.Task_cmd) - Task_dr16 0x0800a101 Thumb Code 104 dr16_1.o(.text.Task_dr16) - Task_gimbal_ctrl 0x0800a169 Thumb Code 180 gimbal_ctrl.o(.text.Task_gimbal_ctrl) - Task_shoot_ctrl 0x0800a221 Thumb Code 148 shoot_ctrl.o(.text.Task_shoot_ctrl) - Task_step_motor 0x0800a2b9 Thumb Code 112 step_motor_1.o(.text.Task_step_motor) - Task_vofa 0x0800a329 Thumb Code 96 vofa_1.o(.text.Task_vofa) - UART_Start_Receive_DMA 0x0800a751 Thumb Code 170 stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA) - USART1_IRQHandler 0x0800a851 Thumb Code 24 stm32f4xx_it.o(.text.USART1_IRQHandler) - USART3_IRQHandler 0x0800a869 Thumb Code 24 stm32f4xx_it.o(.text.USART3_IRQHandler) - USART6_IRQHandler 0x0800a881 Thumb Code 24 stm32f4xx_it.o(.text.USART6_IRQHandler) - UsageFault_Handler 0x0800a899 Thumb Code 2 stm32f4xx_it.o(.text.UsageFault_Handler) - VOFA_FireWater_Send 0x0800a89d Thumb Code 156 vofa.o(.text.VOFA_FireWater_Send) - VOFA_JustFloat_Send 0x0800a945 Thumb Code 58 vofa.o(.text.VOFA_JustFloat_Send) - VOFA_RawData_Send 0x0800a981 Thumb Code 24 vofa.o(.text.VOFA_RawData_Send) - VOFA_Send 0x0800a999 Thumb Code 140 vofa.o(.text.VOFA_Send) - VOFA_init 0x0800aa49 Thumb Code 16 vofa.o(.text.VOFA_init) - chassis_init 0x0800ab35 Thumb Code 564 chassis.o(.text.chassis_init) - configureTimerForRunTimeStats 0x0800ad69 Thumb Code 2 freertos.o(.text.configureTimerForRunTimeStats) - eTaskGetState 0x0800ad85 Thumb Code 156 tasks.o(.text.eTaskGetState) - getRunTimeCounterValue 0x0800ae4d Thumb Code 4 freertos.o(.text.getRunTimeCounterValue) - main 0x0800ae51 Thumb Code 74 main.o(.text.main) - major_yaw_Control 0x0800ae9d Thumb Code 32 gimbal.o(.text.major_yaw_Control) - map_fp32 0x0800aebd Thumb Code 26 calc_lib.o(.text.map_fp32) - osDelay 0x0800af1d Thumb Code 32 cmsis_os2.o(.text.osDelay) - osDelayUntil 0x0800af3d Thumb Code 52 cmsis_os2.o(.text.osDelayUntil) - osKernelGetState 0x0800af71 Thumb Code 38 cmsis_os2.o(.text.osKernelGetState) - osKernelGetTickCount 0x0800af99 Thumb Code 20 cmsis_os2.o(.text.osKernelGetTickCount) - osKernelGetTickFreq 0x0800afad Thumb Code 6 cmsis_os2.o(.text.osKernelGetTickFreq) - osKernelInitialize 0x0800afb5 Thumb Code 40 cmsis_os2.o(.text.osKernelInitialize) - osKernelLock 0x0800afdd Thumb Code 44 cmsis_os2.o(.text.osKernelLock) - osKernelStart 0x0800b009 Thumb Code 52 cmsis_os2.o(.text.osKernelStart) - osKernelUnlock 0x0800b03d Thumb Code 68 cmsis_os2.o(.text.osKernelUnlock) - osMessageQueueGet 0x0800b081 Thumb Code 134 cmsis_os2.o(.text.osMessageQueueGet) - osMessageQueueNew 0x0800b109 Thumb Code 160 cmsis_os2.o(.text.osMessageQueueNew) - osMessageQueuePut 0x0800b1a9 Thumb Code 142 cmsis_os2.o(.text.osMessageQueuePut) - osMessageQueueReset 0x0800b239 Thumb Code 36 cmsis_os2.o(.text.osMessageQueueReset) - osMutexAcquire 0x0800b25d Thumb Code 82 cmsis_os2.o(.text.osMutexAcquire) - osMutexNew 0x0800b2b1 Thumb Code 150 cmsis_os2.o(.text.osMutexNew) - osMutexRelease 0x0800b349 Thumb Code 62 cmsis_os2.o(.text.osMutexRelease) - osThreadFlagsSet 0x0800b389 Thumb Code 126 cmsis_os2.o(.text.osThreadFlagsSet) - osThreadFlagsWait 0x0800b409 Thumb Code 186 cmsis_os2.o(.text.osThreadFlagsWait) - osThreadGetId 0x0800b4c5 Thumb Code 8 cmsis_os2.o(.text.osThreadGetId) - osThreadNew 0x0800b4cd Thumb Code 180 cmsis_os2.o(.text.osThreadNew) - osThreadTerminate 0x0800b581 Thumb Code 52 cmsis_os2.o(.text.osThreadTerminate) - pvPortMalloc 0x0800bf5d Thumb Code 330 heap_4.o(.text.pvPortMalloc) - pvTaskIncrementMutexHeldCount 0x0800c0a9 Thumb Code 24 tasks.o(.text.pvTaskIncrementMutexHeldCount) - pxPortInitialiseStack 0x0800c0c1 Thumb Code 40 port.o(.text.pxPortInitialiseStack) - uxListRemove 0x0800c115 Thumb Code 36 list.o(.text.uxListRemove) - vApplicationGetIdleTaskMemory 0x0800c139 Thumb Code 26 cmsis_os2.o(.text.vApplicationGetIdleTaskMemory) - vApplicationGetTimerTaskMemory 0x0800c155 Thumb Code 28 cmsis_os2.o(.text.vApplicationGetTimerTaskMemory) - vApplicationStackOverflowHook 0x0800c171 Thumb Code 2 freertos.o(.text.vApplicationStackOverflowHook) - vListInitialise 0x0800c175 Thumb Code 22 list.o(.text.vListInitialise) - vListInitialiseItem 0x0800c18d Thumb Code 6 list.o(.text.vListInitialiseItem) - vListInsert 0x0800c195 Thumb Code 58 list.o(.text.vListInsert) - vListInsertEnd 0x0800c1d1 Thumb Code 28 list.o(.text.vListInsertEnd) - vPortEnterCritical 0x0800c201 Thumb Code 70 port.o(.text.vPortEnterCritical) - vPortExitCritical 0x0800c249 Thumb Code 46 port.o(.text.vPortExitCritical) - vPortFree 0x0800c279 Thumb Code 138 heap_4.o(.text.vPortFree) - vPortSetupTimerInterrupt 0x0800c305 Thumb Code 52 port.o(.text.vPortSetupTimerInterrupt) - vPortValidateInterruptPriority 0x0800c339 Thumb Code 98 port.o(.text.vPortValidateInterruptPriority) - vQueueAddToRegistry 0x0800c39d Thumb Code 40 queue.o(.text.vQueueAddToRegistry) - vQueueWaitForMessageRestricted 0x0800c3c5 Thumb Code 68 queue.o(.text.vQueueWaitForMessageRestricted) - vTaskDelay 0x0800c409 Thumb Code 84 tasks.o(.text.vTaskDelay) - vTaskDelayUntil 0x0800c45d Thumb Code 168 tasks.o(.text.vTaskDelayUntil) - vTaskDelete 0x0800c505 Thumb Code 194 tasks.o(.text.vTaskDelete) - vTaskInternalSetTimeOutState 0x0800c5c9 Thumb Code 26 tasks.o(.text.vTaskInternalSetTimeOutState) - vTaskMissedYield 0x0800c5e5 Thumb Code 14 tasks.o(.text.vTaskMissedYield) - vTaskPlaceOnEventList 0x0800c5f5 Thumb Code 50 tasks.o(.text.vTaskPlaceOnEventList) - vTaskPlaceOnEventListRestricted 0x0800c629 Thumb Code 62 tasks.o(.text.vTaskPlaceOnEventListRestricted) - vTaskPriorityDisinheritAfterTimeout 0x0800c669 Thumb Code 164 tasks.o(.text.vTaskPriorityDisinheritAfterTimeout) - vTaskStartScheduler 0x0800c70d Thumb Code 160 tasks.o(.text.vTaskStartScheduler) - vTaskSuspendAll 0x0800c7b5 Thumb Code 16 tasks.o(.text.vTaskSuspendAll) - vTaskSwitchContext 0x0800c7c5 Thumb Code 226 tasks.o(.text.vTaskSwitchContext) - xPortStartScheduler 0x0800c8a9 Thumb Code 274 port.o(.text.xPortStartScheduler) - xPortSysTickHandler 0x0800c9bd Thumb Code 46 port.o(.text.xPortSysTickHandler) - xQueueCreateMutex 0x0800c9ed Thumb Code 22 queue.o(.text.xQueueCreateMutex) - xQueueCreateMutexStatic 0x0800ca05 Thumb Code 34 queue.o(.text.xQueueCreateMutexStatic) - xQueueGenericCreate 0x0800ca29 Thumb Code 70 queue.o(.text.xQueueGenericCreate) - xQueueGenericCreateStatic 0x0800ca71 Thumb Code 150 queue.o(.text.xQueueGenericCreateStatic) - xQueueGenericReset 0x0800cb09 Thumb Code 126 queue.o(.text.xQueueGenericReset) - xQueueGenericSend 0x0800cb89 Thumb Code 418 queue.o(.text.xQueueGenericSend) - xQueueGenericSendFromISR 0x0800cd2d Thumb Code 206 queue.o(.text.xQueueGenericSendFromISR) - xQueueGiveMutexRecursive 0x0800cdfd Thumb Code 66 queue.o(.text.xQueueGiveMutexRecursive) - xQueueReceive 0x0800ce41 Thumb Code 388 queue.o(.text.xQueueReceive) - xQueueReceiveFromISR 0x0800cfc5 Thumb Code 170 queue.o(.text.xQueueReceiveFromISR) - xQueueSemaphoreTake 0x0800d071 Thumb Code 454 queue.o(.text.xQueueSemaphoreTake) - xQueueTakeMutexRecursive 0x0800d239 Thumb Code 60 queue.o(.text.xQueueTakeMutexRecursive) - xTaskCheckForTimeOut 0x0800d275 Thumb Code 136 tasks.o(.text.xTaskCheckForTimeOut) - xTaskCreate 0x0800d2fd Thumb Code 102 tasks.o(.text.xTaskCreate) - xTaskCreateStatic 0x0800d365 Thumb Code 118 tasks.o(.text.xTaskCreateStatic) - xTaskGenericNotify 0x0800d3dd Thumb Code 252 tasks.o(.text.xTaskGenericNotify) - xTaskGenericNotifyFromISR 0x0800d4d9 Thumb Code 298 tasks.o(.text.xTaskGenericNotifyFromISR) - xTaskGetCurrentTaskHandle 0x0800d605 Thumb Code 12 tasks.o(.text.xTaskGetCurrentTaskHandle) - xTaskGetSchedulerState 0x0800d611 Thumb Code 38 tasks.o(.text.xTaskGetSchedulerState) - xTaskGetTickCount 0x0800d639 Thumb Code 12 tasks.o(.text.xTaskGetTickCount) - xTaskGetTickCountFromISR 0x0800d645 Thumb Code 18 tasks.o(.text.xTaskGetTickCountFromISR) - xTaskIncrementTick 0x0800d659 Thumb Code 338 tasks.o(.text.xTaskIncrementTick) - xTaskNotifyWait 0x0800d7ad Thumb Code 144 tasks.o(.text.xTaskNotifyWait) - xTaskPriorityDisinherit 0x0800d83d Thumb Code 146 tasks.o(.text.xTaskPriorityDisinherit) - xTaskPriorityInherit 0x0800d8d1 Thumb Code 146 tasks.o(.text.xTaskPriorityInherit) - xTaskRemoveFromEventList 0x0800d965 Thumb Code 142 tasks.o(.text.xTaskRemoveFromEventList) - xTaskResumeAll 0x0800d9f5 Thumb Code 276 tasks.o(.text.xTaskResumeAll) - xTimerCreateTimerTask 0x0800db09 Thumb Code 108 timers.o(.text.xTimerCreateTimerTask) - xTimerGenericCommand 0x0800db7d Thumb Code 104 timers.o(.text.xTimerGenericCommand) - _btod_d2e 0x0800dbe5 Thumb Code 62 btod.o(CL$$btod_d2e) - _d2e_denorm_low 0x0800dc23 Thumb Code 70 btod.o(CL$$btod_d2e_denorm_low) - _d2e_norm_op1 0x0800dc69 Thumb Code 96 btod.o(CL$$btod_d2e_norm_op1) - __btod_div_common 0x0800dcc9 Thumb Code 696 btod.o(CL$$btod_div_common) - _e2e 0x0800e001 Thumb Code 220 btod.o(CL$$btod_e2e) - _btod_ediv 0x0800e0dd Thumb Code 42 btod.o(CL$$btod_ediv) - _btod_emul 0x0800e107 Thumb Code 42 btod.o(CL$$btod_emul) - __btod_mult_common 0x0800e131 Thumb Code 580 btod.o(CL$$btod_mult_common) - __ARM_fpclassify 0x0800e375 Thumb Code 48 fpclassify.o(i.__ARM_fpclassify) - __ARM_fpclassifyf 0x0800e3a5 Thumb Code 38 fpclassifyf.o(i.__ARM_fpclassifyf) - __hardfp_asinf 0x0800e3cd Thumb Code 258 asinf.o(i.__hardfp_asinf) - __hardfp_atan 0x0800e4f9 Thumb Code 622 atan.o(i.__hardfp_atan) - __hardfp_atan2 0x0800e7d1 Thumb Code 448 atan2.o(i.__hardfp_atan2) - __hardfp_atan2f 0x0800e9d1 Thumb Code 594 atan2f.o(i.__hardfp_atan2f) - __hardfp_tanf 0x0800ec7d Thumb Code 322 tanf.o(i.__hardfp_tanf) - __kernel_poly 0x0800edf9 Thumb Code 248 poly.o(i.__kernel_poly) - __mathlib_dbl_infnan 0x0800eef1 Thumb Code 20 dunder.o(i.__mathlib_dbl_infnan) - __mathlib_dbl_infnan2 0x0800ef05 Thumb Code 20 dunder.o(i.__mathlib_dbl_infnan2) - __mathlib_dbl_underflow 0x0800ef19 Thumb Code 24 dunder.o(i.__mathlib_dbl_underflow) - __mathlib_flt_infnan 0x0800ef39 Thumb Code 6 funder.o(i.__mathlib_flt_infnan) - __mathlib_flt_infnan2 0x0800ef3f Thumb Code 6 funder.o(i.__mathlib_flt_infnan2) - __mathlib_flt_invalid 0x0800ef45 Thumb Code 10 funder.o(i.__mathlib_flt_invalid) - __mathlib_flt_underflow 0x0800ef55 Thumb Code 10 funder.o(i.__mathlib_flt_underflow) - __mathlib_rredf2 0x0800ef65 Thumb Code 316 rredf.o(i.__mathlib_rredf2) - _is_digit 0x0800f0b9 Thumb Code 14 __printf_wp.o(i._is_digit) - atan 0x0800f0c7 Thumb Code 16 atan.o(i.atan) - fabs 0x0800f0d7 Thumb Code 24 fabs.o(i.fabs) - sqrtf 0x0800f0ef Thumb Code 62 sqrtf.o(i.sqrtf) - _get_lc_numeric 0x0800f12d Thumb Code 44 lc_numeric_c.o(locale$$code) - __aeabi_dneg 0x0800f159 Thumb Code 0 basic.o(x$fpl$basic) - _dneg 0x0800f159 Thumb Code 6 basic.o(x$fpl$basic) - __aeabi_fneg 0x0800f15f Thumb Code 0 basic.o(x$fpl$basic) - _fneg 0x0800f15f Thumb Code 6 basic.o(x$fpl$basic) - _dabs 0x0800f165 Thumb Code 6 basic.o(x$fpl$basic) - _fabs 0x0800f16b Thumb Code 6 basic.o(x$fpl$basic) - __aeabi_d2f 0x0800f171 Thumb Code 0 d2f.o(x$fpl$d2f) - _d2f 0x0800f171 Thumb Code 98 d2f.o(x$fpl$d2f) - __aeabi_dadd 0x0800f1d5 Thumb Code 0 daddsub_clz.o(x$fpl$dadd) - _dadd 0x0800f1d5 Thumb Code 332 daddsub_clz.o(x$fpl$dadd) - __fpl_dcmp_Inf 0x0800f325 Thumb Code 24 dcmpi.o(x$fpl$dcmpinf) - __aeabi_ddiv 0x0800f33d Thumb Code 0 ddiv.o(x$fpl$ddiv) - _ddiv 0x0800f33d Thumb Code 556 ddiv.o(x$fpl$ddiv) - __aeabi_cdcmpeq 0x0800f5f1 Thumb Code 0 deqf.o(x$fpl$deqf) - _dcmpeq 0x0800f5f1 Thumb Code 120 deqf.o(x$fpl$deqf) - __aeabi_d2uiz 0x0800f669 Thumb Code 0 dfixu.o(x$fpl$dfixu) - _dfixu 0x0800f669 Thumb Code 90 dfixu.o(x$fpl$dfixu) - __aeabi_ui2d 0x0800f6c3 Thumb Code 0 dflt_clz.o(x$fpl$dfltu) - _dfltu 0x0800f6c3 Thumb Code 38 dflt_clz.o(x$fpl$dfltu) - __aeabi_cdcmpge 0x0800f6e9 Thumb Code 0 dgeqf.o(x$fpl$dgeqf) - _dcmpge 0x0800f6e9 Thumb Code 120 dgeqf.o(x$fpl$dgeqf) - __aeabi_cdcmple 0x0800f761 Thumb Code 0 dleqf.o(x$fpl$dleqf) - _dcmple 0x0800f761 Thumb Code 120 dleqf.o(x$fpl$dleqf) - __fpl_dcmple_InfNaN 0x0800f7c3 Thumb Code 0 dleqf.o(x$fpl$dleqf) - __aeabi_dmul 0x0800f7d9 Thumb Code 0 dmul.o(x$fpl$dmul) - _dmul 0x0800f7d9 Thumb Code 332 dmul.o(x$fpl$dmul) - __fpl_dnaninf 0x0800f92d Thumb Code 156 dnaninf.o(x$fpl$dnaninf) - __fpl_dretinf 0x0800f9c9 Thumb Code 12 dretinf.o(x$fpl$dretinf) - __aeabi_drsub 0x0800f9d5 Thumb Code 0 daddsub_clz.o(x$fpl$drsb) - _drsb 0x0800f9d5 Thumb Code 22 daddsub_clz.o(x$fpl$drsb) - __aeabi_dsub 0x0800f9ed Thumb Code 0 daddsub_clz.o(x$fpl$dsub) - _dsub 0x0800f9ed Thumb Code 472 daddsub_clz.o(x$fpl$dsub) - __aeabi_f2d 0x0800fbc9 Thumb Code 0 f2d.o(x$fpl$f2d) - _f2d 0x0800fbc9 Thumb Code 86 f2d.o(x$fpl$f2d) - __aeabi_dcmpeq 0x0800fc1f Thumb Code 0 dcmp.o(x$fpl$fcmp) - _deq 0x0800fc1f Thumb Code 14 dcmp.o(x$fpl$fcmp) - _dneq 0x0800fc2d Thumb Code 14 dcmp.o(x$fpl$fcmp) - __aeabi_dcmpgt 0x0800fc3b Thumb Code 0 dcmp.o(x$fpl$fcmp) - _dgr 0x0800fc3b Thumb Code 14 dcmp.o(x$fpl$fcmp) - __aeabi_dcmpge 0x0800fc49 Thumb Code 0 dcmp.o(x$fpl$fcmp) - _dgeq 0x0800fc49 Thumb Code 14 dcmp.o(x$fpl$fcmp) - __aeabi_dcmple 0x0800fc57 Thumb Code 0 dcmp.o(x$fpl$fcmp) - _dleq 0x0800fc57 Thumb Code 14 dcmp.o(x$fpl$fcmp) - __aeabi_dcmplt 0x0800fc65 Thumb Code 0 dcmp.o(x$fpl$fcmp) - _dls 0x0800fc65 Thumb Code 14 dcmp.o(x$fpl$fcmp) - __aeabi_ul2f 0x0800fc73 Thumb Code 0 ffltll_clz.o(x$fpl$ffltll) - _ll_uto_f 0x0800fc73 Thumb Code 6 ffltll_clz.o(x$fpl$ffltll) - __aeabi_l2f 0x0800fc79 Thumb Code 0 ffltll_clz.o(x$fpl$ffltll) - _ll_sto_f 0x0800fc79 Thumb Code 90 ffltll_clz.o(x$fpl$ffltll) - __fpl_fnaninf 0x0800fcd3 Thumb Code 140 fnaninf.o(x$fpl$fnaninf) - _fp_init 0x0800fd5f Thumb Code 26 fpinit.o(x$fpl$fpinit) - __fplib_config_fpu_vfp 0x0800fd77 Thumb Code 0 fpinit.o(x$fpl$fpinit) - __fplib_config_pureend_doubles 0x0800fd77 Thumb Code 0 fpinit.o(x$fpl$fpinit) - __fpl_fretinf 0x0800fd79 Thumb Code 10 fretinf.o(x$fpl$fretinf) - _printf_fp_dec 0x0800fd83 Thumb Code 4 printf1.o(x$fpl$printf1) - __I$use$fp 0x0800fd86 Number 0 usenofp.o(x$fpl$usenofp) - __mathlib_zero 0x0800fe20 Data 8 qnan.o(.constdata) - AHBPrescTable 0x0800fedc Data 16 system_stm32f4xx.o(.rodata.AHBPrescTable) - APBPrescTable 0x0800feec Data 8 system_stm32f4xx.o(.rodata.APBPrescTable) - attr_ET16s 0x0800ff6c Data 36 user_task.o(.rodata.attr_ET16s) - attr_ai 0x0800ff90 Data 36 user_task.o(.rodata.attr_ai) - attr_atti_esti 0x0800ffb4 Data 36 user_task.o(.rodata.attr_atti_esti) - attr_chassis_ctrl 0x0800ffd8 Data 36 user_task.o(.rodata.attr_chassis_ctrl) - attr_cmd 0x0800fffc Data 36 user_task.o(.rodata.attr_cmd) - attr_dr16 0x08010020 Data 36 user_task.o(.rodata.attr_dr16) - attr_gimbal_ctrl 0x08010044 Data 36 user_task.o(.rodata.attr_gimbal_ctrl) - attr_init 0x08010068 Data 36 user_task.o(.rodata.attr_init) - attr_shoot_ctrl 0x0801008c Data 36 user_task.o(.rodata.attr_shoot_ctrl) - attr_step_motor 0x080100b0 Data 36 user_task.o(.rodata.attr_step_motor) - attr_vofa 0x080100d4 Data 36 user_task.o(.rodata.attr_vofa) - defaultTask_attributes 0x08010108 Data 36 freertos.o(.rodata.defaultTask_attributes) - Region$$Table$$Base 0x08010264 Number 0 anon$$obj.o(Region$$Table) - Region$$Table$$Limit 0x080102a4 Number 0 anon$$obj.o(Region$$Table) - StepMotor_param 0x20000000 Data 16 step_motor_1.o(.data.StepMotor_param) - uwTickFreq 0x20000015 Data 1 stm32f4xx_hal.o(.data.uwTickFreq) - Key_A 0x200000cc Data 1 step_motor_1.o(.bss.Key_A) - bmi088 0x200000f8 Data 48 atti_esti.o(.bss.bmi088) - cbuf 0x20000130 Data 25 et16s.o(.bss.cbuf) - cmd_for_gimbal 0x2000014c Data 4 cmd.o(.bss.cmd_for_gimbal) - defaultTaskHandle 0x20000150 Data 4 freertos.o(.bss.defaultTaskHandle) - et16s 0x20000154 Data 77 et16s_1.o(.bss.et16s) - eulr_to_send 0x200001a4 Data 12 atti_esti.o(.bss.eulr_to_send) - g_adapters 0x200001b0 Data 16 cmd_adapter.o(.bss.g_adapters) - gimbal_cmd 0x200001c0 Data 20 gimbal_ctrl.o(.bss.gimbal_cmd) - hcan1 0x200001d4 Data 40 can.o(.bss.hcan1) - hdma_spi1_rx 0x200001fc Data 96 spi.o(.bss.hdma_spi1_rx) - hdma_usart3_rx 0x2000025c Data 96 usart.o(.bss.hdma_usart3_rx) - hdma_usart6_tx 0x200002bc Data 96 usart.o(.bss.hdma_usart6_tx) - hi2c1 0x2000031c Data 84 i2c.o(.bss.hi2c1) - hspi1 0x20000370 Data 88 spi.o(.bss.hspi1) - htim10 0x200003c8 Data 72 tim.o(.bss.htim10) - huart2 0x20000410 Data 72 usart.o(.bss.huart2) - huart6 0x20000458 Data 72 usart.o(.bss.huart6) - imu_temp_ctrl_pid 0x200004a0 Data 60 atti_esti.o(.bss.imu_temp_ctrl_pid) - pxCurrentTCB 0x200005d4 Data 4 tasks.o(.bss.pxCurrentTCB) - shoot_cmd 0x20000a48 Data 3 shoot_ctrl.o(.bss.shoot_cmd) - task_runtime 0x20000a4c Data 224 user_task.o(.bss.task_runtime) - uwTick 0x2001a4cc Data 4 stm32f4xx_hal.o(.bss.uwTick) - SystemCoreClock 0x2001c000 Data 4 system_stm32f4xx.o(.data.SystemCoreClock) - cali_bmi088 0x2001c004 Data 12 atti_esti.o(.data.cali_bmi088) - robot_config 0x2001c028 Data 1080 config.o(.data.robot_config) - sourceHandlers 0x2001c460 Data 64 cmd_1.o(.data.sourceHandlers) - uwTickPrio 0x2001c4a0 Data 4 stm32f4xx_hal.o(.data.uwTickPrio) - __libspace_start 0x2001c4a8 Data 96 libspace.o(.bss) - __temporary_stack_top$libspace 0x2001c508 Data 0 libspace.o(.bss) - channel 0x2001c5bc Data 16 vofa_1.o(.bss.channel) - chassis 0x2001c5d0 Data 2232 chassis_ctrl.o(.bss.chassis) - cmd 0x2001ce88 Data 196 cmd.o(.bss.cmd) - cmd_chassis 0x2001cf4c Data 32 chassis_ctrl.o(.bss.cmd_chassis) - cmd_et16s 0x2001cf6c Data 77 cmd.o(.bss.cmd_et16s) - cmd_for_chassis 0x2001cfbc Data 4 cmd.o(.bss.cmd_for_chassis) - cmd_for_shoot 0x2001cfc0 Data 4 cmd.o(.bss.cmd_for_shoot) - dr16 0x2001cfc8 Data 88 dr16_1.o(.bss.dr16) - gimbal 0x2001d020 Data 760 gimbal_ctrl.o(.bss.gimbal) - gimbal_ahrs 0x2001d318 Data 20 atti_esti.o(.bss.gimbal_ahrs) - gimbal_imu 0x2001d32c Data 52 gimbal_ctrl.o(.bss.gimbal_imu) - gimbal_to_send 0x2001d360 Data 52 atti_esti.o(.bss.gimbal_to_send) - hcan2 0x2001d394 Data 40 can.o(.bss.hcan2) - hdma_spi1_tx 0x2001d3bc Data 96 spi.o(.bss.hdma_spi1_tx) - hdma_usart6_rx 0x2001d41c Data 96 usart.o(.bss.hdma_usart6_rx) - hi2c2 0x2001d47c Data 84 i2c.o(.bss.hi2c2) - htim8 0x2001d4d0 Data 72 tim.o(.bss.htim8) - huart1 0x2001d518 Data 72 usart.o(.bss.huart1) - huart3 0x2001d560 Data 72 usart.o(.bss.huart3) - magn 0x2001d5b0 Data 12 atti_esti.o(.bss.magn) - shoot 0x2001d5c8 Data 1712 shoot_ctrl.o(.bss.shoot) - xQueueRegistry 0x2001e744 Data 64 queue.o(.bss.xQueueRegistry) + __rt_lib_init_lc_common 0x0800027f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000F) + __rt_lib_init_rand_1 0x0800027f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000E) + __rt_lib_init_lc_collate_1 0x08000285 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011) + __rt_lib_init_lc_ctype_1 0x08000285 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013) + __rt_lib_init_lc_monetary_1 0x08000285 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015) + __rt_lib_init_lc_numeric_2 0x08000285 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000016) + __rt_lib_init_alloca_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E) + __rt_lib_init_argv_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C) + __rt_lib_init_atexit_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B) + __rt_lib_init_clock_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021) + __rt_lib_init_cpp_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000032) + __rt_lib_init_exceptions_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030) + __rt_lib_init_fp_trap_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F) + __rt_lib_init_getenv_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023) + __rt_lib_init_lc_numeric_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017) + __rt_lib_init_lc_time_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019) + __rt_lib_init_return 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000033) + __rt_lib_init_signal_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D) + __rt_lib_init_stdio_1 0x0800028f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000025) + __rt_lib_shutdown 0x08000291 Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000) + __rt_lib_shutdown_cpp_1 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) + __rt_lib_shutdown_fp_trap_1 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) + __rt_lib_shutdown_heap_1 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) + __rt_lib_shutdown_return 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) + __rt_lib_shutdown_signal_1 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) + __rt_lib_shutdown_stdio_1 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) + __rt_lib_shutdown_user_alloc_1 0x08000293 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) + __rt_entry 0x08000295 Thumb Code 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000) + __rt_entry_presh_1 0x08000295 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002) + __rt_entry_sh 0x08000295 Thumb Code 0 __rtentry4.o(.ARM.Collect$$rtentry$$00000004) + __rt_entry_li 0x0800029b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) + __rt_entry_postsh_1 0x0800029b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009) + __rt_entry_main 0x0800029f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) + __rt_entry_postli_1 0x0800029f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) + __rt_exit 0x080002a7 Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000) + __rt_exit_ls 0x080002a9 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003) + __rt_exit_prels_1 0x080002a9 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002) + __rt_exit_exit 0x080002ad Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004) + Reset_Handler 0x080002b5 Thumb Code 8 startup_stm32f407xx.o(.text) + ADC_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + CAN1_SCE_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + CAN2_SCE_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DCMI_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream0_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream2_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream3_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream4_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream5_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream6_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA1_Stream7_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA2_Stream0_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA2_Stream4_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA2_Stream5_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + DMA2_Stream7_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + ETH_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + ETH_WKUP_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + EXTI15_10_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + EXTI1_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + EXTI2_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + FLASH_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + FMC_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + FPU_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + HASH_RNG_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + I2C1_ER_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + I2C1_EV_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + I2C2_ER_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + I2C2_EV_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + I2C3_ER_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + I2C3_EV_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + OTG_FS_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + OTG_FS_WKUP_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + OTG_HS_EP1_IN_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + OTG_HS_EP1_OUT_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + OTG_HS_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + OTG_HS_WKUP_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + PVD_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + RCC_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + RTC_Alarm_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + RTC_WKUP_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + SDIO_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + SPI1_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + SPI2_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + SPI3_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TAMP_STAMP_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM1_CC_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM1_TRG_COM_TIM11_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM1_UP_TIM10_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM2_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM3_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM4_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM5_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM6_DAC_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM7_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM8_BRK_TIM12_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM8_CC_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM8_TRG_COM_TIM14_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + TIM8_UP_TIM13_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + UART4_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + UART5_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + USART2_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + WWDG_IRQHandler 0x080002cf Thumb Code 0 startup_stm32f407xx.o(.text) + __user_initial_stackheap 0x080002d1 Thumb Code 0 startup_stm32f407xx.o(.text) + __aeabi_uldivmod 0x080002f5 Thumb Code 0 lludivv7m.o(.text) + _ll_udiv 0x080002f5 Thumb Code 240 lludivv7m.o(.text) + __2sprintf 0x080003e5 Thumb Code 38 __2sprintf.o(.text) + __2snprintf 0x08000411 Thumb Code 50 __2snprintf.o(.text) + _printf_str 0x08000449 Thumb Code 82 _printf_str.o(.text) + _printf_int_dec 0x0800049d Thumb Code 104 _printf_dec.o(.text) + __printf 0x08000515 Thumb Code 270 __printf_wp.o(.text) + srand 0x08000625 Thumb Code 42 rand.o(.text) + _rand_init 0x0800064f Thumb Code 4 rand.o(.text) + strlen 0x08000661 Thumb Code 62 strlen.o(.text) + __aeabi_memcpy 0x0800069f Thumb Code 0 rt_memcpy_v6.o(.text) + __rt_memcpy 0x0800069f Thumb Code 138 rt_memcpy_v6.o(.text) + _memcpy_lastbytes 0x08000705 Thumb Code 0 rt_memcpy_v6.o(.text) + __aeabi_memcpy4 0x08000729 Thumb Code 0 rt_memcpy_w.o(.text) + __aeabi_memcpy8 0x08000729 Thumb Code 0 rt_memcpy_w.o(.text) + __rt_memcpy_w 0x08000729 Thumb Code 100 rt_memcpy_w.o(.text) + _memcpy_lastbytes_aligned 0x08000771 Thumb Code 0 rt_memcpy_w.o(.text) + __aeabi_memset4 0x0800078d Thumb Code 16 aeabi_memset4.o(.text) + __aeabi_memset8 0x0800078d Thumb Code 0 aeabi_memset4.o(.text) + __aeabi_memclr4 0x0800079d Thumb Code 0 rt_memclr_w.o(.text) + __aeabi_memclr8 0x0800079d Thumb Code 0 rt_memclr_w.o(.text) + __rt_memclr_w 0x0800079d Thumb Code 0 rt_memclr_w.o(.text) + _memset_w 0x080007a1 Thumb Code 74 rt_memclr_w.o(.text) + __use_two_region_memory 0x080007eb Thumb Code 2 heapauxi.o(.text) + __rt_heap_escrow$2region 0x080007ed Thumb Code 2 heapauxi.o(.text) + __rt_heap_expand$2region 0x080007ef Thumb Code 2 heapauxi.o(.text) + __read_errno 0x080007f1 Thumb Code 10 _rserrno.o(.text) + __set_errno 0x080007fb Thumb Code 12 _rserrno.o(.text) + _printf_int_common 0x08000807 Thumb Code 178 _printf_intcommon.o(.text) + _printf_fp_dec_real 0x08000a69 Thumb Code 620 _printf_fp_dec.o(.text) + _printf_char_common 0x08000cdf Thumb Code 32 _printf_char_common.o(.text) + _sputc 0x08000d05 Thumb Code 10 _sputc.o(.text) + _snputc 0x08000d0f Thumb Code 16 _snputc.o(.text) + _printf_cs_common 0x08000d1f Thumb Code 20 _printf_char.o(.text) + _printf_char 0x08000d33 Thumb Code 16 _printf_char.o(.text) + _printf_string 0x08000d43 Thumb Code 8 _printf_char.o(.text) + __rt_locale 0x08000d4d Thumb Code 8 rt_locale_intlibspace.o(.text) + __aeabi_errno_addr 0x08000d55 Thumb Code 8 rt_errno_addr_intlibspace.o(.text) + __errno$intlibspace 0x08000d55 Thumb Code 0 rt_errno_addr_intlibspace.o(.text) + __rt_errno_addr$intlibspace 0x08000d55 Thumb Code 0 rt_errno_addr_intlibspace.o(.text) + _ll_udiv10 0x08000d5d Thumb Code 138 lludiv10.o(.text) + _printf_fp_infnan 0x08000de9 Thumb Code 112 _printf_fp_infnan.o(.text) + _btod_etento 0x08000e69 Thumb Code 224 bigflt0.o(.text) + __user_libspace 0x08000f4d Thumb Code 8 libspace.o(.text) + __user_perproc_libspace 0x08000f4d Thumb Code 0 libspace.o(.text) + __user_perthread_libspace 0x08000f4d Thumb Code 0 libspace.o(.text) + __user_setup_stackheap 0x08000f55 Thumb Code 74 sys_stackheap_outer.o(.text) + exit 0x08000f9f Thumb Code 18 exit.o(.text) + strcmp 0x08000fb1 Thumb Code 124 strcmpv7em.o(.text) + _sys_exit 0x0800102d Thumb Code 8 sys_exit.o(.text) + __I$use$semihosting 0x08001039 Thumb Code 0 use_no_semi.o(.text) + __use_no_semihosting_swi 0x08001039 Thumb Code 2 use_no_semi.o(.text) + __semihosting_library_function 0x0800103b Thumb Code 0 indicate_semi.o(.text) + AHRS_GetEulr 0x0800103d Thumb Code 220 ahrs.o(.text.AHRS_GetEulr) + AHRS_Init 0x08001119 Thumb Code 388 ahrs.o(.text.AHRS_Init) + AHRS_ResetEulr 0x0800129d Thumb Code 10 ahrs.o(.text.AHRS_ResetEulr) + AHRS_Update 0x080012a9 Thumb Code 1422 ahrs.o(.text.AHRS_Update) + AbsClip 0x08001b29 Thumb Code 34 user_math.o(.text.AbsClip) + BMI088_AcclStartDmaRecv 0x08001b61 Thumb Code 24 bmi088.o(.text.BMI088_AcclStartDmaRecv) + BMI088_AcclWaitDmaCplt 0x08001b79 Thumb Code 16 bmi088.o(.text.BMI088_AcclWaitDmaCplt) + BMI088_GetUpdateFreq 0x08001b89 Thumb Code 12 bmi088.o(.text.BMI088_GetUpdateFreq) + BMI088_GyroStartDmaRecv 0x08001ba9 Thumb Code 26 bmi088.o(.text.BMI088_GyroStartDmaRecv) + BMI088_GyroWaitDmaCplt 0x08001bc5 Thumb Code 16 bmi088.o(.text.BMI088_GyroWaitDmaCplt) + BMI088_Init 0x08001bd5 Thumb Code 322 bmi088.o(.text.BMI088_Init) + BMI088_ParseAccl 0x08001d19 Thumb Code 148 bmi088.o(.text.BMI088_ParseAccl) + BMI088_ParseGyro 0x08001dad Thumb Code 132 bmi088.o(.text.BMI088_ParseGyro) + BMI088_WaitNew 0x08001e71 Thumb Code 16 bmi088.o(.text.BMI088_WaitNew) + BSP_CAN_GetHandle 0x08002069 Thumb Code 38 can_1.o(.text.BSP_CAN_GetHandle) + BSP_CAN_GetMessage 0x08002091 Thumb Code 128 can_1.o(.text.BSP_CAN_GetMessage) + BSP_CAN_Init 0x08002111 Thumb Code 308 can_1.o(.text.BSP_CAN_Init) + BSP_CAN_ParseId 0x08002245 Thumb Code 20 can_1.o(.text.BSP_CAN_ParseId) + BSP_CAN_RegisterCallback 0x08002259 Thumb Code 68 can_1.o(.text.BSP_CAN_RegisterCallback) + BSP_CAN_RegisterId 0x0800229d Thumb Code 30 can_1.o(.text.BSP_CAN_RegisterId) + BSP_CAN_Transmit 0x08002445 Thumb Code 226 can_1.o(.text.BSP_CAN_Transmit) + BSP_CAN_TransmitStdDataFrame 0x08002529 Thumb Code 40 can_1.o(.text.BSP_CAN_TransmitStdDataFrame) + BSP_Free 0x080026e9 Thumb Code 8 mm.o(.text.BSP_Free) + BSP_GPIO_DisableIRQ 0x080026f1 Thumb Code 50 gpio_1.o(.text.BSP_GPIO_DisableIRQ) + BSP_GPIO_EnableIRQ 0x08002725 Thumb Code 50 gpio_1.o(.text.BSP_GPIO_EnableIRQ) + BSP_GPIO_ReadPin 0x08002759 Thumb Code 44 gpio_1.o(.text.BSP_GPIO_ReadPin) + BSP_GPIO_RegisterCallback 0x08002785 Thumb Code 74 gpio_1.o(.text.BSP_GPIO_RegisterCallback) + BSP_GPIO_WritePin 0x080027d1 Thumb Code 48 gpio_1.o(.text.BSP_GPIO_WritePin) + BSP_Malloc 0x08002801 Thumb Code 8 mm.o(.text.BSP_Malloc) + BSP_PWM_SetComp 0x08002809 Thumb Code 96 pwm.o(.text.BSP_PWM_SetComp) + BSP_PWM_Start 0x08002869 Thumb Code 44 pwm.o(.text.BSP_PWM_Start) + BSP_SPI_GetHandle 0x08002895 Thumb Code 18 spi_1.o(.text.BSP_SPI_GetHandle) + BSP_SPI_Receive 0x080028a9 Thumb Code 52 spi_1.o(.text.BSP_SPI_Receive) + BSP_SPI_RegisterCallback 0x080028dd Thumb Code 30 spi_1.o(.text.BSP_SPI_RegisterCallback) + BSP_SPI_Transmit 0x080028fd Thumb Code 52 spi_1.o(.text.BSP_SPI_Transmit) + BSP_TIME_Delay 0x08002931 Thumb Code 88 time.o(.text.BSP_TIME_Delay_ms) + BSP_TIME_Delay_ms 0x08002931 Thumb Code 88 time.o(.text.BSP_TIME_Delay_ms) + BSP_TIME_Get 0x08002989 Thumb Code 80 time.o(.text.BSP_TIME_Get_us) + BSP_TIME_Get_us 0x08002989 Thumb Code 80 time.o(.text.BSP_TIME_Get_us) + BSP_UART_GetHandle 0x080029d9 Thumb Code 16 uart.o(.text.BSP_UART_GetHandle) + BSP_UART_IRQHandler 0x080029f9 Thumb Code 58 uart.o(.text.BSP_UART_IRQHandler) + BSP_UART_RegisterCallback 0x08002a35 Thumb Code 50 uart.o(.text.BSP_UART_RegisterCallback) + BSP_UART_Transmit 0x08002a69 Thumb Code 64 uart.o(.text.BSP_UART_Transmit) + BusFault_Handler 0x08002aa9 Thumb Code 2 stm32f4xx_it.o(.text.BusFault_Handler) + CAN1_RX0_IRQHandler 0x08002aad Thumb Code 16 stm32f4xx_it.o(.text.CAN1_RX0_IRQHandler) + CAN1_RX1_IRQHandler 0x08002abd Thumb Code 16 stm32f4xx_it.o(.text.CAN1_RX1_IRQHandler) + CAN1_TX_IRQHandler 0x08002acd Thumb Code 16 stm32f4xx_it.o(.text.CAN1_TX_IRQHandler) + CAN2_RX0_IRQHandler 0x08002add Thumb Code 16 stm32f4xx_it.o(.text.CAN2_RX0_IRQHandler) + CAN2_RX1_IRQHandler 0x08002aed Thumb Code 16 stm32f4xx_it.o(.text.CAN2_RX1_IRQHandler) + CAN2_TX_IRQHandler 0x08002afd Thumb Code 16 stm32f4xx_it.o(.text.CAN2_TX_IRQHandler) + CMD_Adapter_GetInput 0x08002b31 Thumb Code 52 cmd_adapter.o(.text.CMD_Adapter_GetInput) + CMD_Adapter_InitAll 0x08002b65 Thumb Code 58 cmd_adapter.o(.text.CMD_Adapter_InitAll) + CMD_Adapter_Register 0x08002ba1 Thumb Code 32 cmd_adapter.o(.text.CMD_Adapter_Register) + CMD_Arbitrate 0x08002bc1 Thumb Code 96 cmd_1.o(.text.CMD_Arbitrate) + CMD_Behavior_Handle_ACCELERATE 0x08002c25 Thumb Code 36 cmd_behavior.o(.text.CMD_Behavior_Handle_ACCELERATE) + CMD_Behavior_Handle_AUTOAIM 0x08002c49 Thumb Code 4 cmd_behavior.o(.text.CMD_Behavior_Handle_AUTOAIM) + CMD_Behavior_Handle_BACK 0x08002c4d Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_BACK) + CMD_Behavior_Handle_CHECKSOURCERCPC 0x08002c65 Thumb Code 36 cmd_behavior.o(.text.CMD_Behavior_Handle_CHECKSOURCERCPC) + CMD_Behavior_Handle_DECELERATE 0x08002c89 Thumb Code 36 cmd_behavior.o(.text.CMD_Behavior_Handle_DECELERATE) + CMD_Behavior_Handle_FIRE 0x08002cad Thumb Code 12 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE) + CMD_Behavior_Handle_FIRE_MODE 0x08002cb9 Thumb Code 20 cmd_behavior.o(.text.CMD_Behavior_Handle_FIRE_MODE) + CMD_Behavior_Handle_FORE 0x08002ccd Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_FORE) + CMD_Behavior_Handle_LEFT 0x08002ce5 Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_LEFT) + CMD_Behavior_Handle_RIGHT 0x08002cfd Thumb Code 24 cmd_behavior.o(.text.CMD_Behavior_Handle_RIGHT) + CMD_Behavior_Handle_ROTOR 0x08002d15 Thumb Code 18 cmd_behavior.o(.text.CMD_Behavior_Handle_ROTOR) + CMD_Behavior_Init 0x08002d29 Thumb Code 4 cmd_behavior.o(.text.CMD_Behavior_Init) + CMD_Behavior_IsTriggered 0x08002d2d Thumb Code 204 cmd_behavior.o(.text.CMD_Behavior_IsTriggered) + CMD_Behavior_ProcessAll 0x08002df9 Thumb Code 82 cmd_behavior.o(.text.CMD_Behavior_ProcessAll) + CMD_ET16s_GetInput 0x08002e4d Thumb Code 244 cmd_adapter.o(.text.CMD_ET16s_GetInput) + CMD_ET16s_Init 0x08002f41 Thumb Code 8 cmd_adapter.o(.text.CMD_ET16s_Init) + CMD_ET16s_IsOnline 0x08002f49 Thumb Code 6 cmd_adapter.o(.text.CMD_ET16s_IsOnline) + CMD_GenerateCommands 0x08002f51 Thumb Code 152 cmd_1.o(.text.CMD_GenerateCommands) + CMD_Init 0x08002fe9 Thumb Code 40 cmd_1.o(.text.CMD_Init) + CMD_Update 0x080031c9 Thumb Code 28 cmd_1.o(.text.CMD_Update) + CMD_UpdateInput 0x080031e5 Thumb Code 104 cmd_1.o(.text.CMD_UpdateInput) + Chassis_Control 0x080032bd Thumb Code 568 chassis.o(.text.Chassis_Control) + Chassis_Setoutput 0x0800356d Thumb Code 106 chassis.o(.text.Chassis_Setoutput) + Chassis_speed_calculate 0x080035d9 Thumb Code 1520 chassis.o(.text.Chassis_speed_calculate) + Chassis_update 0x08003bc9 Thumb Code 420 chassis.o(.text.Chassis_update) + CircleAdd 0x08003d6d Thumb Code 58 user_math.o(.text.CircleAdd) + CircleError 0x08003da9 Thumb Code 60 user_math.o(.text.CircleError) + Clip 0x08003de5 Thumb Code 38 user_math.o(.text.Clip) + Config_GetRobotParam 0x08003e0d Thumb Code 10 config.o(.text.Config_GetRobotParam) + DMA1_Stream1_IRQHandler 0x08003e19 Thumb Code 16 stm32f4xx_it.o(.text.DMA1_Stream1_IRQHandler) + DMA2_Stream1_IRQHandler 0x08003e29 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream1_IRQHandler) + DMA2_Stream2_IRQHandler 0x08003e39 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream2_IRQHandler) + DMA2_Stream3_IRQHandler 0x08003e49 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream3_IRQHandler) + DMA2_Stream6_IRQHandler 0x08003e59 Thumb Code 16 stm32f4xx_it.o(.text.DMA2_Stream6_IRQHandler) + DR16_Init 0x08003f25 Thumb Code 70 dr16.o(.text.DR16_Init) + DebugMon_Handler 0x08003f81 Thumb Code 2 stm32f4xx_it.o(.text.DebugMon_Handler) + ET16S_ParseRC 0x08003f85 Thumb Code 146 et16s.o(.text.ET16S_ParseRC) + ET16s_HandleOffline 0x08004019 Thumb Code 54 et16s.o(.text.ET16s_HandleOffline) + ET16s_ParseRaw 0x08004051 Thumb Code 616 et16s.o(.text.ET16s_ParseRaw) + EXTI0_IRQHandler 0x080042b9 Thumb Code 10 stm32f4xx_it.o(.text.EXTI0_IRQHandler) + EXTI3_IRQHandler 0x080042c5 Thumb Code 10 stm32f4xx_it.o(.text.EXTI3_IRQHandler) + EXTI4_IRQHandler 0x080042d1 Thumb Code 10 stm32f4xx_it.o(.text.EXTI4_IRQHandler) + EXTI9_5_IRQHandler 0x080042dd Thumb Code 10 stm32f4xx_it.o(.text.EXTI9_5_IRQHandler) + Error_Handler 0x080042e9 Thumb Code 6 main.o(.text.Error_Handler) + Gimbal_Control 0x080042f1 Thumb Code 928 gimbal.o(.text.Gimbal_Control) + Gimbal_Control_mode 0x08004691 Thumb Code 88 gimbal.o(.text.Gimbal_Control_mode) + Gimbal_Init 0x0800478d Thumb Code 342 gimbal.o(.text.Gimbal_Init) + Gimbal_Output 0x080048e5 Thumb Code 284 gimbal.o(.text.Gimbal_Output) + Gimbal_UpdateFeedback 0x08004a89 Thumb Code 286 gimbal.o(.text.Gimbal_UpdateFeedback) + Gimbal_UpdateIMU 0x08004ba9 Thumb Code 78 gimbal.o(.text.Gimbal_UpdateIMU) + HAL_CAN_ActivateNotification 0x08004bf9 Thumb Code 38 stm32f4xx_hal_can.o(.text.HAL_CAN_ActivateNotification) + HAL_CAN_AddTxMessage 0x08004c21 Thumb Code 146 stm32f4xx_hal_can.o(.text.HAL_CAN_AddTxMessage) + HAL_CAN_ConfigFilter 0x08004cb5 Thumb Code 222 stm32f4xx_hal_can.o(.text.HAL_CAN_ConfigFilter) + HAL_CAN_ErrorCallback 0x08004d95 Thumb Code 36 can_1.o(.text.HAL_CAN_ErrorCallback) + HAL_CAN_GetRxFifoFillLevel 0x08004db9 Thumb Code 32 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxFifoFillLevel) + HAL_CAN_GetRxMessage 0x08004dd9 Thumb Code 292 stm32f4xx_hal_can.o(.text.HAL_CAN_GetRxMessage) + HAL_CAN_GetTxMailboxesFreeLevel 0x08004efd Thumb Code 40 stm32f4xx_hal_can.o(.text.HAL_CAN_GetTxMailboxesFreeLevel) + HAL_CAN_IRQHandler 0x08004f25 Thumb Code 570 stm32f4xx_hal_can.o(.text.HAL_CAN_IRQHandler) + HAL_CAN_Init 0x08005161 Thumb Code 244 stm32f4xx_hal_can.o(.text.HAL_CAN_Init) + HAL_CAN_MspInit 0x08005255 Thumb Code 328 can.o(.text.HAL_CAN_MspInit) + HAL_CAN_RxFifo0FullCallback 0x0800539d Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo0FullCallback) + HAL_CAN_RxFifo0MsgPendingCallback 0x080053c1 Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo0MsgPendingCallback) + HAL_CAN_RxFifo1FullCallback 0x080053e5 Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo1FullCallback) + HAL_CAN_RxFifo1MsgPendingCallback 0x08005409 Thumb Code 36 can_1.o(.text.HAL_CAN_RxFifo1MsgPendingCallback) + HAL_CAN_SleepCallback 0x0800542d Thumb Code 36 can_1.o(.text.HAL_CAN_SleepCallback) + HAL_CAN_Start 0x08005451 Thumb Code 90 stm32f4xx_hal_can.o(.text.HAL_CAN_Start) + HAL_CAN_TxMailbox0AbortCallback 0x080054ad Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox0AbortCallback) + HAL_CAN_TxMailbox0CompleteCallback 0x080054d1 Thumb Code 34 can_1.o(.text.HAL_CAN_TxMailbox0CompleteCallback) + HAL_CAN_TxMailbox1AbortCallback 0x080054f5 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox1AbortCallback) + HAL_CAN_TxMailbox1CompleteCallback 0x08005519 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox1CompleteCallback) + HAL_CAN_TxMailbox2AbortCallback 0x0800553d Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox2AbortCallback) + HAL_CAN_TxMailbox2CompleteCallback 0x08005561 Thumb Code 36 can_1.o(.text.HAL_CAN_TxMailbox2CompleteCallback) + HAL_CAN_WakeUpFromRxMsgCallback 0x08005585 Thumb Code 36 can_1.o(.text.HAL_CAN_WakeUpFromRxMsgCallback) + HAL_DMA_Abort 0x080055a9 Thumb Code 128 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort) + HAL_DMA_Abort_IT 0x08005629 Thumb Code 36 stm32f4xx_hal_dma.o(.text.HAL_DMA_Abort_IT) + HAL_DMA_IRQHandler 0x0800564d Thumb Code 396 stm32f4xx_hal_dma.o(.text.HAL_DMA_IRQHandler) + HAL_DMA_Init 0x080057d9 Thumb Code 206 stm32f4xx_hal_dma.o(.text.HAL_DMA_Init) + HAL_DMA_Start_IT 0x080058a9 Thumb Code 98 stm32f4xx_hal_dma.o(.text.HAL_DMA_Start_IT) + HAL_Delay 0x0800590d Thumb Code 40 stm32f4xx_hal.o(.text.HAL_Delay) + HAL_GPIO_EXTI_Callback 0x08005935 Thumb Code 44 gpio_1.o(.text.HAL_GPIO_EXTI_Callback) + HAL_GPIO_EXTI_IRQHandler 0x08005961 Thumb Code 26 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) + HAL_GPIO_Init 0x0800597d Thumb Code 410 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_Init) + HAL_GPIO_ReadPin 0x08005b19 Thumb Code 10 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) + HAL_GPIO_WritePin 0x08005b25 Thumb Code 10 stm32f4xx_hal_gpio.o(.text.HAL_GPIO_WritePin) + HAL_GetTick 0x08005b31 Thumb Code 12 stm32f4xx_hal.o(.text.HAL_GetTick) + HAL_I2C_Init 0x08005b3d Thumb Code 408 stm32f4xx_hal_i2c.o(.text.HAL_I2C_Init) + HAL_I2C_MspInit 0x08005cd5 Thumb Code 216 i2c.o(.text.HAL_I2C_MspInit) + HAL_IncTick 0x08005dad Thumb Code 26 stm32f4xx_hal.o(.text.HAL_IncTick) + HAL_Init 0x08005dc9 Thumb Code 54 stm32f4xx_hal.o(.text.HAL_Init) + HAL_InitTick 0x08005e01 Thumb Code 80 stm32f4xx_hal.o(.text.HAL_InitTick) + HAL_MspInit 0x08005e51 Thumb Code 70 stm32f4xx_hal_msp.o(.text.HAL_MspInit) + HAL_NVIC_DisableIRQ 0x08005e99 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) + HAL_NVIC_EnableIRQ 0x08005ea1 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) + HAL_NVIC_SetPriority 0x08005ea9 Thumb Code 30 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) + HAL_NVIC_SetPriorityGrouping 0x08005ec9 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) + HAL_RCC_ClockConfig 0x08005ed1 Thumb Code 352 stm32f4xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) + HAL_RCC_GetHCLKFreq 0x08006031 Thumb Code 12 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) + HAL_RCC_GetPCLK1Freq 0x0800603d Thumb Code 34 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) + HAL_RCC_GetPCLK2Freq 0x08006061 Thumb Code 34 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) + HAL_RCC_GetSysClockFreq 0x08006085 Thumb Code 104 stm32f4xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) + HAL_RCC_OscConfig 0x080060ed Thumb Code 840 stm32f4xx_hal_rcc.o(.text.HAL_RCC_OscConfig) + HAL_SPI_ErrorCallback 0x08006435 Thumb Code 34 spi_1.o(.text.HAL_SPI_ErrorCallback) + HAL_SPI_Init 0x08006459 Thumb Code 180 stm32f4xx_hal_spi.o(.text.HAL_SPI_Init) + HAL_SPI_MspInit 0x0800650d Thumb Code 302 spi.o(.text.HAL_SPI_MspInit) + HAL_SPI_Receive 0x0800663d Thumb Code 370 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive) + HAL_SPI_Receive_DMA 0x080067b1 Thumb Code 236 stm32f4xx_hal_spi.o(.text.HAL_SPI_Receive_DMA) + HAL_SPI_RxCpltCallback 0x0800689d Thumb Code 34 spi_1.o(.text.HAL_SPI_RxCpltCallback) + HAL_SPI_RxHalfCpltCallback 0x080068c1 Thumb Code 34 spi_1.o(.text.HAL_SPI_RxHalfCpltCallback) + HAL_SPI_Transmit 0x080068e5 Thumb Code 394 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit) + HAL_SPI_TransmitReceive 0x08006a71 Thumb Code 504 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive) + HAL_SPI_TransmitReceive_DMA 0x08006c69 Thumb Code 292 stm32f4xx_hal_spi.o(.text.HAL_SPI_TransmitReceive_DMA) + HAL_SPI_Transmit_DMA 0x08006d8d Thumb Code 204 stm32f4xx_hal_spi.o(.text.HAL_SPI_Transmit_DMA) + HAL_SPI_TxCpltCallback 0x08006e59 Thumb Code 32 spi_1.o(.text.HAL_SPI_TxCpltCallback) + HAL_SPI_TxHalfCpltCallback 0x08006e79 Thumb Code 34 spi_1.o(.text.HAL_SPI_TxHalfCpltCallback) + HAL_SPI_TxRxCpltCallback 0x08006e9d Thumb Code 34 spi_1.o(.text.HAL_SPI_TxRxCpltCallback) + HAL_SPI_TxRxHalfCpltCallback 0x08006ec1 Thumb Code 34 spi_1.o(.text.HAL_SPI_TxRxHalfCpltCallback) + HAL_SYSTICK_Config 0x08006ee5 Thumb Code 8 stm32f4xx_hal_cortex.o(.text.HAL_SYSTICK_Config) + HAL_TIMEx_BreakCallback 0x08006eed Thumb Code 2 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) + HAL_TIMEx_CommutCallback 0x08006ef1 Thumb Code 2 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) + HAL_TIMEx_ConfigBreakDeadTime 0x08006ef5 Thumb Code 76 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) + HAL_TIMEx_MasterConfigSynchronization 0x08006f41 Thumb Code 184 stm32f4xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) + HAL_TIM_Base_Init 0x08006ff9 Thumb Code 90 stm32f4xx_hal_tim.o(.text.HAL_TIM_Base_Init) + HAL_TIM_Base_MspInit 0x08007055 Thumb Code 180 tim.o(.text.HAL_TIM_Base_MspInit) + HAL_TIM_ConfigClockSource 0x08007109 Thumb Code 222 stm32f4xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) + HAL_TIM_IC_CaptureCallback 0x080071e9 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) + HAL_TIM_IRQHandler 0x080071ed Thumb Code 308 stm32f4xx_hal_tim.o(.text.HAL_TIM_IRQHandler) + HAL_TIM_MspPostInit 0x08007321 Thumb Code 164 tim.o(.text.HAL_TIM_MspPostInit) + HAL_TIM_OC_DelayElapsedCallback 0x080073c5 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) + HAL_TIM_PWM_ConfigChannel 0x080073c9 Thumb Code 152 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) + HAL_TIM_PWM_Init 0x08007461 Thumb Code 90 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Init) + HAL_TIM_PWM_MspInit 0x080074bd Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit) + HAL_TIM_PWM_PulseFinishedCallback 0x080074c1 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) + HAL_TIM_PWM_Start 0x080074c5 Thumb Code 290 stm32f4xx_hal_tim.o(.text.HAL_TIM_PWM_Start) + HAL_TIM_PeriodElapsedCallback 0x080075e9 Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback) + HAL_TIM_TriggerCallback 0x080075ed Thumb Code 2 stm32f4xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) + HAL_UARTEx_RxEventCallback 0x080075f1 Thumb Code 2 stm32f4xx_hal_uart.o(.text.HAL_UARTEx_RxEventCallback) + HAL_UART_ErrorCallback 0x080075f5 Thumb Code 38 uart.o(.text.HAL_UART_ErrorCallback) + HAL_UART_IRQHandler 0x0800761d Thumb Code 602 stm32f4xx_hal_uart.o(.text.HAL_UART_IRQHandler) + HAL_UART_Init 0x08007879 Thumb Code 96 stm32f4xx_hal_uart.o(.text.HAL_UART_Init) + HAL_UART_MspInit 0x080078d9 Thumb Code 730 usart.o(.text.HAL_UART_MspInit) + HAL_UART_Receive_DMA 0x08007bb5 Thumb Code 44 stm32f4xx_hal_uart.o(.text.HAL_UART_Receive_DMA) + HAL_UART_RxCpltCallback 0x08007be1 Thumb Code 38 uart.o(.text.HAL_UART_RxCpltCallback) + HAL_UART_RxHalfCpltCallback 0x08007c09 Thumb Code 38 uart.o(.text.HAL_UART_RxHalfCpltCallback) + HAL_UART_Transmit_DMA 0x08007c31 Thumb Code 140 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_DMA) + HAL_UART_Transmit_IT 0x08007cbd Thumb Code 56 stm32f4xx_hal_uart.o(.text.HAL_UART_Transmit_IT) + HAL_UART_TxCpltCallback 0x08007cf5 Thumb Code 38 uart.o(.text.HAL_UART_TxCpltCallback) + HAL_UART_TxHalfCpltCallback 0x08007d1d Thumb Code 36 uart.o(.text.HAL_UART_TxHalfCpltCallback) + HardFault_Handler 0x08007d41 Thumb Code 2 stm32f4xx_it.o(.text.HardFault_Handler) + InvSqrt 0x08007d45 Thumb Code 66 user_math.o(.text.InvSqrt) + Keymap 0x08007d89 Thumb Code 36 et16s.o(.text.Keymap) + LowPassFilter2p_Apply 0x08007dad Thumb Code 124 filter.o(.text.LowPassFilter2p_Apply) + LowPassFilter2p_Init 0x08007e29 Thumb Code 164 filter.o(.text.LowPassFilter2p_Init) + LowPassFilter2p_Reset 0x08007ecd Thumb Code 92 filter.o(.text.LowPassFilter2p_Reset) + MOTOR_DM_Enable 0x08007f65 Thumb Code 70 motor_dm.o(.text.MOTOR_DM_Enable) + MOTOR_DM_GetMotor 0x08007fc1 Thumb Code 88 motor_dm.o(.text.MOTOR_DM_GetMotor) + MOTOR_DM_MITCtrl 0x08008019 Thumb Code 46 motor_dm.o(.text.MOTOR_DM_MITCtrl) + MOTOR_DM_Register 0x08008141 Thumb Code 164 motor_dm.o(.text.MOTOR_DM_Register) + MOTOR_DM_Update 0x080082fd Thumb Code 160 motor_dm.o(.text.MOTOR_DM_Update) + MOTOR_RM_Ctrl 0x080083d9 Thumb Code 216 motor_rm.o(.text.MOTOR_RM_Ctrl) + MOTOR_RM_GetMotor 0x08008515 Thumb Code 80 motor_rm.o(.text.MOTOR_RM_GetMotor) + MOTOR_RM_Register 0x08008589 Thumb Code 166 motor_rm.o(.text.MOTOR_RM_Register) + MOTOR_RM_SetOutput 0x08008631 Thumb Code 158 motor_rm.o(.text.MOTOR_RM_SetOutput) + MOTOR_RM_Update 0x080086d1 Thumb Code 198 motor_rm.o(.text.MOTOR_RM_Update) + MX_CAN1_Init 0x08008799 Thumb Code 68 can.o(.text.MX_CAN1_Init) + MX_CAN2_Init 0x080087dd Thumb Code 68 can.o(.text.MX_CAN2_Init) + MX_DMA_Init 0x08008821 Thumb Code 138 dma.o(.text.MX_DMA_Init) + MX_FREERTOS_Init 0x080088ad Thumb Code 58 freertos.o(.text.MX_FREERTOS_Init) + MX_GPIO_Init 0x080088e9 Thumb Code 514 gpio.o(.text.MX_GPIO_Init) + MX_I2C1_Init 0x08008aed Thumb Code 62 i2c.o(.text.MX_I2C1_Init) + MX_I2C2_Init 0x08008b2d Thumb Code 62 i2c.o(.text.MX_I2C2_Init) + MX_SPI1_Init 0x08008b6d Thumb Code 78 spi.o(.text.MX_SPI1_Init) + MX_TIM10_Init 0x08008bbd Thumb Code 136 tim.o(.text.MX_TIM10_Init) + MX_TIM1_Init 0x08008c45 Thumb Code 268 tim.o(.text.MX_TIM1_Init) + MX_USART1_UART_Init 0x08008d51 Thumb Code 56 usart.o(.text.MX_USART1_UART_Init) + MX_USART2_UART_Init 0x08008d89 Thumb Code 56 usart.o(.text.MX_USART2_UART_Init) + MX_USART3_UART_Init 0x08008dc1 Thumb Code 68 usart.o(.text.MX_USART3_UART_Init) + MX_USART6_UART_Init 0x08008e05 Thumb Code 56 usart.o(.text.MX_USART6_UART_Init) + MemManage_Handler 0x08008e3d Thumb Code 2 stm32f4xx_it.o(.text.MemManage_Handler) + Motor_Step_Init 0x08008f9d Thumb Code 12 motor_step.o(.text.Motor_Step_Init) + NMI_Handler 0x08008fa9 Thumb Code 2 stm32f4xx_it.o(.text.NMI_Handler) + PID_Calc 0x08008fd9 Thumb Code 368 pid.o(.text.PID_Calc) + PID_Init 0x08009149 Thumb Code 144 pid.o(.text.PID_Init) + PID_Reset 0x080091d9 Thumb Code 44 pid.o(.text.PID_Reset) + PendSV_Handler 0x08009211 Thumb Code 100 port.o(.text.PendSV_Handler) + REMOTE_Init 0x08009275 Thumb Code 68 et16s.o(.text.REMOTE_Init) + REMOTE_StartDmaRecv 0x080092cd Thumb Code 32 et16s.o(.text.REMOTE_StartDmaRecv) + REMOTE_WaitDmaCplt 0x080092ed Thumb Code 22 et16s.o(.text.REMOTE_WaitDmaCplt) + SVC_Handler 0x08009691 Thumb Code 36 port.o(.text.SVC_Handler) + Shoot_Init 0x080096bd Thumb Code 326 shoot.o(.text.Shoot_Init) + Shoot_SetMode 0x08009805 Thumb Code 14 shoot.o(.text.Shoot_SetMode) + Shoot_UpdateFeedback 0x08009815 Thumb Code 500 shoot.o(.text.Shoot_UpdateFeedback) + StartDefaultTask 0x08009a09 Thumb Code 12 freertos.o(.text.StartDefaultTask) + SysTick_Handler 0x08009a45 Thumb Code 20 stm32f4xx_it.o(.text.SysTick_Handler) + SystemClock_Config 0x08009a59 Thumb Code 164 main.o(.text.SystemClock_Config) + SystemInit 0x08009afd Thumb Code 18 system_stm32f4xx.o(.text.SystemInit) + TIM1_BRK_TIM9_IRQHandler 0x08009b11 Thumb Code 16 stm32f4xx_it.o(.text.TIM1_BRK_TIM9_IRQHandler) + TIM_Base_SetConfig 0x08009b21 Thumb Code 300 stm32f4xx_hal_tim.o(.text.TIM_Base_SetConfig) + TIM_CCxChannelCmd 0x08009c4d Thumb Code 36 stm32f4xx_hal_tim.o(.text.TIM_CCxChannelCmd) + TIM_ETR_SetConfig 0x08009c71 Thumb Code 22 stm32f4xx_hal_tim.o(.text.TIM_ETR_SetConfig) + TIM_OC2_SetConfig 0x08009cfd Thumb Code 106 stm32f4xx_hal_tim.o(.text.TIM_OC2_SetConfig) + Task_ET16s 0x08009e69 Thumb Code 128 et16s_1.o(.text.Task_ET16s) + Task_Init 0x08009ee9 Thumb Code 364 init.o(.text.Task_Init) + Task_ai 0x0800a059 Thumb Code 64 ai_1.o(.text.Task_ai) + Task_atti_esti 0x0800a099 Thumb Code 376 atti_esti.o(.text.Task_atti_esti) + Task_chassis_ctrl 0x0800a211 Thumb Code 148 chassis_ctrl.o(.text.Task_chassis_ctrl) + Task_cmd 0x0800a2a9 Thumb Code 232 cmd.o(.text.Task_cmd) + Task_dr16 0x0800a391 Thumb Code 104 dr16_1.o(.text.Task_dr16) + Task_gimbal_ctrl 0x0800a3f9 Thumb Code 180 gimbal_ctrl.o(.text.Task_gimbal_ctrl) + Task_shoot_ctrl 0x0800a4b1 Thumb Code 132 shoot_ctrl.o(.text.Task_shoot_ctrl) + Task_step_motor 0x0800a539 Thumb Code 72 step_motor_1.o(.text.Task_step_motor) + Task_vofa 0x0800a581 Thumb Code 96 vofa_1.o(.text.Task_vofa) + UART_Start_Receive_DMA 0x0800a9a9 Thumb Code 170 stm32f4xx_hal_uart.o(.text.UART_Start_Receive_DMA) + USART1_IRQHandler 0x0800aaa9 Thumb Code 24 stm32f4xx_it.o(.text.USART1_IRQHandler) + USART3_IRQHandler 0x0800aac1 Thumb Code 24 stm32f4xx_it.o(.text.USART3_IRQHandler) + USART6_IRQHandler 0x0800aad9 Thumb Code 24 stm32f4xx_it.o(.text.USART6_IRQHandler) + UsageFault_Handler 0x0800aaf1 Thumb Code 2 stm32f4xx_it.o(.text.UsageFault_Handler) + VOFA_FireWater_Send 0x0800aaf5 Thumb Code 156 vofa.o(.text.VOFA_FireWater_Send) + VOFA_JustFloat_Send 0x0800ab9d Thumb Code 58 vofa.o(.text.VOFA_JustFloat_Send) + VOFA_RawData_Send 0x0800abd9 Thumb Code 24 vofa.o(.text.VOFA_RawData_Send) + VOFA_Send 0x0800abf1 Thumb Code 140 vofa.o(.text.VOFA_Send) + VOFA_init 0x0800aca1 Thumb Code 16 vofa.o(.text.VOFA_init) + chassis_init 0x0800ad8d Thumb Code 446 chassis.o(.text.chassis_init) + configureTimerForRunTimeStats 0x0800af4d Thumb Code 2 freertos.o(.text.configureTimerForRunTimeStats) + eTaskGetState 0x0800af69 Thumb Code 156 tasks.o(.text.eTaskGetState) + getRunTimeCounterValue 0x0800b031 Thumb Code 4 freertos.o(.text.getRunTimeCounterValue) + main 0x0800b035 Thumb Code 74 main.o(.text.main) + major_yaw_Control 0x0800b081 Thumb Code 32 gimbal.o(.text.major_yaw_Control) + map_fp32 0x0800b0a1 Thumb Code 26 calc_lib.o(.text.map_fp32) + motor_add_anagle 0x0800b0bd Thumb Code 104 chassis.o(.text.motor_add_anagle) + osDelay 0x0800b169 Thumb Code 32 cmsis_os2.o(.text.osDelay) + osDelayUntil 0x0800b189 Thumb Code 52 cmsis_os2.o(.text.osDelayUntil) + osKernelGetState 0x0800b1bd Thumb Code 38 cmsis_os2.o(.text.osKernelGetState) + osKernelGetTickCount 0x0800b1e5 Thumb Code 20 cmsis_os2.o(.text.osKernelGetTickCount) + osKernelGetTickFreq 0x0800b1f9 Thumb Code 6 cmsis_os2.o(.text.osKernelGetTickFreq) + osKernelInitialize 0x0800b201 Thumb Code 40 cmsis_os2.o(.text.osKernelInitialize) + osKernelLock 0x0800b229 Thumb Code 44 cmsis_os2.o(.text.osKernelLock) + osKernelStart 0x0800b255 Thumb Code 52 cmsis_os2.o(.text.osKernelStart) + osKernelUnlock 0x0800b289 Thumb Code 68 cmsis_os2.o(.text.osKernelUnlock) + osMessageQueueGet 0x0800b2cd Thumb Code 134 cmsis_os2.o(.text.osMessageQueueGet) + osMessageQueueNew 0x0800b355 Thumb Code 160 cmsis_os2.o(.text.osMessageQueueNew) + osMessageQueuePut 0x0800b3f5 Thumb Code 142 cmsis_os2.o(.text.osMessageQueuePut) + osMessageQueueReset 0x0800b485 Thumb Code 36 cmsis_os2.o(.text.osMessageQueueReset) + osMutexAcquire 0x0800b4a9 Thumb Code 82 cmsis_os2.o(.text.osMutexAcquire) + osMutexNew 0x0800b4fd Thumb Code 150 cmsis_os2.o(.text.osMutexNew) + osMutexRelease 0x0800b595 Thumb Code 62 cmsis_os2.o(.text.osMutexRelease) + osThreadFlagsSet 0x0800b5d5 Thumb Code 126 cmsis_os2.o(.text.osThreadFlagsSet) + osThreadFlagsWait 0x0800b655 Thumb Code 186 cmsis_os2.o(.text.osThreadFlagsWait) + osThreadGetId 0x0800b711 Thumb Code 8 cmsis_os2.o(.text.osThreadGetId) + osThreadNew 0x0800b719 Thumb Code 180 cmsis_os2.o(.text.osThreadNew) + osThreadTerminate 0x0800b7cd Thumb Code 52 cmsis_os2.o(.text.osThreadTerminate) + pvPortMalloc 0x0800c1a9 Thumb Code 330 heap_4.o(.text.pvPortMalloc) + pvTaskIncrementMutexHeldCount 0x0800c2f5 Thumb Code 24 tasks.o(.text.pvTaskIncrementMutexHeldCount) + pxPortInitialiseStack 0x0800c30d Thumb Code 40 port.o(.text.pxPortInitialiseStack) + uxListRemove 0x0800c361 Thumb Code 36 list.o(.text.uxListRemove) + vApplicationGetIdleTaskMemory 0x0800c385 Thumb Code 26 cmsis_os2.o(.text.vApplicationGetIdleTaskMemory) + vApplicationGetTimerTaskMemory 0x0800c3a1 Thumb Code 28 cmsis_os2.o(.text.vApplicationGetTimerTaskMemory) + vApplicationStackOverflowHook 0x0800c3bd Thumb Code 2 freertos.o(.text.vApplicationStackOverflowHook) + vListInitialise 0x0800c3c1 Thumb Code 22 list.o(.text.vListInitialise) + vListInitialiseItem 0x0800c3d9 Thumb Code 6 list.o(.text.vListInitialiseItem) + vListInsert 0x0800c3e1 Thumb Code 58 list.o(.text.vListInsert) + vListInsertEnd 0x0800c41d Thumb Code 28 list.o(.text.vListInsertEnd) + vPortEnterCritical 0x0800c44d Thumb Code 70 port.o(.text.vPortEnterCritical) + vPortExitCritical 0x0800c495 Thumb Code 46 port.o(.text.vPortExitCritical) + vPortFree 0x0800c4c5 Thumb Code 138 heap_4.o(.text.vPortFree) + vPortSetupTimerInterrupt 0x0800c551 Thumb Code 52 port.o(.text.vPortSetupTimerInterrupt) + vPortValidateInterruptPriority 0x0800c585 Thumb Code 98 port.o(.text.vPortValidateInterruptPriority) + vQueueAddToRegistry 0x0800c5e9 Thumb Code 40 queue.o(.text.vQueueAddToRegistry) + vQueueWaitForMessageRestricted 0x0800c611 Thumb Code 68 queue.o(.text.vQueueWaitForMessageRestricted) + vTaskDelay 0x0800c655 Thumb Code 84 tasks.o(.text.vTaskDelay) + vTaskDelayUntil 0x0800c6a9 Thumb Code 168 tasks.o(.text.vTaskDelayUntil) + vTaskDelete 0x0800c751 Thumb Code 194 tasks.o(.text.vTaskDelete) + vTaskInternalSetTimeOutState 0x0800c815 Thumb Code 26 tasks.o(.text.vTaskInternalSetTimeOutState) + vTaskMissedYield 0x0800c831 Thumb Code 14 tasks.o(.text.vTaskMissedYield) + vTaskPlaceOnEventList 0x0800c841 Thumb Code 50 tasks.o(.text.vTaskPlaceOnEventList) + vTaskPlaceOnEventListRestricted 0x0800c875 Thumb Code 62 tasks.o(.text.vTaskPlaceOnEventListRestricted) + vTaskPriorityDisinheritAfterTimeout 0x0800c8b5 Thumb Code 164 tasks.o(.text.vTaskPriorityDisinheritAfterTimeout) + vTaskStartScheduler 0x0800c959 Thumb Code 160 tasks.o(.text.vTaskStartScheduler) + vTaskSuspendAll 0x0800ca01 Thumb Code 16 tasks.o(.text.vTaskSuspendAll) + vTaskSwitchContext 0x0800ca11 Thumb Code 226 tasks.o(.text.vTaskSwitchContext) + xPortStartScheduler 0x0800caf5 Thumb Code 274 port.o(.text.xPortStartScheduler) + xPortSysTickHandler 0x0800cc09 Thumb Code 46 port.o(.text.xPortSysTickHandler) + xQueueCreateMutex 0x0800cc39 Thumb Code 22 queue.o(.text.xQueueCreateMutex) + xQueueCreateMutexStatic 0x0800cc51 Thumb Code 34 queue.o(.text.xQueueCreateMutexStatic) + xQueueGenericCreate 0x0800cc75 Thumb Code 70 queue.o(.text.xQueueGenericCreate) + xQueueGenericCreateStatic 0x0800ccbd Thumb Code 150 queue.o(.text.xQueueGenericCreateStatic) + xQueueGenericReset 0x0800cd55 Thumb Code 126 queue.o(.text.xQueueGenericReset) + xQueueGenericSend 0x0800cdd5 Thumb Code 418 queue.o(.text.xQueueGenericSend) + xQueueGenericSendFromISR 0x0800cf79 Thumb Code 206 queue.o(.text.xQueueGenericSendFromISR) + xQueueGiveMutexRecursive 0x0800d049 Thumb Code 66 queue.o(.text.xQueueGiveMutexRecursive) + xQueueReceive 0x0800d08d Thumb Code 388 queue.o(.text.xQueueReceive) + xQueueReceiveFromISR 0x0800d211 Thumb Code 170 queue.o(.text.xQueueReceiveFromISR) + xQueueSemaphoreTake 0x0800d2bd Thumb Code 454 queue.o(.text.xQueueSemaphoreTake) + xQueueTakeMutexRecursive 0x0800d485 Thumb Code 60 queue.o(.text.xQueueTakeMutexRecursive) + xTaskCheckForTimeOut 0x0800d4c1 Thumb Code 136 tasks.o(.text.xTaskCheckForTimeOut) + xTaskCreate 0x0800d549 Thumb Code 102 tasks.o(.text.xTaskCreate) + xTaskCreateStatic 0x0800d5b1 Thumb Code 118 tasks.o(.text.xTaskCreateStatic) + xTaskGenericNotify 0x0800d629 Thumb Code 252 tasks.o(.text.xTaskGenericNotify) + xTaskGenericNotifyFromISR 0x0800d725 Thumb Code 298 tasks.o(.text.xTaskGenericNotifyFromISR) + xTaskGetCurrentTaskHandle 0x0800d851 Thumb Code 12 tasks.o(.text.xTaskGetCurrentTaskHandle) + xTaskGetSchedulerState 0x0800d85d Thumb Code 38 tasks.o(.text.xTaskGetSchedulerState) + xTaskGetTickCount 0x0800d885 Thumb Code 12 tasks.o(.text.xTaskGetTickCount) + xTaskGetTickCountFromISR 0x0800d891 Thumb Code 18 tasks.o(.text.xTaskGetTickCountFromISR) + xTaskIncrementTick 0x0800d8a5 Thumb Code 338 tasks.o(.text.xTaskIncrementTick) + xTaskNotifyWait 0x0800d9f9 Thumb Code 144 tasks.o(.text.xTaskNotifyWait) + xTaskPriorityDisinherit 0x0800da89 Thumb Code 146 tasks.o(.text.xTaskPriorityDisinherit) + xTaskPriorityInherit 0x0800db1d Thumb Code 146 tasks.o(.text.xTaskPriorityInherit) + xTaskRemoveFromEventList 0x0800dbb1 Thumb Code 142 tasks.o(.text.xTaskRemoveFromEventList) + xTaskResumeAll 0x0800dc41 Thumb Code 276 tasks.o(.text.xTaskResumeAll) + xTimerCreateTimerTask 0x0800dd55 Thumb Code 108 timers.o(.text.xTimerCreateTimerTask) + xTimerGenericCommand 0x0800ddc9 Thumb Code 104 timers.o(.text.xTimerGenericCommand) + _btod_d2e 0x0800de31 Thumb Code 62 btod.o(CL$$btod_d2e) + _d2e_denorm_low 0x0800de6f Thumb Code 70 btod.o(CL$$btod_d2e_denorm_low) + _d2e_norm_op1 0x0800deb5 Thumb Code 96 btod.o(CL$$btod_d2e_norm_op1) + __btod_div_common 0x0800df15 Thumb Code 696 btod.o(CL$$btod_div_common) + _e2e 0x0800e24d Thumb Code 220 btod.o(CL$$btod_e2e) + _btod_ediv 0x0800e329 Thumb Code 42 btod.o(CL$$btod_ediv) + _btod_emul 0x0800e353 Thumb Code 42 btod.o(CL$$btod_emul) + __btod_mult_common 0x0800e37d Thumb Code 580 btod.o(CL$$btod_mult_common) + __ARM_fpclassify 0x0800e5c1 Thumb Code 48 fpclassify.o(i.__ARM_fpclassify) + __ARM_fpclassifyf 0x0800e5f1 Thumb Code 38 fpclassifyf.o(i.__ARM_fpclassifyf) + __hardfp_asinf 0x0800e619 Thumb Code 258 asinf.o(i.__hardfp_asinf) + __hardfp_atan 0x0800e749 Thumb Code 622 atan.o(i.__hardfp_atan) + __hardfp_atan2 0x0800ea21 Thumb Code 448 atan2.o(i.__hardfp_atan2) + __hardfp_atan2f 0x0800ec21 Thumb Code 594 atan2f.o(i.__hardfp_atan2f) + __hardfp_cosf 0x0800eecd Thumb Code 280 cosf.o(i.__hardfp_cosf) + __hardfp_fmod 0x0800f01d Thumb Code 254 fmod.o(i.__hardfp_fmod) + __hardfp_sinf 0x0800f121 Thumb Code 344 sinf.o(i.__hardfp_sinf) + __hardfp_sqrt 0x0800f2b1 Thumb Code 122 sqrt.o(i.__hardfp_sqrt) + __hardfp_tanf 0x0800f32d Thumb Code 322 tanf.o(i.__hardfp_tanf) + __kernel_poly 0x0800f4a9 Thumb Code 248 poly.o(i.__kernel_poly) + __mathlib_dbl_infnan 0x0800f5a1 Thumb Code 20 dunder.o(i.__mathlib_dbl_infnan) + __mathlib_dbl_infnan2 0x0800f5b5 Thumb Code 20 dunder.o(i.__mathlib_dbl_infnan2) + __mathlib_dbl_invalid 0x0800f5c9 Thumb Code 24 dunder.o(i.__mathlib_dbl_invalid) + __mathlib_dbl_underflow 0x0800f5e9 Thumb Code 24 dunder.o(i.__mathlib_dbl_underflow) + __mathlib_flt_infnan 0x0800f609 Thumb Code 6 funder.o(i.__mathlib_flt_infnan) + __mathlib_flt_infnan2 0x0800f60f Thumb Code 6 funder.o(i.__mathlib_flt_infnan2) + __mathlib_flt_invalid 0x0800f615 Thumb Code 10 funder.o(i.__mathlib_flt_invalid) + __mathlib_flt_underflow 0x0800f625 Thumb Code 10 funder.o(i.__mathlib_flt_underflow) + __mathlib_rredf2 0x0800f635 Thumb Code 316 rredf.o(i.__mathlib_rredf2) + _is_digit 0x0800f789 Thumb Code 14 __printf_wp.o(i._is_digit) + atan 0x0800f797 Thumb Code 16 atan.o(i.atan) + fabs 0x0800f7a7 Thumb Code 24 fabs.o(i.fabs) + sqrtf 0x0800f7bf Thumb Code 62 sqrtf.o(i.sqrtf) + _get_lc_numeric 0x0800f7fd Thumb Code 44 lc_numeric_c.o(locale$$code) + __aeabi_dneg 0x0800f829 Thumb Code 0 basic.o(x$fpl$basic) + _dneg 0x0800f829 Thumb Code 6 basic.o(x$fpl$basic) + __aeabi_fneg 0x0800f82f Thumb Code 0 basic.o(x$fpl$basic) + _fneg 0x0800f82f Thumb Code 6 basic.o(x$fpl$basic) + _dabs 0x0800f835 Thumb Code 6 basic.o(x$fpl$basic) + _fabs 0x0800f83b Thumb Code 6 basic.o(x$fpl$basic) + __aeabi_d2f 0x0800f841 Thumb Code 0 d2f.o(x$fpl$d2f) + _d2f 0x0800f841 Thumb Code 98 d2f.o(x$fpl$d2f) + __aeabi_dadd 0x0800f8a5 Thumb Code 0 daddsub_clz.o(x$fpl$dadd) + _dadd 0x0800f8a5 Thumb Code 332 daddsub_clz.o(x$fpl$dadd) + __fpl_dcmp_Inf 0x0800f9f5 Thumb Code 24 dcmpi.o(x$fpl$dcmpinf) + __aeabi_ddiv 0x0800fa0d Thumb Code 0 ddiv.o(x$fpl$ddiv) + _ddiv 0x0800fa0d Thumb Code 556 ddiv.o(x$fpl$ddiv) + __aeabi_cdcmpeq 0x0800fcc1 Thumb Code 0 deqf.o(x$fpl$deqf) + _dcmpeq 0x0800fcc1 Thumb Code 120 deqf.o(x$fpl$deqf) + __aeabi_d2uiz 0x0800fd39 Thumb Code 0 dfixu.o(x$fpl$dfixu) + _dfixu 0x0800fd39 Thumb Code 90 dfixu.o(x$fpl$dfixu) + __aeabi_ui2d 0x0800fd93 Thumb Code 0 dflt_clz.o(x$fpl$dfltu) + _dfltu 0x0800fd93 Thumb Code 38 dflt_clz.o(x$fpl$dfltu) + __aeabi_cdcmpge 0x0800fdb9 Thumb Code 0 dgeqf.o(x$fpl$dgeqf) + _dcmpge 0x0800fdb9 Thumb Code 120 dgeqf.o(x$fpl$dgeqf) + __aeabi_cdcmple 0x0800fe31 Thumb Code 0 dleqf.o(x$fpl$dleqf) + _dcmple 0x0800fe31 Thumb Code 120 dleqf.o(x$fpl$dleqf) + __fpl_dcmple_InfNaN 0x0800fe93 Thumb Code 0 dleqf.o(x$fpl$dleqf) + __aeabi_dmul 0x0800fea9 Thumb Code 0 dmul.o(x$fpl$dmul) + _dmul 0x0800fea9 Thumb Code 332 dmul.o(x$fpl$dmul) + __fpl_dnaninf 0x0800fffd Thumb Code 156 dnaninf.o(x$fpl$dnaninf) + _drem 0x08010099 Thumb Code 328 drem_clz.o(x$fpl$drem) + __fpl_dretinf 0x080101e9 Thumb Code 12 dretinf.o(x$fpl$dretinf) + __aeabi_drsub 0x080101f5 Thumb Code 0 daddsub_clz.o(x$fpl$drsb) + _drsb 0x080101f5 Thumb Code 22 daddsub_clz.o(x$fpl$drsb) + _dsqrt 0x0801020d Thumb Code 404 dsqrt_umaal.o(x$fpl$dsqrt) + __aeabi_dsub 0x080103a5 Thumb Code 0 daddsub_clz.o(x$fpl$dsub) + _dsub 0x080103a5 Thumb Code 472 daddsub_clz.o(x$fpl$dsub) + __aeabi_f2d 0x08010581 Thumb Code 0 f2d.o(x$fpl$f2d) + _f2d 0x08010581 Thumb Code 86 f2d.o(x$fpl$f2d) + __aeabi_dcmpeq 0x080105d7 Thumb Code 0 dcmp.o(x$fpl$fcmp) + _deq 0x080105d7 Thumb Code 14 dcmp.o(x$fpl$fcmp) + _dneq 0x080105e5 Thumb Code 14 dcmp.o(x$fpl$fcmp) + __aeabi_dcmpgt 0x080105f3 Thumb Code 0 dcmp.o(x$fpl$fcmp) + _dgr 0x080105f3 Thumb Code 14 dcmp.o(x$fpl$fcmp) + __aeabi_dcmpge 0x08010601 Thumb Code 0 dcmp.o(x$fpl$fcmp) + _dgeq 0x08010601 Thumb Code 14 dcmp.o(x$fpl$fcmp) + __aeabi_dcmple 0x0801060f Thumb Code 0 dcmp.o(x$fpl$fcmp) + _dleq 0x0801060f Thumb Code 14 dcmp.o(x$fpl$fcmp) + __aeabi_dcmplt 0x0801061d Thumb Code 0 dcmp.o(x$fpl$fcmp) + _dls 0x0801061d Thumb Code 14 dcmp.o(x$fpl$fcmp) + __aeabi_ul2f 0x0801062b Thumb Code 0 ffltll_clz.o(x$fpl$ffltll) + _ll_uto_f 0x0801062b Thumb Code 6 ffltll_clz.o(x$fpl$ffltll) + __aeabi_l2f 0x08010631 Thumb Code 0 ffltll_clz.o(x$fpl$ffltll) + _ll_sto_f 0x08010631 Thumb Code 90 ffltll_clz.o(x$fpl$ffltll) + __fpl_fnaninf 0x0801068b Thumb Code 140 fnaninf.o(x$fpl$fnaninf) + _fp_init 0x08010717 Thumb Code 26 fpinit.o(x$fpl$fpinit) + __fplib_config_fpu_vfp 0x0801072f Thumb Code 0 fpinit.o(x$fpl$fpinit) + __fplib_config_pureend_doubles 0x0801072f Thumb Code 0 fpinit.o(x$fpl$fpinit) + __fpl_fretinf 0x08010731 Thumb Code 10 fretinf.o(x$fpl$fretinf) + _printf_fp_dec 0x0801073b Thumb Code 4 printf1.o(x$fpl$printf1) + __I$use$fp 0x0801073e Number 0 usenofp.o(x$fpl$usenofp) + __mathlib_zero 0x080107d8 Data 8 qnan.o(.constdata) + AHBPrescTable 0x08010894 Data 16 system_stm32f4xx.o(.rodata.AHBPrescTable) + APBPrescTable 0x080108a4 Data 8 system_stm32f4xx.o(.rodata.APBPrescTable) + attr_ET16s 0x08010914 Data 36 user_task.o(.rodata.attr_ET16s) + attr_ai 0x08010938 Data 36 user_task.o(.rodata.attr_ai) + attr_atti_esti 0x0801095c Data 36 user_task.o(.rodata.attr_atti_esti) + attr_chassis_ctrl 0x08010980 Data 36 user_task.o(.rodata.attr_chassis_ctrl) + attr_cmd 0x080109a4 Data 36 user_task.o(.rodata.attr_cmd) + attr_dr16 0x080109c8 Data 36 user_task.o(.rodata.attr_dr16) + attr_gimbal_ctrl 0x080109ec Data 36 user_task.o(.rodata.attr_gimbal_ctrl) + attr_init 0x08010a10 Data 36 user_task.o(.rodata.attr_init) + attr_shoot_ctrl 0x08010a34 Data 36 user_task.o(.rodata.attr_shoot_ctrl) + attr_step_motor 0x08010a58 Data 36 user_task.o(.rodata.attr_step_motor) + attr_vofa 0x08010a7c Data 36 user_task.o(.rodata.attr_vofa) + defaultTask_attributes 0x08010ab0 Data 36 freertos.o(.rodata.defaultTask_attributes) + Region$$Table$$Base 0x08010c0c Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x08010c4c Number 0 anon$$obj.o(Region$$Table) + SystemCoreClock 0x20000000 Data 4 system_stm32f4xx.o(.data.SystemCoreClock) + cali_bmi088 0x20000004 Data 12 atti_esti.o(.data.cali_bmi088) + sourceHandlers 0x20000014 Data 64 cmd_1.o(.data.sourceHandlers) + uwTickFreq 0x20000054 Data 1 stm32f4xx_hal.o(.data.uwTickFreq) + uwTickPrio 0x20000058 Data 4 stm32f4xx_hal.o(.data.uwTickPrio) + __libspace_start 0x20000060 Data 96 libspace.o(.bss) + __temporary_stack_top$libspace 0x200000c0 Data 0 libspace.o(.bss) + bmi088 0x20000150 Data 48 atti_esti.o(.bss.bmi088) + cmd_chassis 0x2000019c Data 32 chassis_ctrl.o(.bss.cmd_chassis) + cmd_et16s 0x200001bc Data 77 cmd.o(.bss.cmd_et16s) + cmd_for_gimbal 0x2000020c Data 4 cmd.o(.bss.cmd_for_gimbal) + defaultTaskHandle 0x20000210 Data 4 freertos.o(.bss.defaultTaskHandle) + dr16 0x20000218 Data 88 dr16_1.o(.bss.dr16) + gimbal 0x20000270 Data 760 gimbal_ctrl.o(.bss.gimbal) + gimbal_ahrs 0x20000568 Data 20 atti_esti.o(.bss.gimbal_ahrs) + gimbal_to_send 0x2000057c Data 52 atti_esti.o(.bss.gimbal_to_send) + hdma_spi1_tx 0x200005b0 Data 96 spi.o(.bss.hdma_spi1_tx) + hdma_usart6_rx 0x20000610 Data 96 usart.o(.bss.hdma_usart6_rx) + hi2c2 0x20000670 Data 84 i2c.o(.bss.hi2c2) + htim1 0x200006c4 Data 72 tim.o(.bss.htim1) + huart1 0x2000070c Data 72 usart.o(.bss.huart1) + huart3 0x20000754 Data 72 usart.o(.bss.huart3) + magn 0x200007a4 Data 12 atti_esti.o(.bss.magn) + shoot_cmd 0x20000860 Data 3 shoot_ctrl.o(.bss.shoot_cmd) + task_runtime 0x20000864 Data 224 user_task.o(.bss.task_runtime) + xQueueRegistry 0x2001a998 Data 64 queue.o(.bss.xQueueRegistry) + StepMotor_param 0x2001c000 Data 8 step_motor_1.o(.data.StepMotor_param) + robot_config 0x2001c024 Data 1024 config.o(.data.robot_config) + _random_number_data 0x2001c428 Data 228 rand.o(.bss) + cbuf 0x2001c5ec Data 25 et16s.o(.bss.cbuf) + channel 0x2001c608 Data 16 vofa_1.o(.bss.channel) + chassis 0x2001c618 Data 1748 chassis_ctrl.o(.bss.chassis) + cmd 0x2001ccec Data 196 cmd.o(.bss.cmd) + cmd_for_chassis 0x2001cdb0 Data 4 cmd.o(.bss.cmd_for_chassis) + cmd_for_shoot 0x2001cdb4 Data 4 cmd.o(.bss.cmd_for_shoot) + et16s 0x2001cdb8 Data 77 et16s_1.o(.bss.et16s) + eulr_to_send 0x2001ce08 Data 12 atti_esti.o(.bss.eulr_to_send) + g_adapters 0x2001ce14 Data 16 cmd_adapter.o(.bss.g_adapters) + gimbal_cmd 0x2001ce24 Data 20 gimbal_ctrl.o(.bss.gimbal_cmd) + gimbal_imu 0x2001ce38 Data 52 gimbal_ctrl.o(.bss.gimbal_imu) + hcan1 0x2001ce6c Data 40 can.o(.bss.hcan1) + hcan2 0x2001ce94 Data 40 can.o(.bss.hcan2) + hdma_spi1_rx 0x2001cebc Data 96 spi.o(.bss.hdma_spi1_rx) + hdma_usart3_rx 0x2001cf1c Data 96 usart.o(.bss.hdma_usart3_rx) + hdma_usart6_tx 0x2001cf7c Data 96 usart.o(.bss.hdma_usart6_tx) + hi2c1 0x2001cfdc Data 84 i2c.o(.bss.hi2c1) + hspi1 0x2001d030 Data 88 spi.o(.bss.hspi1) + htim10 0x2001d088 Data 72 tim.o(.bss.htim10) + huart2 0x2001d0d0 Data 72 usart.o(.bss.huart2) + huart6 0x2001d118 Data 72 usart.o(.bss.huart6) + imu_temp_ctrl_pid 0x2001d160 Data 60 atti_esti.o(.bss.imu_temp_ctrl_pid) + pxCurrentTCB 0x2001d1f8 Data 4 tasks.o(.bss.pxCurrentTCB) + shoot 0x2001d670 Data 1712 shoot_ctrl.o(.bss.shoot) + uwTick 0x2001e534 Data 4 stm32f4xx_hal.o(.bss.uwTick) @@ -9504,1044 +9537,1050 @@ Memory Map of the image Image Entry point : 0x08000189 - Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00010788, Max: 0x00100000, ABSOLUTE, COMPRESSED[0x00010480]) + Load Region LR_IROM1 (Base: 0x08000000, Size: 0x000110f0, Max: 0x00100000, ABSOLUTE, COMPRESSED[0x00010e40]) - Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000102c0, Max: 0x00100000, ABSOLUTE) + Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00010c68, Max: 0x00100000, ABSOLUTE) Exec Addr Load Addr Size Type Attr Idx E Section Name Object 0x08000000 0x08000000 0x00000188 Data RO 3 RESET startup_stm32f407xx.o - 0x08000188 0x08000188 0x00000008 Code RO 3654 * !!!main c_w.l(__main.o) - 0x08000190 0x08000190 0x00000034 Code RO 4052 !!!scatter c_w.l(__scatter.o) - 0x080001c4 0x080001c4 0x0000005a Code RO 4050 !!dczerorl2 c_w.l(__dczerorl2.o) + 0x08000188 0x08000188 0x00000008 Code RO 3655 * !!!main c_w.l(__main.o) + 0x08000190 0x08000190 0x00000034 Code RO 4061 !!!scatter c_w.l(__scatter.o) + 0x080001c4 0x080001c4 0x0000005a Code RO 4059 !!dczerorl2 c_w.l(__dczerorl2.o) 0x0800021e 0x0800021e 0x00000002 PAD - 0x08000220 0x08000220 0x0000001a Code RO 4054 !!handler_copy c_w.l(__scatter_copy.o) + 0x08000220 0x08000220 0x0000001a Code RO 4063 !!handler_copy c_w.l(__scatter_copy.o) 0x0800023a 0x0800023a 0x00000002 PAD - 0x0800023c 0x0800023c 0x0000001c Code RO 4056 !!handler_zi c_w.l(__scatter_zi.o) - 0x08000258 0x08000258 0x00000000 Code RO 3626 .ARM.Collect$$_printf_percent$$00000000 c_w.l(_printf_percent.o) - 0x08000258 0x08000258 0x00000006 Code RO 3625 .ARM.Collect$$_printf_percent$$00000003 c_w.l(_printf_f.o) - 0x0800025e 0x0800025e 0x00000006 Code RO 3624 .ARM.Collect$$_printf_percent$$0000000A c_w.l(_printf_u.o) - 0x08000264 0x08000264 0x00000006 Code RO 3622 .ARM.Collect$$_printf_percent$$00000013 c_w.l(_printf_c.o) - 0x0800026a 0x0800026a 0x00000006 Code RO 3623 .ARM.Collect$$_printf_percent$$00000014 c_w.l(_printf_s.o) - 0x08000270 0x08000270 0x00000004 Code RO 3751 .ARM.Collect$$_printf_percent$$00000017 c_w.l(_printf_percent_end.o) - 0x08000274 0x08000274 0x00000002 Code RO 3968 .ARM.Collect$$libinit$$00000000 c_w.l(libinit.o) - 0x08000276 0x08000276 0x00000004 Code RO 3752 .ARM.Collect$$libinit$$00000001 c_w.l(libinit2.o) - 0x0800027a 0x0800027a 0x00000000 Code RO 3755 .ARM.Collect$$libinit$$00000004 c_w.l(libinit2.o) - 0x0800027a 0x0800027a 0x00000000 Code RO 3758 .ARM.Collect$$libinit$$0000000A c_w.l(libinit2.o) - 0x0800027a 0x0800027a 0x00000000 Code RO 3760 .ARM.Collect$$libinit$$0000000C c_w.l(libinit2.o) - 0x0800027a 0x0800027a 0x00000000 Code RO 3762 .ARM.Collect$$libinit$$0000000E c_w.l(libinit2.o) - 0x0800027a 0x0800027a 0x00000006 Code RO 3763 .ARM.Collect$$libinit$$0000000F c_w.l(libinit2.o) - 0x08000280 0x08000280 0x00000000 Code RO 3765 .ARM.Collect$$libinit$$00000011 c_w.l(libinit2.o) - 0x08000280 0x08000280 0x00000000 Code RO 3767 .ARM.Collect$$libinit$$00000013 c_w.l(libinit2.o) - 0x08000280 0x08000280 0x00000000 Code RO 3769 .ARM.Collect$$libinit$$00000015 c_w.l(libinit2.o) - 0x08000280 0x08000280 0x0000000a Code RO 3770 .ARM.Collect$$libinit$$00000016 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3771 .ARM.Collect$$libinit$$00000017 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3773 .ARM.Collect$$libinit$$00000019 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3775 .ARM.Collect$$libinit$$0000001B c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3777 .ARM.Collect$$libinit$$0000001D c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3779 .ARM.Collect$$libinit$$0000001F c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3781 .ARM.Collect$$libinit$$00000021 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3783 .ARM.Collect$$libinit$$00000023 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3785 .ARM.Collect$$libinit$$00000025 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3789 .ARM.Collect$$libinit$$0000002C c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3791 .ARM.Collect$$libinit$$0000002E c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3793 .ARM.Collect$$libinit$$00000030 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000000 Code RO 3795 .ARM.Collect$$libinit$$00000032 c_w.l(libinit2.o) - 0x0800028a 0x0800028a 0x00000002 Code RO 3796 .ARM.Collect$$libinit$$00000033 c_w.l(libinit2.o) - 0x0800028c 0x0800028c 0x00000002 Code RO 4017 .ARM.Collect$$libshutdown$$00000000 c_w.l(libshutdown.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 4033 .ARM.Collect$$libshutdown$$00000002 c_w.l(libshutdown2.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 4035 .ARM.Collect$$libshutdown$$00000004 c_w.l(libshutdown2.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 4038 .ARM.Collect$$libshutdown$$00000007 c_w.l(libshutdown2.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 4041 .ARM.Collect$$libshutdown$$0000000A c_w.l(libshutdown2.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 4043 .ARM.Collect$$libshutdown$$0000000C c_w.l(libshutdown2.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 4046 .ARM.Collect$$libshutdown$$0000000F c_w.l(libshutdown2.o) - 0x0800028e 0x0800028e 0x00000002 Code RO 4047 .ARM.Collect$$libshutdown$$00000010 c_w.l(libshutdown2.o) - 0x08000290 0x08000290 0x00000000 Code RO 3730 .ARM.Collect$$rtentry$$00000000 c_w.l(__rtentry.o) - 0x08000290 0x08000290 0x00000000 Code RO 3870 .ARM.Collect$$rtentry$$00000002 c_w.l(__rtentry2.o) - 0x08000290 0x08000290 0x00000006 Code RO 3882 .ARM.Collect$$rtentry$$00000004 c_w.l(__rtentry4.o) - 0x08000296 0x08000296 0x00000000 Code RO 3872 .ARM.Collect$$rtentry$$00000009 c_w.l(__rtentry2.o) - 0x08000296 0x08000296 0x00000004 Code RO 3873 .ARM.Collect$$rtentry$$0000000A c_w.l(__rtentry2.o) - 0x0800029a 0x0800029a 0x00000000 Code RO 3875 .ARM.Collect$$rtentry$$0000000C c_w.l(__rtentry2.o) - 0x0800029a 0x0800029a 0x00000008 Code RO 3876 .ARM.Collect$$rtentry$$0000000D c_w.l(__rtentry2.o) - 0x080002a2 0x080002a2 0x00000002 Code RO 3973 .ARM.Collect$$rtexit$$00000000 c_w.l(rtexit.o) - 0x080002a4 0x080002a4 0x00000000 Code RO 3997 .ARM.Collect$$rtexit$$00000002 c_w.l(rtexit2.o) - 0x080002a4 0x080002a4 0x00000004 Code RO 3998 .ARM.Collect$$rtexit$$00000003 c_w.l(rtexit2.o) - 0x080002a8 0x080002a8 0x00000006 Code RO 3999 .ARM.Collect$$rtexit$$00000004 c_w.l(rtexit2.o) - 0x080002ae 0x080002ae 0x00000002 PAD - 0x080002b0 0x080002b0 0x00000040 Code RO 4 .text startup_stm32f407xx.o - 0x080002f0 0x080002f0 0x000000f0 Code RO 3586 .text c_w.l(lludivv7m.o) - 0x080003e0 0x080003e0 0x0000002c Code RO 3588 .text c_w.l(__2sprintf.o) - 0x0800040c 0x0800040c 0x00000038 Code RO 3590 .text c_w.l(__2snprintf.o) - 0x08000444 0x08000444 0x00000052 Code RO 3598 .text c_w.l(_printf_str.o) - 0x08000496 0x08000496 0x00000002 PAD - 0x08000498 0x08000498 0x00000078 Code RO 3600 .text c_w.l(_printf_dec.o) - 0x08000510 0x08000510 0x0000010e Code RO 3610 .text c_w.l(__printf_wp.o) - 0x0800061e 0x0800061e 0x0000003e Code RO 3634 .text c_w.l(strlen.o) - 0x0800065c 0x0800065c 0x0000008a Code RO 3638 .text c_w.l(rt_memcpy_v6.o) - 0x080006e6 0x080006e6 0x00000064 Code RO 3640 .text c_w.l(rt_memcpy_w.o) - 0x0800074a 0x0800074a 0x00000010 Code RO 3644 .text c_w.l(aeabi_memset4.o) - 0x0800075a 0x0800075a 0x0000004e Code RO 3648 .text c_w.l(rt_memclr_w.o) - 0x080007a8 0x080007a8 0x00000006 Code RO 3652 .text c_w.l(heapauxi.o) - 0x080007ae 0x080007ae 0x00000016 Code RO 3735 .text c_w.l(_rserrno.o) - 0x080007c4 0x080007c4 0x000000b2 Code RO 3737 .text c_w.l(_printf_intcommon.o) - 0x08000876 0x08000876 0x0000041c Code RO 3739 .text c_w.l(_printf_fp_dec.o) - 0x08000c92 0x08000c92 0x00000002 PAD - 0x08000c94 0x08000c94 0x00000030 Code RO 3743 .text c_w.l(_printf_char_common.o) - 0x08000cc4 0x08000cc4 0x0000000a Code RO 3745 .text c_w.l(_sputc.o) - 0x08000cce 0x08000cce 0x00000010 Code RO 3747 .text c_w.l(_snputc.o) - 0x08000cde 0x08000cde 0x0000002c Code RO 3749 .text c_w.l(_printf_char.o) - 0x08000d0a 0x08000d0a 0x00000002 PAD - 0x08000d0c 0x08000d0c 0x00000008 Code RO 3889 .text c_w.l(rt_locale_intlibspace.o) - 0x08000d14 0x08000d14 0x00000008 Code RO 3894 .text c_w.l(rt_errno_addr_intlibspace.o) - 0x08000d1c 0x08000d1c 0x0000008a Code RO 3896 .text c_w.l(lludiv10.o) - 0x08000da6 0x08000da6 0x00000002 PAD - 0x08000da8 0x08000da8 0x00000080 Code RO 3898 .text c_w.l(_printf_fp_infnan.o) - 0x08000e28 0x08000e28 0x000000e4 Code RO 3902 .text c_w.l(bigflt0.o) - 0x08000f0c 0x08000f0c 0x00000008 Code RO 3944 .text c_w.l(libspace.o) - 0x08000f14 0x08000f14 0x0000004a Code RO 3947 .text c_w.l(sys_stackheap_outer.o) - 0x08000f5e 0x08000f5e 0x00000012 Code RO 3951 .text c_w.l(exit.o) - 0x08000f70 0x08000f70 0x0000007c Code RO 3957 .text c_w.l(strcmpv7em.o) - 0x08000fec 0x08000fec 0x0000000c Code RO 3989 .text c_w.l(sys_exit.o) - 0x08000ff8 0x08000ff8 0x00000002 Code RO 3993 .text c_w.l(use_no_semi.o) - 0x08000ffa 0x08000ffa 0x00000000 Code RO 3995 .text c_w.l(indicate_semi.o) - 0x08000ffa 0x08000ffa 0x00000002 PAD - 0x08000ffc 0x08000ffc 0x000000dc Code RO 2556 .text.AHRS_GetEulr ahrs.o - 0x080010d8 0x080010d8 0x00000184 Code RO 2550 .text.AHRS_Init ahrs.o - 0x0800125c 0x0800125c 0x0000000a Code RO 2560 .text.AHRS_ResetEulr ahrs.o - 0x08001266 0x08001266 0x00000002 PAD - 0x08001268 0x08001268 0x0000058e Code RO 2552 .text.AHRS_Update ahrs.o - 0x080017f6 0x080017f6 0x00000002 PAD - 0x080017f8 0x080017f8 0x000002f0 Code RO 2554 .text.AHRS_UpdateIMU ahrs.o - 0x08001ae8 0x08001ae8 0x00000022 Code RO 2745 .text.AbsClip user_math.o - 0x08001b0a 0x08001b0a 0x00000002 PAD - 0x08001b0c 0x08001b0c 0x00000014 Code RO 2832 .text.BMI088_AcclIntCallback bmi088.o - 0x08001b20 0x08001b20 0x00000018 Code RO 2840 .text.BMI088_AcclStartDmaRecv bmi088.o - 0x08001b38 0x08001b38 0x00000010 Code RO 2844 .text.BMI088_AcclWaitDmaCplt bmi088.o - 0x08001b48 0x08001b48 0x0000000c Code RO 2854 .text.BMI088_GetUpdateFreq bmi088.o - 0x08001b54 0x08001b54 0x00000014 Code RO 2834 .text.BMI088_GyroIntCallback bmi088.o - 0x08001b68 0x08001b68 0x0000001a Code RO 2846 .text.BMI088_GyroStartDmaRecv bmi088.o - 0x08001b82 0x08001b82 0x00000002 PAD - 0x08001b84 0x08001b84 0x00000010 Code RO 2848 .text.BMI088_GyroWaitDmaCplt bmi088.o - 0x08001b94 0x08001b94 0x00000142 Code RO 2824 .text.BMI088_Init bmi088.o - 0x08001cd6 0x08001cd6 0x00000002 PAD - 0x08001cd8 0x08001cd8 0x00000094 Code RO 2850 .text.BMI088_ParseAccl bmi088.o - 0x08001d6c 0x08001d6c 0x00000084 Code RO 2852 .text.BMI088_ParseGyro bmi088.o - 0x08001df0 0x08001df0 0x00000040 Code RO 2830 .text.BMI088_RxCpltCallback bmi088.o - 0x08001e30 0x08001e30 0x00000010 Code RO 2838 .text.BMI088_WaitNew bmi088.o - 0x08001e40 0x08001e40 0x0000004a Code RO 2842 .text.BMI_Read bmi088.o - 0x08001e8a 0x08001e8a 0x00000002 PAD - 0x08001e8c 0x08001e8c 0x0000006c Code RO 2828 .text.BMI_ReadSingle bmi088.o - 0x08001ef8 0x08001ef8 0x00000054 Code RO 2826 .text.BMI_WriteSingle bmi088.o - 0x08001f4c 0x08001f4c 0x00000092 Code RO 2277 .text.BSP_CAN_CreateIdQueue can_1.o - 0x08001fde 0x08001fde 0x00000002 PAD - 0x08001fe0 0x08001fe0 0x00000002 Code RO 2253 .text.BSP_CAN_DefaultIdParser can_1.o - 0x08001fe2 0x08001fe2 0x00000002 PAD - 0x08001fe4 0x08001fe4 0x00000026 Code RO 2281 .text.BSP_CAN_FindQueue can_1.o - 0x0800200a 0x0800200a 0x00000002 PAD - 0x0800200c 0x0800200c 0x0000001a Code RO 2291 .text.BSP_CAN_GetFrameType can_1.o - 0x08002026 0x08002026 0x00000002 PAD - 0x08002028 0x08002028 0x00000026 Code RO 2263 .text.BSP_CAN_GetHandle can_1.o - 0x0800204e 0x0800204e 0x00000002 PAD - 0x08002050 0x08002050 0x00000080 Code RO 2279 .text.BSP_CAN_GetMessage can_1.o - 0x080020d0 0x080020d0 0x00000134 Code RO 2249 .text.BSP_CAN_Init can_1.o - 0x08002204 0x08002204 0x00000014 Code RO 2289 .text.BSP_CAN_ParseId can_1.o - 0x08002218 0x08002218 0x00000044 Code RO 2255 .text.BSP_CAN_RegisterCallback can_1.o - 0x0800225c 0x0800225c 0x0000001e Code RO 2275 .text.BSP_CAN_RegisterId can_1.o - 0x0800227a 0x0800227a 0x00000002 PAD - 0x0800227c 0x0800227c 0x000000c2 Code RO 2257 .text.BSP_CAN_RxFifo0Callback can_1.o - 0x0800233e 0x0800233e 0x00000002 PAD - 0x08002340 0x08002340 0x000000c2 Code RO 2261 .text.BSP_CAN_RxFifo1Callback can_1.o - 0x08002402 0x08002402 0x00000002 PAD - 0x08002404 0x08002404 0x000000e2 Code RO 2265 .text.BSP_CAN_Transmit can_1.o - 0x080024e6 0x080024e6 0x00000002 PAD - 0x080024e8 0x080024e8 0x00000028 Code RO 2269 .text.BSP_CAN_TransmitStdDataFrame can_1.o - 0x08002510 0x08002510 0x00000064 Code RO 2259 .text.BSP_CAN_TxCompleteCallback can_1.o - 0x08002574 0x08002574 0x0000001c Code RO 2251 .text.BSP_CAN_TxQueueInit can_1.o - 0x08002590 0x08002590 0x00000022 Code RO 2293 .text.BSP_CAN_TxQueueIsEmpty can_1.o - 0x080025b2 0x080025b2 0x00000002 PAD - 0x080025b4 0x080025b4 0x00000074 Code RO 2295 .text.BSP_CAN_TxQueuePop can_1.o - 0x08002628 0x08002628 0x0000007e Code RO 2267 .text.BSP_CAN_TxQueuePush can_1.o - 0x080026a6 0x080026a6 0x00000002 PAD - 0x080026a8 0x080026a8 0x00000008 Code RO 2415 .text.BSP_Free mm.o - 0x080026b0 0x080026b0 0x00000034 Code RO 2350 .text.BSP_GPIO_DisableIRQ gpio_1.o - 0x080026e4 0x080026e4 0x00000034 Code RO 2348 .text.BSP_GPIO_EnableIRQ gpio_1.o - 0x08002718 0x08002718 0x0000002c Code RO 2356 .text.BSP_GPIO_ReadPin gpio_1.o - 0x08002744 0x08002744 0x0000004a Code RO 2346 .text.BSP_GPIO_RegisterCallback gpio_1.o - 0x0800278e 0x0800278e 0x00000002 PAD - 0x08002790 0x08002790 0x00000030 Code RO 2352 .text.BSP_GPIO_WritePin gpio_1.o - 0x080027c0 0x080027c0 0x00000008 Code RO 2413 .text.BSP_Malloc mm.o - 0x080027c8 0x080027c8 0x00000074 Code RO 2525 .text.BSP_PWM_SetComp pwm.o - 0x0800283c 0x0800283c 0x0000002c Code RO 2523 .text.BSP_PWM_Start pwm.o - 0x08002868 0x08002868 0x00000012 Code RO 2443 .text.BSP_SPI_GetHandle spi_1.o - 0x0800287a 0x0800287a 0x00000002 PAD - 0x0800287c 0x0800287c 0x00000034 Code RO 2449 .text.BSP_SPI_Receive spi_1.o - 0x080028b0 0x080028b0 0x0000001e Code RO 2445 .text.BSP_SPI_RegisterCallback spi_1.o - 0x080028ce 0x080028ce 0x00000002 PAD - 0x080028d0 0x080028d0 0x00000034 Code RO 2447 .text.BSP_SPI_Transmit spi_1.o - 0x08002904 0x08002904 0x00000058 Code RO 2474 .text.BSP_TIME_Delay_ms time.o - 0x0800295c 0x0800295c 0x00000050 Code RO 2472 .text.BSP_TIME_Get_us time.o - 0x080029ac 0x080029ac 0x00000020 Code RO 2506 .text.BSP_UART_GetHandle uart.o - 0x080029cc 0x080029cc 0x0000003a Code RO 2504 .text.BSP_UART_IRQHandler uart.o - 0x08002a06 0x08002a06 0x00000002 PAD - 0x08002a08 0x08002a08 0x00000032 Code RO 2508 .text.BSP_UART_RegisterCallback uart.o - 0x08002a3a 0x08002a3a 0x00000002 PAD - 0x08002a3c 0x08002a3c 0x00000040 Code RO 2510 .text.BSP_UART_Transmit uart.o - 0x08002a7c 0x08002a7c 0x00000002 Code RO 170 .text.BusFault_Handler stm32f4xx_it.o - 0x08002a7e 0x08002a7e 0x00000002 PAD - 0x08002a80 0x08002a80 0x00000010 Code RO 188 .text.CAN1_RX0_IRQHandler stm32f4xx_it.o - 0x08002a90 0x08002a90 0x00000010 Code RO 190 .text.CAN1_RX1_IRQHandler stm32f4xx_it.o - 0x08002aa0 0x08002aa0 0x00000010 Code RO 186 .text.CAN1_TX_IRQHandler stm32f4xx_it.o - 0x08002ab0 0x08002ab0 0x00000010 Code RO 208 .text.CAN2_RX0_IRQHandler stm32f4xx_it.o - 0x08002ac0 0x08002ac0 0x00000010 Code RO 210 .text.CAN2_RX1_IRQHandler stm32f4xx_it.o - 0x08002ad0 0x08002ad0 0x00000010 Code RO 206 .text.CAN2_TX_IRQHandler stm32f4xx_it.o - 0x08002ae0 0x08002ae0 0x00000024 Code RO 2223 .text.CAN_Get can_1.o - 0x08002b04 0x08002b04 0x00000034 Code RO 3530 .text.CMD_Adapter_GetInput cmd_adapter.o - 0x08002b38 0x08002b38 0x0000003a Code RO 3528 .text.CMD_Adapter_InitAll cmd_adapter.o - 0x08002b72 0x08002b72 0x00000002 PAD - 0x08002b74 0x08002b74 0x00000020 Code RO 3526 .text.CMD_Adapter_Register cmd_adapter.o - 0x08002b94 0x08002b94 0x00000064 Code RO 3503 .text.CMD_Arbitrate cmd_1.o - 0x08002bf8 0x08002bf8 0x00000024 Code RO 3553 .text.CMD_Behavior_Handle_ACCELERATE cmd_behavior.o - 0x08002c1c 0x08002c1c 0x00000004 Code RO 3563 .text.CMD_Behavior_Handle_AUTOAIM cmd_behavior.o - 0x08002c20 0x08002c20 0x00000018 Code RO 3547 .text.CMD_Behavior_Handle_BACK cmd_behavior.o - 0x08002c38 0x08002c38 0x00000024 Code RO 3565 .text.CMD_Behavior_Handle_CHECKSOURCERCPC cmd_behavior.o - 0x08002c5c 0x08002c5c 0x00000024 Code RO 3555 .text.CMD_Behavior_Handle_DECELERATE cmd_behavior.o - 0x08002c80 0x08002c80 0x0000000c Code RO 3557 .text.CMD_Behavior_Handle_FIRE cmd_behavior.o - 0x08002c8c 0x08002c8c 0x00000014 Code RO 3559 .text.CMD_Behavior_Handle_FIRE_MODE cmd_behavior.o - 0x08002ca0 0x08002ca0 0x00000018 Code RO 3545 .text.CMD_Behavior_Handle_FORE cmd_behavior.o - 0x08002cb8 0x08002cb8 0x00000018 Code RO 3549 .text.CMD_Behavior_Handle_LEFT cmd_behavior.o - 0x08002cd0 0x08002cd0 0x00000018 Code RO 3551 .text.CMD_Behavior_Handle_RIGHT cmd_behavior.o - 0x08002ce8 0x08002ce8 0x00000012 Code RO 3561 .text.CMD_Behavior_Handle_ROTOR cmd_behavior.o - 0x08002cfa 0x08002cfa 0x00000002 PAD - 0x08002cfc 0x08002cfc 0x00000004 Code RO 3567 .text.CMD_Behavior_Init cmd_behavior.o - 0x08002d00 0x08002d00 0x000000cc Code RO 3569 .text.CMD_Behavior_IsTriggered cmd_behavior.o - 0x08002dcc 0x08002dcc 0x00000052 Code RO 3571 .text.CMD_Behavior_ProcessAll cmd_behavior.o - 0x08002e1e 0x08002e1e 0x00000002 PAD - 0x08002e20 0x08002e20 0x000000f4 Code RO 3522 .text.CMD_ET16s_GetInput cmd_adapter.o - 0x08002f14 0x08002f14 0x00000008 Code RO 3520 .text.CMD_ET16s_Init cmd_adapter.o - 0x08002f1c 0x08002f1c 0x00000006 Code RO 3524 .text.CMD_ET16s_IsOnline cmd_adapter.o - 0x08002f22 0x08002f22 0x00000002 PAD - 0x08002f24 0x08002f24 0x00000098 Code RO 3505 .text.CMD_GenerateCommands cmd_1.o - 0x08002fbc 0x08002fbc 0x00000028 Code RO 3487 .text.CMD_Init cmd_1.o - 0x08002fe4 0x08002fe4 0x0000002a Code RO 3497 .text.CMD_PC_BuildChassisCmd cmd_1.o - 0x0800300e 0x0800300e 0x00000002 PAD - 0x08003010 0x08003010 0x00000068 Code RO 3499 .text.CMD_PC_BuildGimbalCmd cmd_1.o - 0x08003078 0x08003078 0x0000002c Code RO 3501 .text.CMD_PC_BuildShootCmd cmd_1.o - 0x080030a4 0x080030a4 0x00000030 Code RO 3491 .text.CMD_RC_BuildChassisCmd cmd_1.o - 0x080030d4 0x080030d4 0x00000048 Code RO 3493 .text.CMD_RC_BuildGimbalCmd cmd_1.o - 0x0800311c 0x0800311c 0x0000005e Code RO 3495 .text.CMD_RC_BuildShootCmd cmd_1.o - 0x0800317a 0x0800317a 0x00000002 PAD - 0x0800317c 0x0800317c 0x00000012 Code RO 3507 .text.CMD_SetOfflineMode cmd_1.o - 0x0800318e 0x0800318e 0x00000002 PAD - 0x08003190 0x08003190 0x0000001c Code RO 3509 .text.CMD_Update cmd_1.o - 0x080031ac 0x080031ac 0x00000068 Code RO 3489 .text.CMD_UpdateInput cmd_1.o - 0x08003214 0x08003214 0x0000003a Code RO 2757 .text.CircleAdd user_math.o - 0x0800324e 0x0800324e 0x00000002 PAD - 0x08003250 0x08003250 0x0000003c Code RO 2755 .text.CircleError user_math.o - 0x0800328c 0x0800328c 0x00000026 Code RO 2749 .text.Clip user_math.o - 0x080032b2 0x080032b2 0x00000002 PAD - 0x080032b4 0x080032b4 0x0000000a Code RO 3239 .text.Config_GetRobotParam config.o - 0x080032be 0x080032be 0x00000002 PAD - 0x080032c0 0x080032c0 0x00000010 Code RO 184 .text.DMA1_Stream1_IRQHandler stm32f4xx_it.o - 0x080032d0 0x080032d0 0x00000010 Code RO 200 .text.DMA2_Stream1_IRQHandler stm32f4xx_it.o - 0x080032e0 0x080032e0 0x00000010 Code RO 202 .text.DMA2_Stream2_IRQHandler stm32f4xx_it.o - 0x080032f0 0x080032f0 0x00000010 Code RO 204 .text.DMA2_Stream3_IRQHandler stm32f4xx_it.o - 0x08003300 0x08003300 0x00000010 Code RO 212 .text.DMA2_Stream6_IRQHandler stm32f4xx_it.o - 0x08003310 0x08003310 0x0000003c Code RO 496 .text.DMA_CalcBaseAndBitshift stm32f4xx_hal_dma.o - 0x0800334c 0x0800334c 0x00000050 Code RO 494 .text.DMA_CheckFifoParam stm32f4xx_hal_dma.o - 0x0800339c 0x0800339c 0x00000030 Code RO 502 .text.DMA_SetConfig stm32f4xx_hal_dma.o - 0x080033cc 0x080033cc 0x00000046 Code RO 3104 .text.DR16_Init dr16.o - 0x08003412 0x08003412 0x00000002 PAD - 0x08003414 0x08003414 0x00000014 Code RO 3106 .text.DR16_RxCpltCallback dr16.o - 0x08003428 0x08003428 0x00000002 Code RO 174 .text.DebugMon_Handler stm32f4xx_it.o - 0x0800342a 0x0800342a 0x00000002 PAD - 0x0800342c 0x0800342c 0x00000092 Code RO 3090 .text.ET16S_ParseRC et16s.o - 0x080034be 0x080034be 0x00000002 PAD - 0x080034c0 0x080034c0 0x00000036 Code RO 3092 .text.ET16s_HandleOffline et16s.o - 0x080034f6 0x080034f6 0x00000002 PAD - 0x080034f8 0x080034f8 0x00000268 Code RO 3088 .text.ET16s_ParseRaw et16s.o - 0x08003760 0x08003760 0x0000000a Code RO 178 .text.EXTI0_IRQHandler stm32f4xx_it.o - 0x0800376a 0x0800376a 0x00000002 PAD - 0x0800376c 0x0800376c 0x0000000a Code RO 180 .text.EXTI3_IRQHandler stm32f4xx_it.o - 0x08003776 0x08003776 0x00000002 PAD - 0x08003778 0x08003778 0x0000000a Code RO 182 .text.EXTI4_IRQHandler stm32f4xx_it.o - 0x08003782 0x08003782 0x00000002 PAD - 0x08003784 0x08003784 0x0000000a Code RO 192 .text.EXTI9_5_IRQHandler stm32f4xx_it.o - 0x0800378e 0x0800378e 0x00000002 PAD - 0x08003790 0x08003790 0x00000006 Code RO 15 .text.Error_Handler main.o - 0x08003796 0x08003796 0x00000002 PAD - 0x08003798 0x08003798 0x000003a0 Code RO 3260 .text.Gimbal_Control gimbal.o - 0x08003b38 0x08003b38 0x00000058 Code RO 3258 .text.Gimbal_Control_mode gimbal.o - 0x08003b90 0x08003b90 0x000000a4 Code RO 3254 .text.Gimbal_Direction gimbal.o - 0x08003c34 0x08003c34 0x00000156 Code RO 3248 .text.Gimbal_Init gimbal.o - 0x08003d8a 0x08003d8a 0x00000002 PAD - 0x08003d8c 0x08003d8c 0x0000011c Code RO 3266 .text.Gimbal_Output gimbal.o - 0x08003ea8 0x08003ea8 0x00000088 Code RO 3262 .text.Gimbal_SetMode gimbal.o - 0x08003f30 0x08003f30 0x0000011e Code RO 3250 .text.Gimbal_UpdateFeedback gimbal.o + 0x0800023c 0x0800023c 0x0000001c Code RO 4065 !!handler_zi c_w.l(__scatter_zi.o) + 0x08000258 0x08000258 0x00000000 Code RO 3627 .ARM.Collect$$_printf_percent$$00000000 c_w.l(_printf_percent.o) + 0x08000258 0x08000258 0x00000006 Code RO 3626 .ARM.Collect$$_printf_percent$$00000003 c_w.l(_printf_f.o) + 0x0800025e 0x0800025e 0x00000006 Code RO 3625 .ARM.Collect$$_printf_percent$$0000000A c_w.l(_printf_u.o) + 0x08000264 0x08000264 0x00000006 Code RO 3623 .ARM.Collect$$_printf_percent$$00000013 c_w.l(_printf_c.o) + 0x0800026a 0x0800026a 0x00000006 Code RO 3624 .ARM.Collect$$_printf_percent$$00000014 c_w.l(_printf_s.o) + 0x08000270 0x08000270 0x00000004 Code RO 3758 .ARM.Collect$$_printf_percent$$00000017 c_w.l(_printf_percent_end.o) + 0x08000274 0x08000274 0x00000002 Code RO 3977 .ARM.Collect$$libinit$$00000000 c_w.l(libinit.o) + 0x08000276 0x08000276 0x00000004 Code RO 3759 .ARM.Collect$$libinit$$00000001 c_w.l(libinit2.o) + 0x0800027a 0x0800027a 0x00000000 Code RO 3762 .ARM.Collect$$libinit$$00000004 c_w.l(libinit2.o) + 0x0800027a 0x0800027a 0x00000000 Code RO 3765 .ARM.Collect$$libinit$$0000000A c_w.l(libinit2.o) + 0x0800027a 0x0800027a 0x00000000 Code RO 3767 .ARM.Collect$$libinit$$0000000C c_w.l(libinit2.o) + 0x0800027a 0x0800027a 0x00000004 Code RO 3768 .ARM.Collect$$libinit$$0000000D c_w.l(libinit2.o) + 0x0800027e 0x0800027e 0x00000000 Code RO 3769 .ARM.Collect$$libinit$$0000000E c_w.l(libinit2.o) + 0x0800027e 0x0800027e 0x00000006 Code RO 3770 .ARM.Collect$$libinit$$0000000F c_w.l(libinit2.o) + 0x08000284 0x08000284 0x00000000 Code RO 3772 .ARM.Collect$$libinit$$00000011 c_w.l(libinit2.o) + 0x08000284 0x08000284 0x00000000 Code RO 3774 .ARM.Collect$$libinit$$00000013 c_w.l(libinit2.o) + 0x08000284 0x08000284 0x00000000 Code RO 3776 .ARM.Collect$$libinit$$00000015 c_w.l(libinit2.o) + 0x08000284 0x08000284 0x0000000a Code RO 3777 .ARM.Collect$$libinit$$00000016 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3778 .ARM.Collect$$libinit$$00000017 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3780 .ARM.Collect$$libinit$$00000019 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3782 .ARM.Collect$$libinit$$0000001B c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3784 .ARM.Collect$$libinit$$0000001D c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3786 .ARM.Collect$$libinit$$0000001F c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3788 .ARM.Collect$$libinit$$00000021 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3790 .ARM.Collect$$libinit$$00000023 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3792 .ARM.Collect$$libinit$$00000025 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3796 .ARM.Collect$$libinit$$0000002C c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3798 .ARM.Collect$$libinit$$0000002E c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3800 .ARM.Collect$$libinit$$00000030 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000000 Code RO 3802 .ARM.Collect$$libinit$$00000032 c_w.l(libinit2.o) + 0x0800028e 0x0800028e 0x00000002 Code RO 3803 .ARM.Collect$$libinit$$00000033 c_w.l(libinit2.o) + 0x08000290 0x08000290 0x00000002 Code RO 4026 .ARM.Collect$$libshutdown$$00000000 c_w.l(libshutdown.o) + 0x08000292 0x08000292 0x00000000 Code RO 4042 .ARM.Collect$$libshutdown$$00000002 c_w.l(libshutdown2.o) + 0x08000292 0x08000292 0x00000000 Code RO 4044 .ARM.Collect$$libshutdown$$00000004 c_w.l(libshutdown2.o) + 0x08000292 0x08000292 0x00000000 Code RO 4047 .ARM.Collect$$libshutdown$$00000007 c_w.l(libshutdown2.o) + 0x08000292 0x08000292 0x00000000 Code RO 4050 .ARM.Collect$$libshutdown$$0000000A c_w.l(libshutdown2.o) + 0x08000292 0x08000292 0x00000000 Code RO 4052 .ARM.Collect$$libshutdown$$0000000C c_w.l(libshutdown2.o) + 0x08000292 0x08000292 0x00000000 Code RO 4055 .ARM.Collect$$libshutdown$$0000000F c_w.l(libshutdown2.o) + 0x08000292 0x08000292 0x00000002 Code RO 4056 .ARM.Collect$$libshutdown$$00000010 c_w.l(libshutdown2.o) + 0x08000294 0x08000294 0x00000000 Code RO 3737 .ARM.Collect$$rtentry$$00000000 c_w.l(__rtentry.o) + 0x08000294 0x08000294 0x00000000 Code RO 3879 .ARM.Collect$$rtentry$$00000002 c_w.l(__rtentry2.o) + 0x08000294 0x08000294 0x00000006 Code RO 3891 .ARM.Collect$$rtentry$$00000004 c_w.l(__rtentry4.o) + 0x0800029a 0x0800029a 0x00000000 Code RO 3881 .ARM.Collect$$rtentry$$00000009 c_w.l(__rtentry2.o) + 0x0800029a 0x0800029a 0x00000004 Code RO 3882 .ARM.Collect$$rtentry$$0000000A c_w.l(__rtentry2.o) + 0x0800029e 0x0800029e 0x00000000 Code RO 3884 .ARM.Collect$$rtentry$$0000000C c_w.l(__rtentry2.o) + 0x0800029e 0x0800029e 0x00000008 Code RO 3885 .ARM.Collect$$rtentry$$0000000D c_w.l(__rtentry2.o) + 0x080002a6 0x080002a6 0x00000002 Code RO 3982 .ARM.Collect$$rtexit$$00000000 c_w.l(rtexit.o) + 0x080002a8 0x080002a8 0x00000000 Code RO 4006 .ARM.Collect$$rtexit$$00000002 c_w.l(rtexit2.o) + 0x080002a8 0x080002a8 0x00000004 Code RO 4007 .ARM.Collect$$rtexit$$00000003 c_w.l(rtexit2.o) + 0x080002ac 0x080002ac 0x00000006 Code RO 4008 .ARM.Collect$$rtexit$$00000004 c_w.l(rtexit2.o) + 0x080002b2 0x080002b2 0x00000002 PAD + 0x080002b4 0x080002b4 0x00000040 Code RO 4 .text startup_stm32f407xx.o + 0x080002f4 0x080002f4 0x000000f0 Code RO 3587 .text c_w.l(lludivv7m.o) + 0x080003e4 0x080003e4 0x0000002c Code RO 3589 .text c_w.l(__2sprintf.o) + 0x08000410 0x08000410 0x00000038 Code RO 3591 .text c_w.l(__2snprintf.o) + 0x08000448 0x08000448 0x00000052 Code RO 3599 .text c_w.l(_printf_str.o) + 0x0800049a 0x0800049a 0x00000002 PAD + 0x0800049c 0x0800049c 0x00000078 Code RO 3601 .text c_w.l(_printf_dec.o) + 0x08000514 0x08000514 0x0000010e Code RO 3611 .text c_w.l(__printf_wp.o) + 0x08000622 0x08000622 0x00000002 PAD + 0x08000624 0x08000624 0x0000003c Code RO 3629 .text c_w.l(rand.o) + 0x08000660 0x08000660 0x0000003e Code RO 3635 .text c_w.l(strlen.o) + 0x0800069e 0x0800069e 0x0000008a Code RO 3639 .text c_w.l(rt_memcpy_v6.o) + 0x08000728 0x08000728 0x00000064 Code RO 3641 .text c_w.l(rt_memcpy_w.o) + 0x0800078c 0x0800078c 0x00000010 Code RO 3645 .text c_w.l(aeabi_memset4.o) + 0x0800079c 0x0800079c 0x0000004e Code RO 3649 .text c_w.l(rt_memclr_w.o) + 0x080007ea 0x080007ea 0x00000006 Code RO 3653 .text c_w.l(heapauxi.o) + 0x080007f0 0x080007f0 0x00000016 Code RO 3742 .text c_w.l(_rserrno.o) + 0x08000806 0x08000806 0x000000b2 Code RO 3744 .text c_w.l(_printf_intcommon.o) + 0x080008b8 0x080008b8 0x0000041c Code RO 3746 .text c_w.l(_printf_fp_dec.o) + 0x08000cd4 0x08000cd4 0x00000030 Code RO 3750 .text c_w.l(_printf_char_common.o) + 0x08000d04 0x08000d04 0x0000000a Code RO 3752 .text c_w.l(_sputc.o) + 0x08000d0e 0x08000d0e 0x00000010 Code RO 3754 .text c_w.l(_snputc.o) + 0x08000d1e 0x08000d1e 0x0000002c Code RO 3756 .text c_w.l(_printf_char.o) + 0x08000d4a 0x08000d4a 0x00000002 PAD + 0x08000d4c 0x08000d4c 0x00000008 Code RO 3898 .text c_w.l(rt_locale_intlibspace.o) + 0x08000d54 0x08000d54 0x00000008 Code RO 3903 .text c_w.l(rt_errno_addr_intlibspace.o) + 0x08000d5c 0x08000d5c 0x0000008a Code RO 3905 .text c_w.l(lludiv10.o) + 0x08000de6 0x08000de6 0x00000002 PAD + 0x08000de8 0x08000de8 0x00000080 Code RO 3907 .text c_w.l(_printf_fp_infnan.o) + 0x08000e68 0x08000e68 0x000000e4 Code RO 3911 .text c_w.l(bigflt0.o) + 0x08000f4c 0x08000f4c 0x00000008 Code RO 3953 .text c_w.l(libspace.o) + 0x08000f54 0x08000f54 0x0000004a Code RO 3956 .text c_w.l(sys_stackheap_outer.o) + 0x08000f9e 0x08000f9e 0x00000012 Code RO 3960 .text c_w.l(exit.o) + 0x08000fb0 0x08000fb0 0x0000007c Code RO 3966 .text c_w.l(strcmpv7em.o) + 0x0800102c 0x0800102c 0x0000000c Code RO 3998 .text c_w.l(sys_exit.o) + 0x08001038 0x08001038 0x00000002 Code RO 4002 .text c_w.l(use_no_semi.o) + 0x0800103a 0x0800103a 0x00000000 Code RO 4004 .text c_w.l(indicate_semi.o) + 0x0800103a 0x0800103a 0x00000002 PAD + 0x0800103c 0x0800103c 0x000000dc Code RO 2556 .text.AHRS_GetEulr ahrs.o + 0x08001118 0x08001118 0x00000184 Code RO 2550 .text.AHRS_Init ahrs.o + 0x0800129c 0x0800129c 0x0000000a Code RO 2560 .text.AHRS_ResetEulr ahrs.o + 0x080012a6 0x080012a6 0x00000002 PAD + 0x080012a8 0x080012a8 0x0000058e Code RO 2552 .text.AHRS_Update ahrs.o + 0x08001836 0x08001836 0x00000002 PAD + 0x08001838 0x08001838 0x000002f0 Code RO 2554 .text.AHRS_UpdateIMU ahrs.o + 0x08001b28 0x08001b28 0x00000022 Code RO 2745 .text.AbsClip user_math.o + 0x08001b4a 0x08001b4a 0x00000002 PAD + 0x08001b4c 0x08001b4c 0x00000014 Code RO 2832 .text.BMI088_AcclIntCallback bmi088.o + 0x08001b60 0x08001b60 0x00000018 Code RO 2840 .text.BMI088_AcclStartDmaRecv bmi088.o + 0x08001b78 0x08001b78 0x00000010 Code RO 2844 .text.BMI088_AcclWaitDmaCplt bmi088.o + 0x08001b88 0x08001b88 0x0000000c Code RO 2854 .text.BMI088_GetUpdateFreq bmi088.o + 0x08001b94 0x08001b94 0x00000014 Code RO 2834 .text.BMI088_GyroIntCallback bmi088.o + 0x08001ba8 0x08001ba8 0x0000001a Code RO 2846 .text.BMI088_GyroStartDmaRecv bmi088.o + 0x08001bc2 0x08001bc2 0x00000002 PAD + 0x08001bc4 0x08001bc4 0x00000010 Code RO 2848 .text.BMI088_GyroWaitDmaCplt bmi088.o + 0x08001bd4 0x08001bd4 0x00000142 Code RO 2824 .text.BMI088_Init bmi088.o + 0x08001d16 0x08001d16 0x00000002 PAD + 0x08001d18 0x08001d18 0x00000094 Code RO 2850 .text.BMI088_ParseAccl bmi088.o + 0x08001dac 0x08001dac 0x00000084 Code RO 2852 .text.BMI088_ParseGyro bmi088.o + 0x08001e30 0x08001e30 0x00000040 Code RO 2830 .text.BMI088_RxCpltCallback bmi088.o + 0x08001e70 0x08001e70 0x00000010 Code RO 2838 .text.BMI088_WaitNew bmi088.o + 0x08001e80 0x08001e80 0x0000004a Code RO 2842 .text.BMI_Read bmi088.o + 0x08001eca 0x08001eca 0x00000002 PAD + 0x08001ecc 0x08001ecc 0x0000006c Code RO 2828 .text.BMI_ReadSingle bmi088.o + 0x08001f38 0x08001f38 0x00000054 Code RO 2826 .text.BMI_WriteSingle bmi088.o + 0x08001f8c 0x08001f8c 0x00000092 Code RO 2277 .text.BSP_CAN_CreateIdQueue can_1.o + 0x0800201e 0x0800201e 0x00000002 PAD + 0x08002020 0x08002020 0x00000002 Code RO 2253 .text.BSP_CAN_DefaultIdParser can_1.o + 0x08002022 0x08002022 0x00000002 PAD + 0x08002024 0x08002024 0x00000026 Code RO 2281 .text.BSP_CAN_FindQueue can_1.o + 0x0800204a 0x0800204a 0x00000002 PAD + 0x0800204c 0x0800204c 0x0000001a Code RO 2291 .text.BSP_CAN_GetFrameType can_1.o + 0x08002066 0x08002066 0x00000002 PAD + 0x08002068 0x08002068 0x00000026 Code RO 2263 .text.BSP_CAN_GetHandle can_1.o + 0x0800208e 0x0800208e 0x00000002 PAD + 0x08002090 0x08002090 0x00000080 Code RO 2279 .text.BSP_CAN_GetMessage can_1.o + 0x08002110 0x08002110 0x00000134 Code RO 2249 .text.BSP_CAN_Init can_1.o + 0x08002244 0x08002244 0x00000014 Code RO 2289 .text.BSP_CAN_ParseId can_1.o + 0x08002258 0x08002258 0x00000044 Code RO 2255 .text.BSP_CAN_RegisterCallback can_1.o + 0x0800229c 0x0800229c 0x0000001e Code RO 2275 .text.BSP_CAN_RegisterId can_1.o + 0x080022ba 0x080022ba 0x00000002 PAD + 0x080022bc 0x080022bc 0x000000c2 Code RO 2257 .text.BSP_CAN_RxFifo0Callback can_1.o + 0x0800237e 0x0800237e 0x00000002 PAD + 0x08002380 0x08002380 0x000000c2 Code RO 2261 .text.BSP_CAN_RxFifo1Callback can_1.o + 0x08002442 0x08002442 0x00000002 PAD + 0x08002444 0x08002444 0x000000e2 Code RO 2265 .text.BSP_CAN_Transmit can_1.o + 0x08002526 0x08002526 0x00000002 PAD + 0x08002528 0x08002528 0x00000028 Code RO 2269 .text.BSP_CAN_TransmitStdDataFrame can_1.o + 0x08002550 0x08002550 0x00000064 Code RO 2259 .text.BSP_CAN_TxCompleteCallback can_1.o + 0x080025b4 0x080025b4 0x0000001c Code RO 2251 .text.BSP_CAN_TxQueueInit can_1.o + 0x080025d0 0x080025d0 0x00000022 Code RO 2293 .text.BSP_CAN_TxQueueIsEmpty can_1.o + 0x080025f2 0x080025f2 0x00000002 PAD + 0x080025f4 0x080025f4 0x00000074 Code RO 2295 .text.BSP_CAN_TxQueuePop can_1.o + 0x08002668 0x08002668 0x0000007e Code RO 2267 .text.BSP_CAN_TxQueuePush can_1.o + 0x080026e6 0x080026e6 0x00000002 PAD + 0x080026e8 0x080026e8 0x00000008 Code RO 2415 .text.BSP_Free mm.o + 0x080026f0 0x080026f0 0x00000032 Code RO 2350 .text.BSP_GPIO_DisableIRQ gpio_1.o + 0x08002722 0x08002722 0x00000002 PAD + 0x08002724 0x08002724 0x00000032 Code RO 2348 .text.BSP_GPIO_EnableIRQ gpio_1.o + 0x08002756 0x08002756 0x00000002 PAD + 0x08002758 0x08002758 0x0000002c Code RO 2356 .text.BSP_GPIO_ReadPin gpio_1.o + 0x08002784 0x08002784 0x0000004a Code RO 2346 .text.BSP_GPIO_RegisterCallback gpio_1.o + 0x080027ce 0x080027ce 0x00000002 PAD + 0x080027d0 0x080027d0 0x00000030 Code RO 2352 .text.BSP_GPIO_WritePin gpio_1.o + 0x08002800 0x08002800 0x00000008 Code RO 2413 .text.BSP_Malloc mm.o + 0x08002808 0x08002808 0x00000060 Code RO 2525 .text.BSP_PWM_SetComp pwm.o + 0x08002868 0x08002868 0x0000002c Code RO 2523 .text.BSP_PWM_Start pwm.o + 0x08002894 0x08002894 0x00000012 Code RO 2443 .text.BSP_SPI_GetHandle spi_1.o + 0x080028a6 0x080028a6 0x00000002 PAD + 0x080028a8 0x080028a8 0x00000034 Code RO 2449 .text.BSP_SPI_Receive spi_1.o + 0x080028dc 0x080028dc 0x0000001e Code RO 2445 .text.BSP_SPI_RegisterCallback spi_1.o + 0x080028fa 0x080028fa 0x00000002 PAD + 0x080028fc 0x080028fc 0x00000034 Code RO 2447 .text.BSP_SPI_Transmit spi_1.o + 0x08002930 0x08002930 0x00000058 Code RO 2474 .text.BSP_TIME_Delay_ms time.o + 0x08002988 0x08002988 0x00000050 Code RO 2472 .text.BSP_TIME_Get_us time.o + 0x080029d8 0x080029d8 0x00000020 Code RO 2506 .text.BSP_UART_GetHandle uart.o + 0x080029f8 0x080029f8 0x0000003a Code RO 2504 .text.BSP_UART_IRQHandler uart.o + 0x08002a32 0x08002a32 0x00000002 PAD + 0x08002a34 0x08002a34 0x00000032 Code RO 2508 .text.BSP_UART_RegisterCallback uart.o + 0x08002a66 0x08002a66 0x00000002 PAD + 0x08002a68 0x08002a68 0x00000040 Code RO 2510 .text.BSP_UART_Transmit uart.o + 0x08002aa8 0x08002aa8 0x00000002 Code RO 170 .text.BusFault_Handler stm32f4xx_it.o + 0x08002aaa 0x08002aaa 0x00000002 PAD + 0x08002aac 0x08002aac 0x00000010 Code RO 188 .text.CAN1_RX0_IRQHandler stm32f4xx_it.o + 0x08002abc 0x08002abc 0x00000010 Code RO 190 .text.CAN1_RX1_IRQHandler stm32f4xx_it.o + 0x08002acc 0x08002acc 0x00000010 Code RO 186 .text.CAN1_TX_IRQHandler stm32f4xx_it.o + 0x08002adc 0x08002adc 0x00000010 Code RO 208 .text.CAN2_RX0_IRQHandler stm32f4xx_it.o + 0x08002aec 0x08002aec 0x00000010 Code RO 210 .text.CAN2_RX1_IRQHandler stm32f4xx_it.o + 0x08002afc 0x08002afc 0x00000010 Code RO 206 .text.CAN2_TX_IRQHandler stm32f4xx_it.o + 0x08002b0c 0x08002b0c 0x00000024 Code RO 2223 .text.CAN_Get can_1.o + 0x08002b30 0x08002b30 0x00000034 Code RO 3531 .text.CMD_Adapter_GetInput cmd_adapter.o + 0x08002b64 0x08002b64 0x0000003a Code RO 3529 .text.CMD_Adapter_InitAll cmd_adapter.o + 0x08002b9e 0x08002b9e 0x00000002 PAD + 0x08002ba0 0x08002ba0 0x00000020 Code RO 3527 .text.CMD_Adapter_Register cmd_adapter.o + 0x08002bc0 0x08002bc0 0x00000064 Code RO 3504 .text.CMD_Arbitrate cmd_1.o + 0x08002c24 0x08002c24 0x00000024 Code RO 3554 .text.CMD_Behavior_Handle_ACCELERATE cmd_behavior.o + 0x08002c48 0x08002c48 0x00000004 Code RO 3564 .text.CMD_Behavior_Handle_AUTOAIM cmd_behavior.o + 0x08002c4c 0x08002c4c 0x00000018 Code RO 3548 .text.CMD_Behavior_Handle_BACK cmd_behavior.o + 0x08002c64 0x08002c64 0x00000024 Code RO 3566 .text.CMD_Behavior_Handle_CHECKSOURCERCPC cmd_behavior.o + 0x08002c88 0x08002c88 0x00000024 Code RO 3556 .text.CMD_Behavior_Handle_DECELERATE cmd_behavior.o + 0x08002cac 0x08002cac 0x0000000c Code RO 3558 .text.CMD_Behavior_Handle_FIRE cmd_behavior.o + 0x08002cb8 0x08002cb8 0x00000014 Code RO 3560 .text.CMD_Behavior_Handle_FIRE_MODE cmd_behavior.o + 0x08002ccc 0x08002ccc 0x00000018 Code RO 3546 .text.CMD_Behavior_Handle_FORE cmd_behavior.o + 0x08002ce4 0x08002ce4 0x00000018 Code RO 3550 .text.CMD_Behavior_Handle_LEFT cmd_behavior.o + 0x08002cfc 0x08002cfc 0x00000018 Code RO 3552 .text.CMD_Behavior_Handle_RIGHT cmd_behavior.o + 0x08002d14 0x08002d14 0x00000012 Code RO 3562 .text.CMD_Behavior_Handle_ROTOR cmd_behavior.o + 0x08002d26 0x08002d26 0x00000002 PAD + 0x08002d28 0x08002d28 0x00000004 Code RO 3568 .text.CMD_Behavior_Init cmd_behavior.o + 0x08002d2c 0x08002d2c 0x000000cc Code RO 3570 .text.CMD_Behavior_IsTriggered cmd_behavior.o + 0x08002df8 0x08002df8 0x00000052 Code RO 3572 .text.CMD_Behavior_ProcessAll cmd_behavior.o + 0x08002e4a 0x08002e4a 0x00000002 PAD + 0x08002e4c 0x08002e4c 0x000000f4 Code RO 3523 .text.CMD_ET16s_GetInput cmd_adapter.o + 0x08002f40 0x08002f40 0x00000008 Code RO 3521 .text.CMD_ET16s_Init cmd_adapter.o + 0x08002f48 0x08002f48 0x00000006 Code RO 3525 .text.CMD_ET16s_IsOnline cmd_adapter.o + 0x08002f4e 0x08002f4e 0x00000002 PAD + 0x08002f50 0x08002f50 0x00000098 Code RO 3506 .text.CMD_GenerateCommands cmd_1.o + 0x08002fe8 0x08002fe8 0x00000028 Code RO 3488 .text.CMD_Init cmd_1.o + 0x08003010 0x08003010 0x0000002a Code RO 3498 .text.CMD_PC_BuildChassisCmd cmd_1.o + 0x0800303a 0x0800303a 0x00000002 PAD + 0x0800303c 0x0800303c 0x00000068 Code RO 3500 .text.CMD_PC_BuildGimbalCmd cmd_1.o + 0x080030a4 0x080030a4 0x0000002c Code RO 3502 .text.CMD_PC_BuildShootCmd cmd_1.o + 0x080030d0 0x080030d0 0x0000003a Code RO 3492 .text.CMD_RC_BuildChassisCmd cmd_1.o + 0x0800310a 0x0800310a 0x00000002 PAD + 0x0800310c 0x0800310c 0x00000048 Code RO 3494 .text.CMD_RC_BuildGimbalCmd cmd_1.o + 0x08003154 0x08003154 0x0000005e Code RO 3496 .text.CMD_RC_BuildShootCmd cmd_1.o + 0x080031b2 0x080031b2 0x00000002 PAD + 0x080031b4 0x080031b4 0x00000012 Code RO 3508 .text.CMD_SetOfflineMode cmd_1.o + 0x080031c6 0x080031c6 0x00000002 PAD + 0x080031c8 0x080031c8 0x0000001c Code RO 3510 .text.CMD_Update cmd_1.o + 0x080031e4 0x080031e4 0x00000068 Code RO 3490 .text.CMD_UpdateInput cmd_1.o + 0x0800324c 0x0800324c 0x00000004 PAD + 0x08003250 0x08003250 0x0000006c Code RO 3326 .text.Chassis_CalcWz chassis.o + 0x080032bc 0x080032bc 0x00000238 Code RO 3322 .text.Chassis_Control chassis.o + 0x080034f4 0x080034f4 0x00000078 Code RO 3324 .text.Chassis_SetMode chassis.o + 0x0800356c 0x0800356c 0x0000006a Code RO 3328 .text.Chassis_Setoutput chassis.o + 0x080035d6 0x080035d6 0x00000002 PAD + 0x080035d8 0x080035d8 0x000005f0 Code RO 3316 .text.Chassis_speed_calculate chassis.o + 0x08003bc8 0x08003bc8 0x000001a4 Code RO 3318 .text.Chassis_update chassis.o + 0x08003d6c 0x08003d6c 0x0000003a Code RO 2757 .text.CircleAdd user_math.o + 0x08003da6 0x08003da6 0x00000002 PAD + 0x08003da8 0x08003da8 0x0000003c Code RO 2755 .text.CircleError user_math.o + 0x08003de4 0x08003de4 0x00000026 Code RO 2749 .text.Clip user_math.o + 0x08003e0a 0x08003e0a 0x00000002 PAD + 0x08003e0c 0x08003e0c 0x0000000a Code RO 3241 .text.Config_GetRobotParam config.o + 0x08003e16 0x08003e16 0x00000002 PAD + 0x08003e18 0x08003e18 0x00000010 Code RO 184 .text.DMA1_Stream1_IRQHandler stm32f4xx_it.o + 0x08003e28 0x08003e28 0x00000010 Code RO 200 .text.DMA2_Stream1_IRQHandler stm32f4xx_it.o + 0x08003e38 0x08003e38 0x00000010 Code RO 202 .text.DMA2_Stream2_IRQHandler stm32f4xx_it.o + 0x08003e48 0x08003e48 0x00000010 Code RO 204 .text.DMA2_Stream3_IRQHandler stm32f4xx_it.o + 0x08003e58 0x08003e58 0x00000010 Code RO 212 .text.DMA2_Stream6_IRQHandler stm32f4xx_it.o + 0x08003e68 0x08003e68 0x0000003c Code RO 496 .text.DMA_CalcBaseAndBitshift stm32f4xx_hal_dma.o + 0x08003ea4 0x08003ea4 0x00000050 Code RO 494 .text.DMA_CheckFifoParam stm32f4xx_hal_dma.o + 0x08003ef4 0x08003ef4 0x00000030 Code RO 502 .text.DMA_SetConfig stm32f4xx_hal_dma.o + 0x08003f24 0x08003f24 0x00000046 Code RO 3106 .text.DR16_Init dr16.o + 0x08003f6a 0x08003f6a 0x00000002 PAD + 0x08003f6c 0x08003f6c 0x00000014 Code RO 3108 .text.DR16_RxCpltCallback dr16.o + 0x08003f80 0x08003f80 0x00000002 Code RO 174 .text.DebugMon_Handler stm32f4xx_it.o + 0x08003f82 0x08003f82 0x00000002 PAD + 0x08003f84 0x08003f84 0x00000092 Code RO 3092 .text.ET16S_ParseRC et16s.o + 0x08004016 0x08004016 0x00000002 PAD + 0x08004018 0x08004018 0x00000036 Code RO 3094 .text.ET16s_HandleOffline et16s.o 0x0800404e 0x0800404e 0x00000002 PAD - 0x08004050 0x08004050 0x0000004e Code RO 3252 .text.Gimbal_UpdateIMU gimbal.o - 0x0800409e 0x0800409e 0x00000002 PAD - 0x080040a0 0x080040a0 0x00000026 Code RO 266 .text.HAL_CAN_ActivateNotification stm32f4xx_hal_can.o - 0x080040c6 0x080040c6 0x00000002 PAD - 0x080040c8 0x080040c8 0x00000092 Code RO 252 .text.HAL_CAN_AddTxMessage stm32f4xx_hal_can.o - 0x0800415a 0x0800415a 0x00000002 PAD - 0x0800415c 0x0800415c 0x000000de Code RO 242 .text.HAL_CAN_ConfigFilter stm32f4xx_hal_can.o - 0x0800423a 0x0800423a 0x00000002 PAD - 0x0800423c 0x0800423c 0x00000024 Code RO 2247 .text.HAL_CAN_ErrorCallback can_1.o - 0x08004260 0x08004260 0x00000020 Code RO 264 .text.HAL_CAN_GetRxFifoFillLevel stm32f4xx_hal_can.o - 0x08004280 0x08004280 0x00000124 Code RO 262 .text.HAL_CAN_GetRxMessage stm32f4xx_hal_can.o - 0x080043a4 0x080043a4 0x00000028 Code RO 256 .text.HAL_CAN_GetTxMailboxesFreeLevel stm32f4xx_hal_can.o - 0x080043cc 0x080043cc 0x0000023a Code RO 270 .text.HAL_CAN_IRQHandler stm32f4xx_hal_can.o - 0x08004606 0x08004606 0x00000002 PAD - 0x08004608 0x08004608 0x000000f4 Code RO 232 .text.HAL_CAN_Init stm32f4xx_hal_can.o - 0x080046fc 0x080046fc 0x0000014a Code RO 58 .text.HAL_CAN_MspInit can.o - 0x08004846 0x08004846 0x00000002 PAD - 0x08004848 0x08004848 0x00000024 Code RO 2237 .text.HAL_CAN_RxFifo0FullCallback can_1.o - 0x0800486c 0x0800486c 0x00000024 Code RO 2235 .text.HAL_CAN_RxFifo0MsgPendingCallback can_1.o - 0x08004890 0x08004890 0x00000024 Code RO 2241 .text.HAL_CAN_RxFifo1FullCallback can_1.o - 0x080048b4 0x080048b4 0x00000024 Code RO 2239 .text.HAL_CAN_RxFifo1MsgPendingCallback can_1.o - 0x080048d8 0x080048d8 0x00000024 Code RO 2243 .text.HAL_CAN_SleepCallback can_1.o - 0x080048fc 0x080048fc 0x0000005a Code RO 244 .text.HAL_CAN_Start stm32f4xx_hal_can.o - 0x08004956 0x08004956 0x00000002 PAD - 0x08004958 0x08004958 0x00000024 Code RO 2229 .text.HAL_CAN_TxMailbox0AbortCallback can_1.o - 0x0800497c 0x0800497c 0x00000022 Code RO 2221 .text.HAL_CAN_TxMailbox0CompleteCallback can_1.o - 0x0800499e 0x0800499e 0x00000002 PAD - 0x080049a0 0x080049a0 0x00000024 Code RO 2231 .text.HAL_CAN_TxMailbox1AbortCallback can_1.o - 0x080049c4 0x080049c4 0x00000024 Code RO 2225 .text.HAL_CAN_TxMailbox1CompleteCallback can_1.o - 0x080049e8 0x080049e8 0x00000024 Code RO 2233 .text.HAL_CAN_TxMailbox2AbortCallback can_1.o - 0x08004a0c 0x08004a0c 0x00000024 Code RO 2227 .text.HAL_CAN_TxMailbox2CompleteCallback can_1.o - 0x08004a30 0x08004a30 0x00000024 Code RO 2245 .text.HAL_CAN_WakeUpFromRxMsgCallback can_1.o - 0x08004a54 0x08004a54 0x00000080 Code RO 506 .text.HAL_DMA_Abort stm32f4xx_hal_dma.o - 0x08004ad4 0x08004ad4 0x00000024 Code RO 508 .text.HAL_DMA_Abort_IT stm32f4xx_hal_dma.o - 0x08004af8 0x08004af8 0x0000018c Code RO 512 .text.HAL_DMA_IRQHandler stm32f4xx_hal_dma.o - 0x08004c84 0x08004c84 0x000000ce Code RO 492 .text.HAL_DMA_Init stm32f4xx_hal_dma.o - 0x08004d52 0x08004d52 0x00000002 PAD - 0x08004d54 0x08004d54 0x00000062 Code RO 504 .text.HAL_DMA_Start_IT stm32f4xx_hal_dma.o - 0x08004db6 0x08004db6 0x00000002 PAD - 0x08004db8 0x08004db8 0x00000028 Code RO 690 .text.HAL_Delay stm32f4xx_hal.o - 0x08004de0 0x08004de0 0x0000002c Code RO 2344 .text.HAL_GPIO_EXTI_Callback gpio_1.o - 0x08004e0c 0x08004e0c 0x0000001a Code RO 464 .text.HAL_GPIO_EXTI_IRQHandler stm32f4xx_hal_gpio.o - 0x08004e26 0x08004e26 0x00000002 PAD - 0x08004e28 0x08004e28 0x0000019a Code RO 452 .text.HAL_GPIO_Init stm32f4xx_hal_gpio.o - 0x08004fc2 0x08004fc2 0x00000002 PAD - 0x08004fc4 0x08004fc4 0x0000000a Code RO 456 .text.HAL_GPIO_ReadPin stm32f4xx_hal_gpio.o - 0x08004fce 0x08004fce 0x00000002 PAD - 0x08004fd0 0x08004fd0 0x0000000a Code RO 458 .text.HAL_GPIO_WritePin stm32f4xx_hal_gpio.o - 0x08004fda 0x08004fda 0x00000002 PAD - 0x08004fdc 0x08004fdc 0x0000000c Code RO 682 .text.HAL_GetTick stm32f4xx_hal.o - 0x08004fe8 0x08004fe8 0x00000198 Code RO 761 .text.HAL_I2C_Init stm32f4xx_hal_i2c.o - 0x08005180 0x08005180 0x000000d8 Code RO 86 .text.HAL_I2C_MspInit i2c.o - 0x08005258 0x08005258 0x0000001a Code RO 680 .text.HAL_IncTick stm32f4xx_hal.o - 0x08005272 0x08005272 0x00000002 PAD - 0x08005274 0x08005274 0x00000036 Code RO 670 .text.HAL_Init stm32f4xx_hal.o - 0x080052aa 0x080052aa 0x00000002 PAD - 0x080052ac 0x080052ac 0x00000050 Code RO 672 .text.HAL_InitTick stm32f4xx_hal.o - 0x080052fc 0x080052fc 0x00000046 Code RO 223 .text.HAL_MspInit stm32f4xx_hal_msp.o - 0x08005342 0x08005342 0x00000002 PAD - 0x08005344 0x08005344 0x00000008 Code RO 608 .text.HAL_NVIC_DisableIRQ stm32f4xx_hal_cortex.o - 0x0800534c 0x0800534c 0x00000008 Code RO 604 .text.HAL_NVIC_EnableIRQ stm32f4xx_hal_cortex.o - 0x08005354 0x08005354 0x0000001e Code RO 596 .text.HAL_NVIC_SetPriority stm32f4xx_hal_cortex.o - 0x08005372 0x08005372 0x00000002 PAD - 0x08005374 0x08005374 0x00000008 Code RO 592 .text.HAL_NVIC_SetPriorityGrouping stm32f4xx_hal_cortex.o - 0x0800537c 0x0800537c 0x00000160 Code RO 316 .text.HAL_RCC_ClockConfig stm32f4xx_hal_rcc.o - 0x080054dc 0x080054dc 0x0000000c Code RO 326 .text.HAL_RCC_GetHCLKFreq stm32f4xx_hal_rcc.o - 0x080054e8 0x080054e8 0x00000022 Code RO 328 .text.HAL_RCC_GetPCLK1Freq stm32f4xx_hal_rcc.o - 0x0800550a 0x0800550a 0x00000002 PAD - 0x0800550c 0x0800550c 0x00000022 Code RO 330 .text.HAL_RCC_GetPCLK2Freq stm32f4xx_hal_rcc.o - 0x0800552e 0x0800552e 0x00000002 PAD - 0x08005530 0x08005530 0x00000068 Code RO 318 .text.HAL_RCC_GetSysClockFreq stm32f4xx_hal_rcc.o - 0x08005598 0x08005598 0x00000348 Code RO 314 .text.HAL_RCC_OscConfig stm32f4xx_hal_rcc.o - 0x080058e0 0x080058e0 0x00000022 Code RO 2439 .text.HAL_SPI_ErrorCallback spi_1.o - 0x08005902 0x08005902 0x00000002 PAD - 0x08005904 0x08005904 0x000000b4 Code RO 934 .text.HAL_SPI_Init stm32f4xx_hal_spi.o - 0x080059b8 0x080059b8 0x0000012e Code RO 102 .text.HAL_SPI_MspInit spi.o - 0x08005ae6 0x08005ae6 0x00000002 PAD - 0x08005ae8 0x08005ae8 0x00000172 Code RO 946 .text.HAL_SPI_Receive stm32f4xx_hal_spi.o - 0x08005c5a 0x08005c5a 0x00000002 PAD - 0x08005c5c 0x08005c5c 0x000000ec Code RO 982 .text.HAL_SPI_Receive_DMA stm32f4xx_hal_spi.o - 0x08005d48 0x08005d48 0x00000022 Code RO 2429 .text.HAL_SPI_RxCpltCallback spi_1.o - 0x08005d6a 0x08005d6a 0x00000002 PAD - 0x08005d6c 0x08005d6c 0x00000022 Code RO 2435 .text.HAL_SPI_RxHalfCpltCallback spi_1.o - 0x08005d8e 0x08005d8e 0x00000002 PAD - 0x08005d90 0x08005d90 0x0000018a Code RO 942 .text.HAL_SPI_Transmit stm32f4xx_hal_spi.o - 0x08005f1a 0x08005f1a 0x00000002 PAD - 0x08005f1c 0x08005f1c 0x000001f8 Code RO 948 .text.HAL_SPI_TransmitReceive stm32f4xx_hal_spi.o - 0x08006114 0x08006114 0x00000124 Code RO 984 .text.HAL_SPI_TransmitReceive_DMA stm32f4xx_hal_spi.o - 0x08006238 0x08006238 0x000000cc Code RO 974 .text.HAL_SPI_Transmit_DMA stm32f4xx_hal_spi.o - 0x08006304 0x08006304 0x00000020 Code RO 2425 .text.HAL_SPI_TxCpltCallback spi_1.o - 0x08006324 0x08006324 0x00000022 Code RO 2433 .text.HAL_SPI_TxHalfCpltCallback spi_1.o - 0x08006346 0x08006346 0x00000002 PAD - 0x08006348 0x08006348 0x00000022 Code RO 2431 .text.HAL_SPI_TxRxCpltCallback spi_1.o - 0x0800636a 0x0800636a 0x00000002 PAD - 0x0800636c 0x0800636c 0x00000022 Code RO 2437 .text.HAL_SPI_TxRxHalfCpltCallback spi_1.o - 0x0800638e 0x0800638e 0x00000002 PAD - 0x08006390 0x08006390 0x00000008 Code RO 616 .text.HAL_SYSTICK_Config stm32f4xx_hal_cortex.o - 0x08006398 0x08006398 0x00000002 Code RO 1376 .text.HAL_TIMEx_BreakCallback stm32f4xx_hal_tim_ex.o - 0x0800639a 0x0800639a 0x00000002 PAD - 0x0800639c 0x0800639c 0x00000002 Code RO 1372 .text.HAL_TIMEx_CommutCallback stm32f4xx_hal_tim_ex.o - 0x0800639e 0x0800639e 0x00000002 PAD - 0x080063a0 0x080063a0 0x0000004c Code RO 1368 .text.HAL_TIMEx_ConfigBreakDeadTime stm32f4xx_hal_tim_ex.o - 0x080063ec 0x080063ec 0x000000b8 Code RO 1366 .text.HAL_TIMEx_MasterConfigSynchronization stm32f4xx_hal_tim_ex.o - 0x080064a4 0x080064a4 0x0000005a Code RO 1052 .text.HAL_TIM_Base_Init stm32f4xx_hal_tim.o - 0x080064fe 0x080064fe 0x00000002 PAD - 0x08006500 0x08006500 0x00000072 Code RO 123 .text.HAL_TIM_Base_MspInit tim.o - 0x08006572 0x08006572 0x00000002 PAD - 0x08006574 0x08006574 0x000000de Code RO 1244 .text.HAL_TIM_ConfigClockSource stm32f4xx_hal_tim.o - 0x08006652 0x08006652 0x00000002 PAD - 0x08006654 0x08006654 0x00000002 Code RO 1188 .text.HAL_TIM_IC_CaptureCallback stm32f4xx_hal_tim.o - 0x08006656 0x08006656 0x00000002 PAD - 0x08006658 0x08006658 0x00000134 Code RO 1186 .text.HAL_TIM_IRQHandler stm32f4xx_hal_tim.o - 0x0800678c 0x0800678c 0x0000009a Code RO 119 .text.HAL_TIM_MspPostInit tim.o - 0x08006826 0x08006826 0x00000002 PAD - 0x08006828 0x08006828 0x00000002 Code RO 1190 .text.HAL_TIM_OC_DelayElapsedCallback stm32f4xx_hal_tim.o - 0x0800682a 0x0800682a 0x00000002 PAD - 0x0800682c 0x0800682c 0x00000098 Code RO 1218 .text.HAL_TIM_PWM_ConfigChannel stm32f4xx_hal_tim.o - 0x080068c4 0x080068c4 0x0000005a Code RO 1106 .text.HAL_TIM_PWM_Init stm32f4xx_hal_tim.o - 0x0800691e 0x0800691e 0x00000002 PAD - 0x08006920 0x08006920 0x00000002 Code RO 1108 .text.HAL_TIM_PWM_MspInit stm32f4xx_hal_tim.o - 0x08006922 0x08006922 0x00000002 PAD - 0x08006924 0x08006924 0x00000002 Code RO 1192 .text.HAL_TIM_PWM_PulseFinishedCallback stm32f4xx_hal_tim.o - 0x08006926 0x08006926 0x00000002 PAD - 0x08006928 0x08006928 0x00000122 Code RO 1114 .text.HAL_TIM_PWM_Start stm32f4xx_hal_tim.o - 0x08006a4a 0x08006a4a 0x00000002 PAD - 0x08006a4c 0x08006a4c 0x00000002 Code RO 1194 .text.HAL_TIM_PeriodElapsedCallback stm32f4xx_hal_tim.o - 0x08006a4e 0x08006a4e 0x00000002 PAD - 0x08006a50 0x08006a50 0x00000002 Code RO 1196 .text.HAL_TIM_TriggerCallback stm32f4xx_hal_tim.o - 0x08006a52 0x08006a52 0x00000002 PAD - 0x08006a54 0x08006a54 0x00000002 Code RO 1482 .text.HAL_UARTEx_RxEventCallback stm32f4xx_hal_uart.o - 0x08006a56 0x08006a56 0x00000002 PAD - 0x08006a58 0x08006a58 0x00000026 Code RO 2496 .text.HAL_UART_ErrorCallback uart.o - 0x08006a7e 0x08006a7e 0x00000002 PAD - 0x08006a80 0x08006a80 0x0000025a Code RO 1474 .text.HAL_UART_IRQHandler stm32f4xx_hal_uart.o - 0x08006cda 0x08006cda 0x00000002 PAD - 0x08006cdc 0x08006cdc 0x00000060 Code RO 1390 .text.HAL_UART_Init stm32f4xx_hal_uart.o - 0x08006d3c 0x08006d3c 0x000002da Code RO 145 .text.HAL_UART_MspInit usart.o - 0x08007016 0x08007016 0x00000002 PAD - 0x08007018 0x08007018 0x0000002c Code RO 1426 .text.HAL_UART_Receive_DMA stm32f4xx_hal_uart.o - 0x08007044 0x08007044 0x00000026 Code RO 2492 .text.HAL_UART_RxCpltCallback uart.o - 0x0800706a 0x0800706a 0x00000002 PAD - 0x0800706c 0x0800706c 0x00000026 Code RO 2494 .text.HAL_UART_RxHalfCpltCallback uart.o - 0x08007092 0x08007092 0x00000002 PAD - 0x08007094 0x08007094 0x0000008c Code RO 1418 .text.HAL_UART_Transmit_DMA stm32f4xx_hal_uart.o - 0x08007120 0x08007120 0x00000038 Code RO 1412 .text.HAL_UART_Transmit_IT stm32f4xx_hal_uart.o - 0x08007158 0x08007158 0x00000026 Code RO 2486 .text.HAL_UART_TxCpltCallback uart.o - 0x0800717e 0x0800717e 0x00000002 PAD - 0x08007180 0x08007180 0x00000024 Code RO 2490 .text.HAL_UART_TxHalfCpltCallback uart.o - 0x080071a4 0x080071a4 0x00000002 Code RO 166 .text.HardFault_Handler stm32f4xx_it.o - 0x080071a6 0x080071a6 0x00000002 PAD - 0x080071a8 0x080071a8 0x00000042 Code RO 2743 .text.InvSqrt user_math.o + 0x08004050 0x08004050 0x00000268 Code RO 3090 .text.ET16s_ParseRaw et16s.o + 0x080042b8 0x080042b8 0x0000000a Code RO 178 .text.EXTI0_IRQHandler stm32f4xx_it.o + 0x080042c2 0x080042c2 0x00000002 PAD + 0x080042c4 0x080042c4 0x0000000a Code RO 180 .text.EXTI3_IRQHandler stm32f4xx_it.o + 0x080042ce 0x080042ce 0x00000002 PAD + 0x080042d0 0x080042d0 0x0000000a Code RO 182 .text.EXTI4_IRQHandler stm32f4xx_it.o + 0x080042da 0x080042da 0x00000002 PAD + 0x080042dc 0x080042dc 0x0000000a Code RO 192 .text.EXTI9_5_IRQHandler stm32f4xx_it.o + 0x080042e6 0x080042e6 0x00000002 PAD + 0x080042e8 0x080042e8 0x00000006 Code RO 15 .text.Error_Handler main.o + 0x080042ee 0x080042ee 0x00000002 PAD + 0x080042f0 0x080042f0 0x000003a0 Code RO 3262 .text.Gimbal_Control gimbal.o + 0x08004690 0x08004690 0x00000058 Code RO 3260 .text.Gimbal_Control_mode gimbal.o + 0x080046e8 0x080046e8 0x000000a4 Code RO 3256 .text.Gimbal_Direction gimbal.o + 0x0800478c 0x0800478c 0x00000156 Code RO 3250 .text.Gimbal_Init gimbal.o + 0x080048e2 0x080048e2 0x00000002 PAD + 0x080048e4 0x080048e4 0x0000011c Code RO 3268 .text.Gimbal_Output gimbal.o + 0x08004a00 0x08004a00 0x00000088 Code RO 3264 .text.Gimbal_SetMode gimbal.o + 0x08004a88 0x08004a88 0x0000011e Code RO 3252 .text.Gimbal_UpdateFeedback gimbal.o + 0x08004ba6 0x08004ba6 0x00000002 PAD + 0x08004ba8 0x08004ba8 0x0000004e Code RO 3254 .text.Gimbal_UpdateIMU gimbal.o + 0x08004bf6 0x08004bf6 0x00000002 PAD + 0x08004bf8 0x08004bf8 0x00000026 Code RO 266 .text.HAL_CAN_ActivateNotification stm32f4xx_hal_can.o + 0x08004c1e 0x08004c1e 0x00000002 PAD + 0x08004c20 0x08004c20 0x00000092 Code RO 252 .text.HAL_CAN_AddTxMessage stm32f4xx_hal_can.o + 0x08004cb2 0x08004cb2 0x00000002 PAD + 0x08004cb4 0x08004cb4 0x000000de Code RO 242 .text.HAL_CAN_ConfigFilter stm32f4xx_hal_can.o + 0x08004d92 0x08004d92 0x00000002 PAD + 0x08004d94 0x08004d94 0x00000024 Code RO 2247 .text.HAL_CAN_ErrorCallback can_1.o + 0x08004db8 0x08004db8 0x00000020 Code RO 264 .text.HAL_CAN_GetRxFifoFillLevel stm32f4xx_hal_can.o + 0x08004dd8 0x08004dd8 0x00000124 Code RO 262 .text.HAL_CAN_GetRxMessage stm32f4xx_hal_can.o + 0x08004efc 0x08004efc 0x00000028 Code RO 256 .text.HAL_CAN_GetTxMailboxesFreeLevel stm32f4xx_hal_can.o + 0x08004f24 0x08004f24 0x0000023a Code RO 270 .text.HAL_CAN_IRQHandler stm32f4xx_hal_can.o + 0x0800515e 0x0800515e 0x00000002 PAD + 0x08005160 0x08005160 0x000000f4 Code RO 232 .text.HAL_CAN_Init stm32f4xx_hal_can.o + 0x08005254 0x08005254 0x00000148 Code RO 58 .text.HAL_CAN_MspInit can.o + 0x0800539c 0x0800539c 0x00000024 Code RO 2237 .text.HAL_CAN_RxFifo0FullCallback can_1.o + 0x080053c0 0x080053c0 0x00000024 Code RO 2235 .text.HAL_CAN_RxFifo0MsgPendingCallback can_1.o + 0x080053e4 0x080053e4 0x00000024 Code RO 2241 .text.HAL_CAN_RxFifo1FullCallback can_1.o + 0x08005408 0x08005408 0x00000024 Code RO 2239 .text.HAL_CAN_RxFifo1MsgPendingCallback can_1.o + 0x0800542c 0x0800542c 0x00000024 Code RO 2243 .text.HAL_CAN_SleepCallback can_1.o + 0x08005450 0x08005450 0x0000005a Code RO 244 .text.HAL_CAN_Start stm32f4xx_hal_can.o + 0x080054aa 0x080054aa 0x00000002 PAD + 0x080054ac 0x080054ac 0x00000024 Code RO 2229 .text.HAL_CAN_TxMailbox0AbortCallback can_1.o + 0x080054d0 0x080054d0 0x00000022 Code RO 2221 .text.HAL_CAN_TxMailbox0CompleteCallback can_1.o + 0x080054f2 0x080054f2 0x00000002 PAD + 0x080054f4 0x080054f4 0x00000024 Code RO 2231 .text.HAL_CAN_TxMailbox1AbortCallback can_1.o + 0x08005518 0x08005518 0x00000024 Code RO 2225 .text.HAL_CAN_TxMailbox1CompleteCallback can_1.o + 0x0800553c 0x0800553c 0x00000024 Code RO 2233 .text.HAL_CAN_TxMailbox2AbortCallback can_1.o + 0x08005560 0x08005560 0x00000024 Code RO 2227 .text.HAL_CAN_TxMailbox2CompleteCallback can_1.o + 0x08005584 0x08005584 0x00000024 Code RO 2245 .text.HAL_CAN_WakeUpFromRxMsgCallback can_1.o + 0x080055a8 0x080055a8 0x00000080 Code RO 506 .text.HAL_DMA_Abort stm32f4xx_hal_dma.o + 0x08005628 0x08005628 0x00000024 Code RO 508 .text.HAL_DMA_Abort_IT stm32f4xx_hal_dma.o + 0x0800564c 0x0800564c 0x0000018c Code RO 512 .text.HAL_DMA_IRQHandler stm32f4xx_hal_dma.o + 0x080057d8 0x080057d8 0x000000ce Code RO 492 .text.HAL_DMA_Init stm32f4xx_hal_dma.o + 0x080058a6 0x080058a6 0x00000002 PAD + 0x080058a8 0x080058a8 0x00000062 Code RO 504 .text.HAL_DMA_Start_IT stm32f4xx_hal_dma.o + 0x0800590a 0x0800590a 0x00000002 PAD + 0x0800590c 0x0800590c 0x00000028 Code RO 690 .text.HAL_Delay stm32f4xx_hal.o + 0x08005934 0x08005934 0x0000002c Code RO 2344 .text.HAL_GPIO_EXTI_Callback gpio_1.o + 0x08005960 0x08005960 0x0000001a Code RO 464 .text.HAL_GPIO_EXTI_IRQHandler stm32f4xx_hal_gpio.o + 0x0800597a 0x0800597a 0x00000002 PAD + 0x0800597c 0x0800597c 0x0000019a Code RO 452 .text.HAL_GPIO_Init stm32f4xx_hal_gpio.o + 0x08005b16 0x08005b16 0x00000002 PAD + 0x08005b18 0x08005b18 0x0000000a Code RO 456 .text.HAL_GPIO_ReadPin stm32f4xx_hal_gpio.o + 0x08005b22 0x08005b22 0x00000002 PAD + 0x08005b24 0x08005b24 0x0000000a Code RO 458 .text.HAL_GPIO_WritePin stm32f4xx_hal_gpio.o + 0x08005b2e 0x08005b2e 0x00000002 PAD + 0x08005b30 0x08005b30 0x0000000c Code RO 682 .text.HAL_GetTick stm32f4xx_hal.o + 0x08005b3c 0x08005b3c 0x00000198 Code RO 761 .text.HAL_I2C_Init stm32f4xx_hal_i2c.o + 0x08005cd4 0x08005cd4 0x000000d8 Code RO 86 .text.HAL_I2C_MspInit i2c.o + 0x08005dac 0x08005dac 0x0000001a Code RO 680 .text.HAL_IncTick stm32f4xx_hal.o + 0x08005dc6 0x08005dc6 0x00000002 PAD + 0x08005dc8 0x08005dc8 0x00000036 Code RO 670 .text.HAL_Init stm32f4xx_hal.o + 0x08005dfe 0x08005dfe 0x00000002 PAD + 0x08005e00 0x08005e00 0x00000050 Code RO 672 .text.HAL_InitTick stm32f4xx_hal.o + 0x08005e50 0x08005e50 0x00000046 Code RO 223 .text.HAL_MspInit stm32f4xx_hal_msp.o + 0x08005e96 0x08005e96 0x00000002 PAD + 0x08005e98 0x08005e98 0x00000008 Code RO 608 .text.HAL_NVIC_DisableIRQ stm32f4xx_hal_cortex.o + 0x08005ea0 0x08005ea0 0x00000008 Code RO 604 .text.HAL_NVIC_EnableIRQ stm32f4xx_hal_cortex.o + 0x08005ea8 0x08005ea8 0x0000001e Code RO 596 .text.HAL_NVIC_SetPriority stm32f4xx_hal_cortex.o + 0x08005ec6 0x08005ec6 0x00000002 PAD + 0x08005ec8 0x08005ec8 0x00000008 Code RO 592 .text.HAL_NVIC_SetPriorityGrouping stm32f4xx_hal_cortex.o + 0x08005ed0 0x08005ed0 0x00000160 Code RO 316 .text.HAL_RCC_ClockConfig stm32f4xx_hal_rcc.o + 0x08006030 0x08006030 0x0000000c Code RO 326 .text.HAL_RCC_GetHCLKFreq stm32f4xx_hal_rcc.o + 0x0800603c 0x0800603c 0x00000022 Code RO 328 .text.HAL_RCC_GetPCLK1Freq stm32f4xx_hal_rcc.o + 0x0800605e 0x0800605e 0x00000002 PAD + 0x08006060 0x08006060 0x00000022 Code RO 330 .text.HAL_RCC_GetPCLK2Freq stm32f4xx_hal_rcc.o + 0x08006082 0x08006082 0x00000002 PAD + 0x08006084 0x08006084 0x00000068 Code RO 318 .text.HAL_RCC_GetSysClockFreq stm32f4xx_hal_rcc.o + 0x080060ec 0x080060ec 0x00000348 Code RO 314 .text.HAL_RCC_OscConfig stm32f4xx_hal_rcc.o + 0x08006434 0x08006434 0x00000022 Code RO 2439 .text.HAL_SPI_ErrorCallback spi_1.o + 0x08006456 0x08006456 0x00000002 PAD + 0x08006458 0x08006458 0x000000b4 Code RO 934 .text.HAL_SPI_Init stm32f4xx_hal_spi.o + 0x0800650c 0x0800650c 0x0000012e Code RO 102 .text.HAL_SPI_MspInit spi.o + 0x0800663a 0x0800663a 0x00000002 PAD + 0x0800663c 0x0800663c 0x00000172 Code RO 946 .text.HAL_SPI_Receive stm32f4xx_hal_spi.o + 0x080067ae 0x080067ae 0x00000002 PAD + 0x080067b0 0x080067b0 0x000000ec Code RO 982 .text.HAL_SPI_Receive_DMA stm32f4xx_hal_spi.o + 0x0800689c 0x0800689c 0x00000022 Code RO 2429 .text.HAL_SPI_RxCpltCallback spi_1.o + 0x080068be 0x080068be 0x00000002 PAD + 0x080068c0 0x080068c0 0x00000022 Code RO 2435 .text.HAL_SPI_RxHalfCpltCallback spi_1.o + 0x080068e2 0x080068e2 0x00000002 PAD + 0x080068e4 0x080068e4 0x0000018a Code RO 942 .text.HAL_SPI_Transmit stm32f4xx_hal_spi.o + 0x08006a6e 0x08006a6e 0x00000002 PAD + 0x08006a70 0x08006a70 0x000001f8 Code RO 948 .text.HAL_SPI_TransmitReceive stm32f4xx_hal_spi.o + 0x08006c68 0x08006c68 0x00000124 Code RO 984 .text.HAL_SPI_TransmitReceive_DMA stm32f4xx_hal_spi.o + 0x08006d8c 0x08006d8c 0x000000cc Code RO 974 .text.HAL_SPI_Transmit_DMA stm32f4xx_hal_spi.o + 0x08006e58 0x08006e58 0x00000020 Code RO 2425 .text.HAL_SPI_TxCpltCallback spi_1.o + 0x08006e78 0x08006e78 0x00000022 Code RO 2433 .text.HAL_SPI_TxHalfCpltCallback spi_1.o + 0x08006e9a 0x08006e9a 0x00000002 PAD + 0x08006e9c 0x08006e9c 0x00000022 Code RO 2431 .text.HAL_SPI_TxRxCpltCallback spi_1.o + 0x08006ebe 0x08006ebe 0x00000002 PAD + 0x08006ec0 0x08006ec0 0x00000022 Code RO 2437 .text.HAL_SPI_TxRxHalfCpltCallback spi_1.o + 0x08006ee2 0x08006ee2 0x00000002 PAD + 0x08006ee4 0x08006ee4 0x00000008 Code RO 616 .text.HAL_SYSTICK_Config stm32f4xx_hal_cortex.o + 0x08006eec 0x08006eec 0x00000002 Code RO 1376 .text.HAL_TIMEx_BreakCallback stm32f4xx_hal_tim_ex.o + 0x08006eee 0x08006eee 0x00000002 PAD + 0x08006ef0 0x08006ef0 0x00000002 Code RO 1372 .text.HAL_TIMEx_CommutCallback stm32f4xx_hal_tim_ex.o + 0x08006ef2 0x08006ef2 0x00000002 PAD + 0x08006ef4 0x08006ef4 0x0000004c Code RO 1368 .text.HAL_TIMEx_ConfigBreakDeadTime stm32f4xx_hal_tim_ex.o + 0x08006f40 0x08006f40 0x000000b8 Code RO 1366 .text.HAL_TIMEx_MasterConfigSynchronization stm32f4xx_hal_tim_ex.o + 0x08006ff8 0x08006ff8 0x0000005a Code RO 1052 .text.HAL_TIM_Base_Init stm32f4xx_hal_tim.o + 0x08007052 0x08007052 0x00000002 PAD + 0x08007054 0x08007054 0x000000b4 Code RO 123 .text.HAL_TIM_Base_MspInit tim.o + 0x08007108 0x08007108 0x000000de Code RO 1244 .text.HAL_TIM_ConfigClockSource stm32f4xx_hal_tim.o + 0x080071e6 0x080071e6 0x00000002 PAD + 0x080071e8 0x080071e8 0x00000002 Code RO 1188 .text.HAL_TIM_IC_CaptureCallback stm32f4xx_hal_tim.o 0x080071ea 0x080071ea 0x00000002 PAD - 0x080071ec 0x080071ec 0x00000024 Code RO 3086 .text.Keymap et16s.o - 0x08007210 0x08007210 0x0000007c Code RO 2621 .text.LowPassFilter2p_Apply filter.o - 0x0800728c 0x0800728c 0x000000a4 Code RO 2619 .text.LowPassFilter2p_Init filter.o - 0x08007330 0x08007330 0x0000005c Code RO 2625 .text.LowPassFilter2p_Reset filter.o - 0x0800738c 0x0800738c 0x0000003c Code RO 2953 .text.MOTOR_DM_CreateCANManager motor_dm.o - 0x080073c8 0x080073c8 0x00000046 Code RO 2977 .text.MOTOR_DM_Enable motor_dm.o - 0x0800740e 0x0800740e 0x00000002 PAD - 0x08007410 0x08007410 0x00000014 Code RO 2955 .text.MOTOR_DM_GetCANManager motor_dm.o - 0x08007424 0x08007424 0x00000058 Code RO 2965 .text.MOTOR_DM_GetMotor motor_dm.o - 0x0800747c 0x0800747c 0x0000002e Code RO 2963 .text.MOTOR_DM_MITCtrl motor_dm.o - 0x080074aa 0x080074aa 0x00000002 PAD - 0x080074ac 0x080074ac 0x000000f8 Code RO 2959 .text.MOTOR_DM_ParseFeedbackFrame motor_dm.o - 0x080075a4 0x080075a4 0x000000a4 Code RO 2951 .text.MOTOR_DM_Register motor_dm.o - 0x08007648 0x08007648 0x00000118 Code RO 2967 .text.MOTOR_DM_SendMITCmd motor_dm.o - 0x08007760 0x08007760 0x000000a0 Code RO 2957 .text.MOTOR_DM_Update motor_dm.o - 0x08007800 0x08007800 0x0000003c Code RO 2916 .text.MOTOR_RM_CreateCANManager motor_rm.o - 0x0800783c 0x0800783c 0x000000d8 Code RO 2934 .text.MOTOR_RM_Ctrl motor_rm.o - 0x08007914 0x08007914 0x00000014 Code RO 2918 .text.MOTOR_RM_GetCANManager motor_rm.o - 0x08007928 0x08007928 0x00000026 Code RO 2932 .text.MOTOR_RM_GetLSB motor_rm.o - 0x0800794e 0x0800794e 0x00000002 PAD - 0x08007950 0x08007950 0x00000028 Code RO 2930 .text.MOTOR_RM_GetLogicalIndex motor_rm.o - 0x08007978 0x08007978 0x00000050 Code RO 2928 .text.MOTOR_RM_GetMotor motor_rm.o - 0x080079c8 0x080079c8 0x00000024 Code RO 2940 .text.MOTOR_RM_GetRatio motor_rm.o - 0x080079ec 0x080079ec 0x000000a6 Code RO 2914 .text.MOTOR_RM_Register motor_rm.o - 0x08007a92 0x08007a92 0x00000002 PAD - 0x08007a94 0x08007a94 0x00000010 Code RO 2936 .text.MOTOR_RM_Relax motor_rm.o - 0x08007aa4 0x08007aa4 0x0000009e Code RO 2926 .text.MOTOR_RM_SetOutput motor_rm.o - 0x08007b42 0x08007b42 0x00000002 PAD - 0x08007b44 0x08007b44 0x000000c6 Code RO 2920 .text.MOTOR_RM_Update motor_rm.o - 0x08007c0a 0x08007c0a 0x00000002 PAD - 0x08007c0c 0x08007c0c 0x00000040 Code RO 54 .text.MX_CAN1_Init can.o - 0x08007c4c 0x08007c4c 0x00000040 Code RO 56 .text.MX_CAN2_Init can.o - 0x08007c8c 0x08007c8c 0x0000008a Code RO 73 .text.MX_DMA_Init dma.o - 0x08007d16 0x08007d16 0x00000002 PAD - 0x08007d18 0x08007d18 0x0000003a Code RO 40 .text.MX_FREERTOS_Init freertos.o - 0x08007d52 0x08007d52 0x00000002 PAD - 0x08007d54 0x08007d54 0x000001e4 Code RO 25 .text.MX_GPIO_Init gpio.o - 0x08007f38 0x08007f38 0x0000003e Code RO 82 .text.MX_I2C1_Init i2c.o - 0x08007f76 0x08007f76 0x00000002 PAD - 0x08007f78 0x08007f78 0x0000003e Code RO 84 .text.MX_I2C2_Init i2c.o - 0x08007fb6 0x08007fb6 0x00000002 PAD - 0x08007fb8 0x08007fb8 0x0000004e Code RO 100 .text.MX_SPI1_Init spi.o - 0x08008006 0x08008006 0x00000002 PAD - 0x08008008 0x08008008 0x00000088 Code RO 121 .text.MX_TIM10_Init tim.o - 0x08008090 0x08008090 0x0000010e Code RO 117 .text.MX_TIM8_Init tim.o - 0x0800819e 0x0800819e 0x00000002 PAD - 0x080081a0 0x080081a0 0x00000038 Code RO 137 .text.MX_USART1_UART_Init usart.o - 0x080081d8 0x080081d8 0x00000038 Code RO 139 .text.MX_USART2_UART_Init usart.o - 0x08008210 0x08008210 0x00000044 Code RO 141 .text.MX_USART3_UART_Init usart.o - 0x08008254 0x08008254 0x00000038 Code RO 143 .text.MX_USART6_UART_Init usart.o - 0x0800828c 0x0800828c 0x00000002 Code RO 168 .text.MemManage_Handler stm32f4xx_it.o - 0x0800828e 0x0800828e 0x00000002 PAD - 0x08008290 0x08008290 0x0000015c Code RO 2922 .text.Motor_RM_Decode motor_rm.o - 0x080083ec 0x080083ec 0x00000024 Code RO 2998 .text.Motor_Step_Ctrl motor_step.o - 0x08008410 0x08008410 0x0000000c Code RO 2996 .text.Motor_Step_Init motor_step.o - 0x0800841c 0x0800841c 0x00000002 Code RO 164 .text.NMI_Handler stm32f4xx_it.o - 0x0800841e 0x0800841e 0x00000002 PAD - 0x08008420 0x08008420 0x0000002c Code RO 602 .text.NVIC_EncodePriority stm32f4xx_hal_cortex.o - 0x0800844c 0x0800844c 0x00000170 Code RO 2704 .text.PID_Calc pid.o - 0x080085bc 0x080085bc 0x00000090 Code RO 2698 .text.PID_Init pid.o - 0x0800864c 0x0800864c 0x0000002c Code RO 2702 .text.PID_Reset pid.o - 0x08008678 0x08008678 0x0000000e Code RO 2706 .text.PID_ResetIntegral pid.o - 0x08008686 0x08008686 0x0000000a PAD - 0x08008690 0x08008690 0x00000064 Code RO 2204 .text.PendSV_Handler port.o - 0x080086f4 0x080086f4 0x00000044 Code RO 3078 .text.REMOTE_Init et16s.o - 0x08008738 0x08008738 0x00000014 Code RO 3080 .text.REMOTE_RxCpltCallback et16s.o - 0x0800874c 0x0800874c 0x00000020 Code RO 3082 .text.REMOTE_StartDmaRecv et16s.o - 0x0800876c 0x0800876c 0x00000016 Code RO 3084 .text.REMOTE_WaitDmaCplt et16s.o - 0x08008782 0x08008782 0x00000002 PAD - 0x08008784 0x08008784 0x00000022 Code RO 980 .text.SPI_DMAError stm32f4xx_hal_spi.o - 0x080087a6 0x080087a6 0x00000002 PAD - 0x080087a8 0x080087a8 0x0000000a Code RO 986 .text.SPI_DMAHalfReceiveCplt stm32f4xx_hal_spi.o - 0x080087b2 0x080087b2 0x00000002 PAD - 0x080087b4 0x080087b4 0x0000000a Code RO 976 .text.SPI_DMAHalfTransmitCplt stm32f4xx_hal_spi.o - 0x080087be 0x080087be 0x00000002 PAD - 0x080087c0 0x080087c0 0x0000000a Code RO 990 .text.SPI_DMAHalfTransmitReceiveCplt stm32f4xx_hal_spi.o - 0x080087ca 0x080087ca 0x00000002 PAD - 0x080087cc 0x080087cc 0x00000068 Code RO 988 .text.SPI_DMAReceiveCplt stm32f4xx_hal_spi.o - 0x08008834 0x08008834 0x00000070 Code RO 978 .text.SPI_DMATransmitCplt stm32f4xx_hal_spi.o - 0x080088a4 0x080088a4 0x0000005a Code RO 992 .text.SPI_DMATransmitReceiveCplt stm32f4xx_hal_spi.o - 0x080088fe 0x080088fe 0x00000002 PAD - 0x08008900 0x08008900 0x00000090 Code RO 950 .text.SPI_EndRxTransaction stm32f4xx_hal_spi.o - 0x08008990 0x08008990 0x0000008a Code RO 944 .text.SPI_EndRxTxTransaction stm32f4xx_hal_spi.o - 0x08008a1a 0x08008a1a 0x00000002 PAD - 0x08008a1c 0x08008a1c 0x00000014 Code RO 2427 .text.SPI_Get spi_1.o - 0x08008a30 0x08008a30 0x000000e0 Code RO 1042 .text.SPI_WaitFlagStateUntilTimeout stm32f4xx_hal_spi.o - 0x08008b10 0x08008b10 0x00000024 Code RO 2188 .text.SVC_Handler port.o - 0x08008b34 0x08008b34 0x00000008 Code RO 1980 .text.SVC_Setup cmsis_os2.o - 0x08008b3c 0x08008b3c 0x00000036 Code RO 2763 .text.ScaleSumTo1 user_math.o - 0x08008b72 0x08008b72 0x00000002 PAD - 0x08008b74 0x08008b74 0x0000007c Code RO 3292 .text.Shoot_CaluCoupledWeight shoot.o - 0x08008bf0 0x08008bf0 0x000000a0 Code RO 3286 .text.Shoot_CaluTargetAngle shoot.o - 0x08008c90 0x08008c90 0x0000002c Code RO 3284 .text.Shoot_CaluTargetRPM shoot.o - 0x08008cbc 0x08008cbc 0x0000006c Code RO 3298 .text.Shoot_Control shoot.o - 0x08008d28 0x08008d28 0x00000146 Code RO 3296 .text.Shoot_Init shoot.o - 0x08008e6e 0x08008e6e 0x00000002 PAD - 0x08008e70 0x08008e70 0x00000130 Code RO 3294 .text.Shoot_JamDetectionFSM shoot.o - 0x08008fa0 0x08008fa0 0x00000098 Code RO 3280 .text.Shoot_ResetCalu shoot.o - 0x08009038 0x08009038 0x00000046 Code RO 3278 .text.Shoot_ResetIntegral shoot.o - 0x0800907e 0x0800907e 0x00000002 PAD - 0x08009080 0x08009080 0x00000032 Code RO 3282 .text.Shoot_ResetOutput shoot.o - 0x080090b2 0x080090b2 0x00000002 PAD - 0x080090b4 0x080090b4 0x000004f0 Code RO 3290 .text.Shoot_RunningFSM shoot.o - 0x080095a4 0x080095a4 0x0000000e Code RO 3276 .text.Shoot_SetMode shoot.o - 0x080095b2 0x080095b2 0x00000002 PAD - 0x080095b4 0x080095b4 0x000001f4 Code RO 3288 .text.Shoot_UpdateFeedback shoot.o - 0x080097a8 0x080097a8 0x0000000c Code RO 42 .text.StartDefaultTask freertos.o - 0x080097b4 0x080097b4 0x0000002e Code RO 618 .text.SysTick_Config stm32f4xx_hal_cortex.o - 0x080097e2 0x080097e2 0x00000002 PAD - 0x080097e4 0x080097e4 0x00000014 Code RO 176 .text.SysTick_Handler stm32f4xx_it.o - 0x080097f8 0x080097f8 0x000000a4 Code RO 13 .text.SystemClock_Config main.o - 0x0800989c 0x0800989c 0x00000012 Code RO 1522 .text.SystemInit system_stm32f4xx.o - 0x080098ae 0x080098ae 0x00000002 PAD - 0x080098b0 0x080098b0 0x00000010 Code RO 194 .text.TIM1_UP_TIM10_IRQHandler stm32f4xx_it.o - 0x080098c0 0x080098c0 0x0000012c Code RO 1056 .text.TIM_Base_SetConfig stm32f4xx_hal_tim.o - 0x080099ec 0x080099ec 0x00000024 Code RO 1090 .text.TIM_CCxChannelCmd stm32f4xx_hal_tim.o - 0x08009a10 0x08009a10 0x00000016 Code RO 1242 .text.TIM_ETR_SetConfig stm32f4xx_hal_tim.o - 0x08009a26 0x08009a26 0x00000002 PAD - 0x08009a28 0x08009a28 0x00000010 Code RO 1248 .text.TIM_ITRx_SetConfig stm32f4xx_hal_tim.o - 0x08009a38 0x08009a38 0x00000064 Code RO 1200 .text.TIM_OC1_SetConfig stm32f4xx_hal_tim.o - 0x08009a9c 0x08009a9c 0x0000006a Code RO 1202 .text.TIM_OC2_SetConfig stm32f4xx_hal_tim.o - 0x08009b06 0x08009b06 0x00000002 PAD - 0x08009b08 0x08009b08 0x00000068 Code RO 1204 .text.TIM_OC3_SetConfig stm32f4xx_hal_tim.o - 0x08009b70 0x08009b70 0x0000004e Code RO 1206 .text.TIM_OC4_SetConfig stm32f4xx_hal_tim.o - 0x08009bbe 0x08009bbe 0x00000002 PAD - 0x08009bc0 0x08009bc0 0x00000022 Code RO 1246 .text.TIM_TI1_ConfigInputStage stm32f4xx_hal_tim.o - 0x08009be2 0x08009be2 0x00000002 PAD - 0x08009be4 0x08009be4 0x00000024 Code RO 1250 .text.TIM_TI2_ConfigInputStage stm32f4xx_hal_tim.o - 0x08009c08 0x08009c08 0x00000080 Code RO 3427 .text.Task_ET16s et16s_1.o - 0x08009c88 0x08009c88 0x00000160 Code RO 3450 .text.Task_Init init.o - 0x08009de8 0x08009de8 0x00000040 Code RO 3339 .text.Task_ai ai_1.o - 0x08009e28 0x08009e28 0x00000178 Code RO 3372 .text.Task_atti_esti atti_esti.o - 0x08009fa0 0x08009fa0 0x00000074 Code RO 3404 .text.Task_chassis_ctrl chassis_ctrl.o - 0x0800a014 0x0800a014 0x00000004 PAD - 0x0800a018 0x0800a018 0x000000e8 Code RO 3348 .text.Task_cmd cmd.o - 0x0800a100 0x0800a100 0x00000068 Code RO 3362 .text.Task_dr16 dr16_1.o - 0x0800a168 0x0800a168 0x000000b4 Code RO 3392 .text.Task_gimbal_ctrl gimbal_ctrl.o - 0x0800a21c 0x0800a21c 0x00000004 PAD - 0x0800a220 0x0800a220 0x00000094 Code RO 3415 .text.Task_shoot_ctrl shoot_ctrl.o - 0x0800a2b4 0x0800a2b4 0x00000004 PAD - 0x0800a2b8 0x0800a2b8 0x00000070 Code RO 3437 .text.Task_step_motor step_motor_1.o - 0x0800a328 0x0800a328 0x00000060 Code RO 3459 .text.Task_vofa vofa_1.o - 0x0800a388 0x0800a388 0x0000000e Code RO 1478 .text.UART_DMAAbortOnError stm32f4xx_hal_uart.o - 0x0800a396 0x0800a396 0x00000002 PAD - 0x0800a398 0x0800a398 0x0000004c Code RO 1424 .text.UART_DMAError stm32f4xx_hal_uart.o - 0x0800a3e4 0x0800a3e4 0x00000084 Code RO 1510 .text.UART_DMAReceiveCplt stm32f4xx_hal_uart.o - 0x0800a468 0x0800a468 0x0000001e Code RO 1512 .text.UART_DMARxHalfCplt stm32f4xx_hal_uart.o - 0x0800a486 0x0800a486 0x00000002 PAD - 0x0800a488 0x0800a488 0x00000040 Code RO 1420 .text.UART_DMATransmitCplt stm32f4xx_hal_uart.o - 0x0800a4c8 0x0800a4c8 0x0000000a Code RO 1422 .text.UART_DMATxHalfCplt stm32f4xx_hal_uart.o - 0x0800a4d2 0x0800a4d2 0x00000002 PAD - 0x0800a4d4 0x0800a4d4 0x00000050 Code RO 1438 .text.UART_EndRxTransfer stm32f4xx_hal_uart.o - 0x0800a524 0x0800a524 0x00000018 Code RO 1486 .text.UART_EndTransmit_IT stm32f4xx_hal_uart.o - 0x0800a53c 0x0800a53c 0x0000001c Code RO 1436 .text.UART_EndTxTransfer stm32f4xx_hal_uart.o - 0x0800a558 0x0800a558 0x00000054 Code RO 2488 .text.UART_Get uart.o - 0x0800a5ac 0x0800a5ac 0x000000c8 Code RO 1476 .text.UART_Receive_IT stm32f4xx_hal_uart.o - 0x0800a674 0x0800a674 0x000000dc Code RO 1394 .text.UART_SetConfig stm32f4xx_hal_uart.o - 0x0800a750 0x0800a750 0x000000aa Code RO 1428 .text.UART_Start_Receive_DMA stm32f4xx_hal_uart.o - 0x0800a7fa 0x0800a7fa 0x00000002 PAD - 0x0800a7fc 0x0800a7fc 0x00000052 Code RO 1484 .text.UART_Transmit_IT stm32f4xx_hal_uart.o - 0x0800a84e 0x0800a84e 0x00000002 PAD - 0x0800a850 0x0800a850 0x00000018 Code RO 196 .text.USART1_IRQHandler stm32f4xx_it.o - 0x0800a868 0x0800a868 0x00000018 Code RO 198 .text.USART3_IRQHandler stm32f4xx_it.o - 0x0800a880 0x0800a880 0x00000018 Code RO 214 .text.USART6_IRQHandler stm32f4xx_it.o - 0x0800a898 0x0800a898 0x00000002 Code RO 172 .text.UsageFault_Handler stm32f4xx_it.o - 0x0800a89a 0x0800a89a 0x00000002 PAD - 0x0800a89c 0x0800a89c 0x000000a8 Code RO 3220 .text.VOFA_FireWater_Send vofa.o - 0x0800a944 0x0800a944 0x0000003a Code RO 3222 .text.VOFA_JustFloat_Send vofa.o - 0x0800a97e 0x0800a97e 0x00000002 PAD - 0x0800a980 0x0800a980 0x00000018 Code RO 3218 .text.VOFA_RawData_Send vofa.o - 0x0800a998 0x0800a998 0x000000b0 Code RO 3226 .text.VOFA_Send vofa.o - 0x0800aa48 0x0800aa48 0x00000010 Code RO 3224 .text.VOFA_init vofa.o - 0x0800aa58 0x0800aa58 0x0000000e Code RO 2627 .text.__ARM_isfinitef filter.o - 0x0800aa66 0x0800aa66 0x00000002 PAD - 0x0800aa68 0x0800aa68 0x0000000e Code RO 2700 .text.__ARM_isfinitef pid.o - 0x0800aa76 0x0800aa76 0x00000002 PAD - 0x0800aa78 0x0800aa78 0x00000010 Code RO 2623 .text.__ARM_isinff filter.o - 0x0800aa88 0x0800aa88 0x00000028 Code RO 610 .text.__NVIC_DisableIRQ stm32f4xx_hal_cortex.o - 0x0800aab0 0x0800aab0 0x00000020 Code RO 606 .text.__NVIC_EnableIRQ stm32f4xx_hal_cortex.o - 0x0800aad0 0x0800aad0 0x00000010 Code RO 598 .text.__NVIC_GetPriorityGrouping stm32f4xx_hal_cortex.o - 0x0800aae0 0x0800aae0 0x00000022 Code RO 600 .text.__NVIC_SetPriority stm32f4xx_hal_cortex.o - 0x0800ab02 0x0800ab02 0x00000002 PAD - 0x0800ab04 0x0800ab04 0x0000000e Code RO 2136 .text.__NVIC_SetPriority cmsis_os2.o - 0x0800ab12 0x0800ab12 0x00000002 PAD - 0x0800ab14 0x0800ab14 0x00000020 Code RO 594 .text.__NVIC_SetPriorityGrouping stm32f4xx_hal_cortex.o - 0x0800ab34 0x0800ab34 0x00000234 Code RO 3312 .text.chassis_init chassis.o - 0x0800ad68 0x0800ad68 0x00000002 Code RO 34 .text.configureTimerForRunTimeStats freertos.o + 0x080071ec 0x080071ec 0x00000134 Code RO 1186 .text.HAL_TIM_IRQHandler stm32f4xx_hal_tim.o + 0x08007320 0x08007320 0x000000a4 Code RO 119 .text.HAL_TIM_MspPostInit tim.o + 0x080073c4 0x080073c4 0x00000002 Code RO 1190 .text.HAL_TIM_OC_DelayElapsedCallback stm32f4xx_hal_tim.o + 0x080073c6 0x080073c6 0x00000002 PAD + 0x080073c8 0x080073c8 0x00000098 Code RO 1218 .text.HAL_TIM_PWM_ConfigChannel stm32f4xx_hal_tim.o + 0x08007460 0x08007460 0x0000005a Code RO 1106 .text.HAL_TIM_PWM_Init stm32f4xx_hal_tim.o + 0x080074ba 0x080074ba 0x00000002 PAD + 0x080074bc 0x080074bc 0x00000002 Code RO 1108 .text.HAL_TIM_PWM_MspInit stm32f4xx_hal_tim.o + 0x080074be 0x080074be 0x00000002 PAD + 0x080074c0 0x080074c0 0x00000002 Code RO 1192 .text.HAL_TIM_PWM_PulseFinishedCallback stm32f4xx_hal_tim.o + 0x080074c2 0x080074c2 0x00000002 PAD + 0x080074c4 0x080074c4 0x00000122 Code RO 1114 .text.HAL_TIM_PWM_Start stm32f4xx_hal_tim.o + 0x080075e6 0x080075e6 0x00000002 PAD + 0x080075e8 0x080075e8 0x00000002 Code RO 1194 .text.HAL_TIM_PeriodElapsedCallback stm32f4xx_hal_tim.o + 0x080075ea 0x080075ea 0x00000002 PAD + 0x080075ec 0x080075ec 0x00000002 Code RO 1196 .text.HAL_TIM_TriggerCallback stm32f4xx_hal_tim.o + 0x080075ee 0x080075ee 0x00000002 PAD + 0x080075f0 0x080075f0 0x00000002 Code RO 1482 .text.HAL_UARTEx_RxEventCallback stm32f4xx_hal_uart.o + 0x080075f2 0x080075f2 0x00000002 PAD + 0x080075f4 0x080075f4 0x00000026 Code RO 2496 .text.HAL_UART_ErrorCallback uart.o + 0x0800761a 0x0800761a 0x00000002 PAD + 0x0800761c 0x0800761c 0x0000025a Code RO 1474 .text.HAL_UART_IRQHandler stm32f4xx_hal_uart.o + 0x08007876 0x08007876 0x00000002 PAD + 0x08007878 0x08007878 0x00000060 Code RO 1390 .text.HAL_UART_Init stm32f4xx_hal_uart.o + 0x080078d8 0x080078d8 0x000002da Code RO 145 .text.HAL_UART_MspInit usart.o + 0x08007bb2 0x08007bb2 0x00000002 PAD + 0x08007bb4 0x08007bb4 0x0000002c Code RO 1426 .text.HAL_UART_Receive_DMA stm32f4xx_hal_uart.o + 0x08007be0 0x08007be0 0x00000026 Code RO 2492 .text.HAL_UART_RxCpltCallback uart.o + 0x08007c06 0x08007c06 0x00000002 PAD + 0x08007c08 0x08007c08 0x00000026 Code RO 2494 .text.HAL_UART_RxHalfCpltCallback uart.o + 0x08007c2e 0x08007c2e 0x00000002 PAD + 0x08007c30 0x08007c30 0x0000008c Code RO 1418 .text.HAL_UART_Transmit_DMA stm32f4xx_hal_uart.o + 0x08007cbc 0x08007cbc 0x00000038 Code RO 1412 .text.HAL_UART_Transmit_IT stm32f4xx_hal_uart.o + 0x08007cf4 0x08007cf4 0x00000026 Code RO 2486 .text.HAL_UART_TxCpltCallback uart.o + 0x08007d1a 0x08007d1a 0x00000002 PAD + 0x08007d1c 0x08007d1c 0x00000024 Code RO 2490 .text.HAL_UART_TxHalfCpltCallback uart.o + 0x08007d40 0x08007d40 0x00000002 Code RO 166 .text.HardFault_Handler stm32f4xx_it.o + 0x08007d42 0x08007d42 0x00000002 PAD + 0x08007d44 0x08007d44 0x00000042 Code RO 2743 .text.InvSqrt user_math.o + 0x08007d86 0x08007d86 0x00000002 PAD + 0x08007d88 0x08007d88 0x00000024 Code RO 3088 .text.Keymap et16s.o + 0x08007dac 0x08007dac 0x0000007c Code RO 2621 .text.LowPassFilter2p_Apply filter.o + 0x08007e28 0x08007e28 0x000000a4 Code RO 2619 .text.LowPassFilter2p_Init filter.o + 0x08007ecc 0x08007ecc 0x0000005c Code RO 2625 .text.LowPassFilter2p_Reset filter.o + 0x08007f28 0x08007f28 0x0000003c Code RO 2953 .text.MOTOR_DM_CreateCANManager motor_dm.o + 0x08007f64 0x08007f64 0x00000046 Code RO 2977 .text.MOTOR_DM_Enable motor_dm.o + 0x08007faa 0x08007faa 0x00000002 PAD + 0x08007fac 0x08007fac 0x00000014 Code RO 2955 .text.MOTOR_DM_GetCANManager motor_dm.o + 0x08007fc0 0x08007fc0 0x00000058 Code RO 2965 .text.MOTOR_DM_GetMotor motor_dm.o + 0x08008018 0x08008018 0x0000002e Code RO 2963 .text.MOTOR_DM_MITCtrl motor_dm.o + 0x08008046 0x08008046 0x00000002 PAD + 0x08008048 0x08008048 0x000000f8 Code RO 2959 .text.MOTOR_DM_ParseFeedbackFrame motor_dm.o + 0x08008140 0x08008140 0x000000a4 Code RO 2951 .text.MOTOR_DM_Register motor_dm.o + 0x080081e4 0x080081e4 0x00000118 Code RO 2967 .text.MOTOR_DM_SendMITCmd motor_dm.o + 0x080082fc 0x080082fc 0x000000a0 Code RO 2957 .text.MOTOR_DM_Update motor_dm.o + 0x0800839c 0x0800839c 0x0000003c Code RO 2916 .text.MOTOR_RM_CreateCANManager motor_rm.o + 0x080083d8 0x080083d8 0x000000d8 Code RO 2934 .text.MOTOR_RM_Ctrl motor_rm.o + 0x080084b0 0x080084b0 0x00000014 Code RO 2918 .text.MOTOR_RM_GetCANManager motor_rm.o + 0x080084c4 0x080084c4 0x00000026 Code RO 2932 .text.MOTOR_RM_GetLSB motor_rm.o + 0x080084ea 0x080084ea 0x00000002 PAD + 0x080084ec 0x080084ec 0x00000028 Code RO 2930 .text.MOTOR_RM_GetLogicalIndex motor_rm.o + 0x08008514 0x08008514 0x00000050 Code RO 2928 .text.MOTOR_RM_GetMotor motor_rm.o + 0x08008564 0x08008564 0x00000024 Code RO 2940 .text.MOTOR_RM_GetRatio motor_rm.o + 0x08008588 0x08008588 0x000000a6 Code RO 2914 .text.MOTOR_RM_Register motor_rm.o + 0x0800862e 0x0800862e 0x00000002 PAD + 0x08008630 0x08008630 0x0000009e Code RO 2926 .text.MOTOR_RM_SetOutput motor_rm.o + 0x080086ce 0x080086ce 0x00000002 PAD + 0x080086d0 0x080086d0 0x000000c6 Code RO 2920 .text.MOTOR_RM_Update motor_rm.o + 0x08008796 0x08008796 0x00000002 PAD + 0x08008798 0x08008798 0x00000044 Code RO 54 .text.MX_CAN1_Init can.o + 0x080087dc 0x080087dc 0x00000044 Code RO 56 .text.MX_CAN2_Init can.o + 0x08008820 0x08008820 0x0000008a Code RO 73 .text.MX_DMA_Init dma.o + 0x080088aa 0x080088aa 0x00000002 PAD + 0x080088ac 0x080088ac 0x0000003a Code RO 40 .text.MX_FREERTOS_Init freertos.o + 0x080088e6 0x080088e6 0x00000002 PAD + 0x080088e8 0x080088e8 0x00000202 Code RO 25 .text.MX_GPIO_Init gpio.o + 0x08008aea 0x08008aea 0x00000002 PAD + 0x08008aec 0x08008aec 0x0000003e Code RO 82 .text.MX_I2C1_Init i2c.o + 0x08008b2a 0x08008b2a 0x00000002 PAD + 0x08008b2c 0x08008b2c 0x0000003e Code RO 84 .text.MX_I2C2_Init i2c.o + 0x08008b6a 0x08008b6a 0x00000002 PAD + 0x08008b6c 0x08008b6c 0x0000004e Code RO 100 .text.MX_SPI1_Init spi.o + 0x08008bba 0x08008bba 0x00000002 PAD + 0x08008bbc 0x08008bbc 0x00000088 Code RO 121 .text.MX_TIM10_Init tim.o + 0x08008c44 0x08008c44 0x0000010c Code RO 117 .text.MX_TIM1_Init tim.o + 0x08008d50 0x08008d50 0x00000038 Code RO 137 .text.MX_USART1_UART_Init usart.o + 0x08008d88 0x08008d88 0x00000038 Code RO 139 .text.MX_USART2_UART_Init usart.o + 0x08008dc0 0x08008dc0 0x00000044 Code RO 141 .text.MX_USART3_UART_Init usart.o + 0x08008e04 0x08008e04 0x00000038 Code RO 143 .text.MX_USART6_UART_Init usart.o + 0x08008e3c 0x08008e3c 0x00000002 Code RO 168 .text.MemManage_Handler stm32f4xx_it.o + 0x08008e3e 0x08008e3e 0x00000002 PAD + 0x08008e40 0x08008e40 0x0000015c Code RO 2922 .text.Motor_RM_Decode motor_rm.o + 0x08008f9c 0x08008f9c 0x0000000c Code RO 2996 .text.Motor_Step_Init motor_step.o + 0x08008fa8 0x08008fa8 0x00000002 Code RO 164 .text.NMI_Handler stm32f4xx_it.o + 0x08008faa 0x08008faa 0x00000002 PAD + 0x08008fac 0x08008fac 0x0000002c Code RO 602 .text.NVIC_EncodePriority stm32f4xx_hal_cortex.o + 0x08008fd8 0x08008fd8 0x00000170 Code RO 2704 .text.PID_Calc pid.o + 0x08009148 0x08009148 0x00000090 Code RO 2698 .text.PID_Init pid.o + 0x080091d8 0x080091d8 0x0000002c Code RO 2702 .text.PID_Reset pid.o + 0x08009204 0x08009204 0x0000000c PAD + 0x08009210 0x08009210 0x00000064 Code RO 2204 .text.PendSV_Handler port.o + 0x08009274 0x08009274 0x00000044 Code RO 3080 .text.REMOTE_Init et16s.o + 0x080092b8 0x080092b8 0x00000014 Code RO 3082 .text.REMOTE_RxCpltCallback et16s.o + 0x080092cc 0x080092cc 0x00000020 Code RO 3084 .text.REMOTE_StartDmaRecv et16s.o + 0x080092ec 0x080092ec 0x00000016 Code RO 3086 .text.REMOTE_WaitDmaCplt et16s.o + 0x08009302 0x08009302 0x00000002 PAD + 0x08009304 0x08009304 0x00000022 Code RO 980 .text.SPI_DMAError stm32f4xx_hal_spi.o + 0x08009326 0x08009326 0x00000002 PAD + 0x08009328 0x08009328 0x0000000a Code RO 986 .text.SPI_DMAHalfReceiveCplt stm32f4xx_hal_spi.o + 0x08009332 0x08009332 0x00000002 PAD + 0x08009334 0x08009334 0x0000000a Code RO 976 .text.SPI_DMAHalfTransmitCplt stm32f4xx_hal_spi.o + 0x0800933e 0x0800933e 0x00000002 PAD + 0x08009340 0x08009340 0x0000000a Code RO 990 .text.SPI_DMAHalfTransmitReceiveCplt stm32f4xx_hal_spi.o + 0x0800934a 0x0800934a 0x00000002 PAD + 0x0800934c 0x0800934c 0x00000068 Code RO 988 .text.SPI_DMAReceiveCplt stm32f4xx_hal_spi.o + 0x080093b4 0x080093b4 0x00000070 Code RO 978 .text.SPI_DMATransmitCplt stm32f4xx_hal_spi.o + 0x08009424 0x08009424 0x0000005a Code RO 992 .text.SPI_DMATransmitReceiveCplt stm32f4xx_hal_spi.o + 0x0800947e 0x0800947e 0x00000002 PAD + 0x08009480 0x08009480 0x00000090 Code RO 950 .text.SPI_EndRxTransaction stm32f4xx_hal_spi.o + 0x08009510 0x08009510 0x0000008a Code RO 944 .text.SPI_EndRxTxTransaction stm32f4xx_hal_spi.o + 0x0800959a 0x0800959a 0x00000002 PAD + 0x0800959c 0x0800959c 0x00000014 Code RO 2427 .text.SPI_Get spi_1.o + 0x080095b0 0x080095b0 0x000000e0 Code RO 1042 .text.SPI_WaitFlagStateUntilTimeout stm32f4xx_hal_spi.o + 0x08009690 0x08009690 0x00000024 Code RO 2188 .text.SVC_Handler port.o + 0x080096b4 0x080096b4 0x00000008 Code RO 1980 .text.SVC_Setup cmsis_os2.o + 0x080096bc 0x080096bc 0x00000146 Code RO 3298 .text.Shoot_Init shoot.o + 0x08009802 0x08009802 0x00000002 PAD + 0x08009804 0x08009804 0x0000000e Code RO 3278 .text.Shoot_SetMode shoot.o + 0x08009812 0x08009812 0x00000002 PAD + 0x08009814 0x08009814 0x000001f4 Code RO 3290 .text.Shoot_UpdateFeedback shoot.o + 0x08009a08 0x08009a08 0x0000000c Code RO 42 .text.StartDefaultTask freertos.o + 0x08009a14 0x08009a14 0x0000002e Code RO 618 .text.SysTick_Config stm32f4xx_hal_cortex.o + 0x08009a42 0x08009a42 0x00000002 PAD + 0x08009a44 0x08009a44 0x00000014 Code RO 176 .text.SysTick_Handler stm32f4xx_it.o + 0x08009a58 0x08009a58 0x000000a4 Code RO 13 .text.SystemClock_Config main.o + 0x08009afc 0x08009afc 0x00000012 Code RO 1522 .text.SystemInit system_stm32f4xx.o + 0x08009b0e 0x08009b0e 0x00000002 PAD + 0x08009b10 0x08009b10 0x00000010 Code RO 194 .text.TIM1_BRK_TIM9_IRQHandler stm32f4xx_it.o + 0x08009b20 0x08009b20 0x0000012c Code RO 1056 .text.TIM_Base_SetConfig stm32f4xx_hal_tim.o + 0x08009c4c 0x08009c4c 0x00000024 Code RO 1090 .text.TIM_CCxChannelCmd stm32f4xx_hal_tim.o + 0x08009c70 0x08009c70 0x00000016 Code RO 1242 .text.TIM_ETR_SetConfig stm32f4xx_hal_tim.o + 0x08009c86 0x08009c86 0x00000002 PAD + 0x08009c88 0x08009c88 0x00000010 Code RO 1248 .text.TIM_ITRx_SetConfig stm32f4xx_hal_tim.o + 0x08009c98 0x08009c98 0x00000064 Code RO 1200 .text.TIM_OC1_SetConfig stm32f4xx_hal_tim.o + 0x08009cfc 0x08009cfc 0x0000006a Code RO 1202 .text.TIM_OC2_SetConfig stm32f4xx_hal_tim.o + 0x08009d66 0x08009d66 0x00000002 PAD + 0x08009d68 0x08009d68 0x00000068 Code RO 1204 .text.TIM_OC3_SetConfig stm32f4xx_hal_tim.o + 0x08009dd0 0x08009dd0 0x0000004e Code RO 1206 .text.TIM_OC4_SetConfig stm32f4xx_hal_tim.o + 0x08009e1e 0x08009e1e 0x00000002 PAD + 0x08009e20 0x08009e20 0x00000022 Code RO 1246 .text.TIM_TI1_ConfigInputStage stm32f4xx_hal_tim.o + 0x08009e42 0x08009e42 0x00000002 PAD + 0x08009e44 0x08009e44 0x00000024 Code RO 1250 .text.TIM_TI2_ConfigInputStage stm32f4xx_hal_tim.o + 0x08009e68 0x08009e68 0x00000080 Code RO 3429 .text.Task_ET16s et16s_1.o + 0x08009ee8 0x08009ee8 0x0000016c Code RO 3451 .text.Task_Init init.o + 0x0800a054 0x0800a054 0x00000004 PAD + 0x0800a058 0x0800a058 0x00000040 Code RO 3341 .text.Task_ai ai_1.o + 0x0800a098 0x0800a098 0x00000178 Code RO 3374 .text.Task_atti_esti atti_esti.o + 0x0800a210 0x0800a210 0x00000094 Code RO 3406 .text.Task_chassis_ctrl chassis_ctrl.o + 0x0800a2a4 0x0800a2a4 0x00000004 PAD + 0x0800a2a8 0x0800a2a8 0x000000e8 Code RO 3350 .text.Task_cmd cmd.o + 0x0800a390 0x0800a390 0x00000068 Code RO 3364 .text.Task_dr16 dr16_1.o + 0x0800a3f8 0x0800a3f8 0x000000b4 Code RO 3394 .text.Task_gimbal_ctrl gimbal_ctrl.o + 0x0800a4ac 0x0800a4ac 0x00000004 PAD + 0x0800a4b0 0x0800a4b0 0x00000084 Code RO 3417 .text.Task_shoot_ctrl shoot_ctrl.o + 0x0800a534 0x0800a534 0x00000004 PAD + 0x0800a538 0x0800a538 0x00000048 Code RO 3439 .text.Task_step_motor step_motor_1.o + 0x0800a580 0x0800a580 0x00000060 Code RO 3460 .text.Task_vofa vofa_1.o + 0x0800a5e0 0x0800a5e0 0x0000000e Code RO 1478 .text.UART_DMAAbortOnError stm32f4xx_hal_uart.o + 0x0800a5ee 0x0800a5ee 0x00000002 PAD + 0x0800a5f0 0x0800a5f0 0x0000004c Code RO 1424 .text.UART_DMAError stm32f4xx_hal_uart.o + 0x0800a63c 0x0800a63c 0x00000084 Code RO 1510 .text.UART_DMAReceiveCplt stm32f4xx_hal_uart.o + 0x0800a6c0 0x0800a6c0 0x0000001e Code RO 1512 .text.UART_DMARxHalfCplt stm32f4xx_hal_uart.o + 0x0800a6de 0x0800a6de 0x00000002 PAD + 0x0800a6e0 0x0800a6e0 0x00000040 Code RO 1420 .text.UART_DMATransmitCplt stm32f4xx_hal_uart.o + 0x0800a720 0x0800a720 0x0000000a Code RO 1422 .text.UART_DMATxHalfCplt stm32f4xx_hal_uart.o + 0x0800a72a 0x0800a72a 0x00000002 PAD + 0x0800a72c 0x0800a72c 0x00000050 Code RO 1438 .text.UART_EndRxTransfer stm32f4xx_hal_uart.o + 0x0800a77c 0x0800a77c 0x00000018 Code RO 1486 .text.UART_EndTransmit_IT stm32f4xx_hal_uart.o + 0x0800a794 0x0800a794 0x0000001c Code RO 1436 .text.UART_EndTxTransfer stm32f4xx_hal_uart.o + 0x0800a7b0 0x0800a7b0 0x00000054 Code RO 2488 .text.UART_Get uart.o + 0x0800a804 0x0800a804 0x000000c8 Code RO 1476 .text.UART_Receive_IT stm32f4xx_hal_uart.o + 0x0800a8cc 0x0800a8cc 0x000000dc Code RO 1394 .text.UART_SetConfig stm32f4xx_hal_uart.o + 0x0800a9a8 0x0800a9a8 0x000000aa Code RO 1428 .text.UART_Start_Receive_DMA stm32f4xx_hal_uart.o + 0x0800aa52 0x0800aa52 0x00000002 PAD + 0x0800aa54 0x0800aa54 0x00000052 Code RO 1484 .text.UART_Transmit_IT stm32f4xx_hal_uart.o + 0x0800aaa6 0x0800aaa6 0x00000002 PAD + 0x0800aaa8 0x0800aaa8 0x00000018 Code RO 196 .text.USART1_IRQHandler stm32f4xx_it.o + 0x0800aac0 0x0800aac0 0x00000018 Code RO 198 .text.USART3_IRQHandler stm32f4xx_it.o + 0x0800aad8 0x0800aad8 0x00000018 Code RO 214 .text.USART6_IRQHandler stm32f4xx_it.o + 0x0800aaf0 0x0800aaf0 0x00000002 Code RO 172 .text.UsageFault_Handler stm32f4xx_it.o + 0x0800aaf2 0x0800aaf2 0x00000002 PAD + 0x0800aaf4 0x0800aaf4 0x000000a8 Code RO 3222 .text.VOFA_FireWater_Send vofa.o + 0x0800ab9c 0x0800ab9c 0x0000003a Code RO 3224 .text.VOFA_JustFloat_Send vofa.o + 0x0800abd6 0x0800abd6 0x00000002 PAD + 0x0800abd8 0x0800abd8 0x00000018 Code RO 3220 .text.VOFA_RawData_Send vofa.o + 0x0800abf0 0x0800abf0 0x000000b0 Code RO 3228 .text.VOFA_Send vofa.o + 0x0800aca0 0x0800aca0 0x00000010 Code RO 3226 .text.VOFA_init vofa.o + 0x0800acb0 0x0800acb0 0x0000000e Code RO 2627 .text.__ARM_isfinitef filter.o + 0x0800acbe 0x0800acbe 0x00000002 PAD + 0x0800acc0 0x0800acc0 0x0000000e Code RO 2700 .text.__ARM_isfinitef pid.o + 0x0800acce 0x0800acce 0x00000002 PAD + 0x0800acd0 0x0800acd0 0x00000010 Code RO 2623 .text.__ARM_isinff filter.o + 0x0800ace0 0x0800ace0 0x00000028 Code RO 610 .text.__NVIC_DisableIRQ stm32f4xx_hal_cortex.o + 0x0800ad08 0x0800ad08 0x00000020 Code RO 606 .text.__NVIC_EnableIRQ stm32f4xx_hal_cortex.o + 0x0800ad28 0x0800ad28 0x00000010 Code RO 598 .text.__NVIC_GetPriorityGrouping stm32f4xx_hal_cortex.o + 0x0800ad38 0x0800ad38 0x00000022 Code RO 600 .text.__NVIC_SetPriority stm32f4xx_hal_cortex.o + 0x0800ad5a 0x0800ad5a 0x00000002 PAD + 0x0800ad5c 0x0800ad5c 0x0000000e Code RO 2136 .text.__NVIC_SetPriority cmsis_os2.o 0x0800ad6a 0x0800ad6a 0x00000002 PAD - 0x0800ad6c 0x0800ad6c 0x00000016 Code RO 2558 .text.copysignf ahrs.o - 0x0800ad82 0x0800ad82 0x00000002 PAD - 0x0800ad84 0x0800ad84 0x0000009c Code RO 1765 .text.eTaskGetState tasks.o - 0x0800ae20 0x0800ae20 0x0000002c Code RO 2985 .text.float_to_uint motor_dm.o - 0x0800ae4c 0x0800ae4c 0x00000004 Code RO 36 .text.getRunTimeCounterValue freertos.o - 0x0800ae50 0x0800ae50 0x0000004a Code RO 11 .text.main main.o - 0x0800ae9a 0x0800ae9a 0x00000002 PAD - 0x0800ae9c 0x0800ae9c 0x00000020 Code RO 3256 .text.major_yaw_Control gimbal.o - 0x0800aebc 0x0800aebc 0x0000001a Code RO 2801 .text.map_fp32 calc_lib.o - 0x0800aed6 0x0800aed6 0x00000002 PAD - 0x0800aed8 0x0800aed8 0x00000044 Code RO 3264 .text.motor_imu_offset gimbal.o - 0x0800af1c 0x0800af1c 0x00000020 Code RO 2038 .text.osDelay cmsis_os2.o - 0x0800af3c 0x0800af3c 0x00000034 Code RO 2040 .text.osDelayUntil cmsis_os2.o - 0x0800af70 0x0800af70 0x00000026 Code RO 1976 .text.osKernelGetState cmsis_os2.o - 0x0800af96 0x0800af96 0x00000002 PAD - 0x0800af98 0x0800af98 0x00000014 Code RO 1988 .text.osKernelGetTickCount cmsis_os2.o - 0x0800afac 0x0800afac 0x00000006 Code RO 1990 .text.osKernelGetTickFreq cmsis_os2.o - 0x0800afb2 0x0800afb2 0x00000002 PAD - 0x0800afb4 0x0800afb4 0x00000028 Code RO 1972 .text.osKernelInitialize cmsis_os2.o - 0x0800afdc 0x0800afdc 0x0000002c Code RO 1982 .text.osKernelLock cmsis_os2.o - 0x0800b008 0x0800b008 0x00000034 Code RO 1978 .text.osKernelStart cmsis_os2.o - 0x0800b03c 0x0800b03c 0x00000044 Code RO 1984 .text.osKernelUnlock cmsis_os2.o - 0x0800b080 0x0800b080 0x00000086 Code RO 2092 .text.osMessageQueueGet cmsis_os2.o - 0x0800b106 0x0800b106 0x00000002 PAD - 0x0800b108 0x0800b108 0x000000a0 Code RO 2088 .text.osMessageQueueNew cmsis_os2.o - 0x0800b1a8 0x0800b1a8 0x0000008e Code RO 2090 .text.osMessageQueuePut cmsis_os2.o - 0x0800b236 0x0800b236 0x00000002 PAD - 0x0800b238 0x0800b238 0x00000024 Code RO 2102 .text.osMessageQueueReset cmsis_os2.o - 0x0800b25c 0x0800b25c 0x00000052 Code RO 2070 .text.osMutexAcquire cmsis_os2.o - 0x0800b2ae 0x0800b2ae 0x00000002 PAD - 0x0800b2b0 0x0800b2b0 0x00000096 Code RO 2068 .text.osMutexNew cmsis_os2.o - 0x0800b346 0x0800b346 0x00000002 PAD - 0x0800b348 0x0800b348 0x0000003e Code RO 2072 .text.osMutexRelease cmsis_os2.o - 0x0800b386 0x0800b386 0x00000002 PAD - 0x0800b388 0x0800b388 0x0000007e Code RO 2030 .text.osThreadFlagsSet cmsis_os2.o - 0x0800b406 0x0800b406 0x00000002 PAD - 0x0800b408 0x0800b408 0x000000ba Code RO 2036 .text.osThreadFlagsWait cmsis_os2.o - 0x0800b4c2 0x0800b4c2 0x00000002 PAD - 0x0800b4c4 0x0800b4c4 0x00000008 Code RO 2006 .text.osThreadGetId cmsis_os2.o - 0x0800b4cc 0x0800b4cc 0x000000b4 Code RO 2002 .text.osThreadNew cmsis_os2.o - 0x0800b580 0x0800b580 0x00000034 Code RO 2024 .text.osThreadTerminate cmsis_os2.o - 0x0800b5b4 0x0800b5b4 0x00000080 Code RO 1759 .text.prvAddCurrentTaskToDelayedList tasks.o - 0x0800b634 0x0800b634 0x000000ac Code RO 1745 .text.prvAddNewTaskToReadyList tasks.o - 0x0800b6e0 0x0800b6e0 0x0000007c Code RO 1903 .text.prvCheckForValidListAndQueue timers.o - 0x0800b75c 0x0800b75c 0x0000004e Code RO 1869 .text.prvCheckTasksWaitingTermination tasks.o - 0x0800b7aa 0x0800b7aa 0x00000002 PAD - 0x0800b7ac 0x0800b7ac 0x00000026 Code RO 1636 .text.prvCopyDataFromQueue queue.o - 0x0800b7d2 0x0800b7d2 0x00000002 PAD - 0x0800b7d4 0x0800b7d4 0x0000007a Code RO 1624 .text.prvCopyDataToQueue queue.o - 0x0800b84e 0x0800b84e 0x00000002 PAD - 0x0800b850 0x0800b850 0x00000036 Code RO 1751 .text.prvDeleteTCB tasks.o - 0x0800b886 0x0800b886 0x00000002 PAD - 0x0800b888 0x0800b888 0x00000012 Code RO 1640 .text.prvGetDisinheritPriorityAfterTimeout queue.o - 0x0800b89a 0x0800b89a 0x00000002 PAD - 0x0800b89c 0x0800b89c 0x00000020 Code RO 1941 .text.prvGetNextExpireTime timers.o - 0x0800b8bc 0x0800b8bc 0x00000078 Code RO 2154 .text.prvHeapInit heap_4.o - 0x0800b934 0x0800b934 0x0000002a Code RO 1785 .text.prvIdleTask tasks.o - 0x0800b95e 0x0800b95e 0x00000002 PAD - 0x0800b960 0x0800b960 0x00000020 Code RO 1604 .text.prvInitialiseMutex queue.o - 0x0800b980 0x0800b980 0x00000020 Code RO 1598 .text.prvInitialiseNewQueue queue.o - 0x0800b9a0 0x0800b9a0 0x0000009a Code RO 1743 .text.prvInitialiseNewTask tasks.o - 0x0800ba3a 0x0800ba3a 0x00000002 PAD - 0x0800ba3c 0x0800ba3c 0x00000070 Code RO 1867 .text.prvInitialiseTaskLists tasks.o - 0x0800baac 0x0800baac 0x0000005a Code RO 2156 .text.prvInsertBlockIntoFreeList heap_4.o - 0x0800bb06 0x0800bb06 0x00000002 PAD - 0x0800bb08 0x0800bb08 0x00000040 Code RO 1953 .text.prvInsertTimerInActiveList timers.o - 0x0800bb48 0x0800bb48 0x00000018 Code RO 1638 .text.prvIsQueueEmpty queue.o - 0x0800bb60 0x0800bb60 0x0000001c Code RO 1626 .text.prvIsQueueFull queue.o - 0x0800bb7c 0x0800bb7c 0x00000028 Code RO 2196 .text.prvPortStartFirstTask port.o - 0x0800bba4 0x0800bba4 0x0000006e Code RO 1949 .text.prvProcessExpiredTimer timers.o - 0x0800bc12 0x0800bc12 0x00000002 PAD - 0x0800bc14 0x0800bc14 0x00000122 Code RO 1945 .text.prvProcessReceivedCommands timers.o - 0x0800bd36 0x0800bd36 0x00000002 PAD - 0x0800bd38 0x0800bd38 0x00000080 Code RO 1943 .text.prvProcessTimerOrBlockTask timers.o - 0x0800bdb8 0x0800bdb8 0x00000028 Code RO 1753 .text.prvResetNextTaskUnblockTime tasks.o - 0x0800bde0 0x0800bde0 0x0000002a Code RO 1947 .text.prvSampleTimeNow timers.o - 0x0800be0a 0x0800be0a 0x00000002 PAD - 0x0800be0c 0x0800be0c 0x0000008e Code RO 1951 .text.prvSwitchTimerLists timers.o - 0x0800be9a 0x0800be9a 0x00000002 PAD - 0x0800be9c 0x0800be9c 0x00000032 Code RO 2186 .text.prvTaskExitError port.o - 0x0800bece 0x0800bece 0x00000002 PAD - 0x0800bed0 0x0800bed0 0x00000016 Code RO 1905 .text.prvTimerTask timers.o - 0x0800bee6 0x0800bee6 0x00000002 PAD - 0x0800bee8 0x0800bee8 0x00000072 Code RO 1628 .text.prvUnlockQueue queue.o - 0x0800bf5a 0x0800bf5a 0x00000002 PAD - 0x0800bf5c 0x0800bf5c 0x0000014a Code RO 2152 .text.pvPortMalloc heap_4.o - 0x0800c0a6 0x0800c0a6 0x00000002 PAD - 0x0800c0a8 0x0800c0a8 0x00000018 Code RO 1851 .text.pvTaskIncrementMutexHeldCount tasks.o - 0x0800c0c0 0x0800c0c0 0x00000028 Code RO 2184 .text.pxPortInitialiseStack port.o - 0x0800c0e8 0x0800c0e8 0x0000002a Code RO 2983 .text.uint_to_float motor_dm.o - 0x0800c112 0x0800c112 0x00000002 PAD - 0x0800c114 0x0800c114 0x00000024 Code RO 1584 .text.uxListRemove list.o - 0x0800c138 0x0800c138 0x0000001a Code RO 2132 .text.vApplicationGetIdleTaskMemory cmsis_os2.o - 0x0800c152 0x0800c152 0x00000002 PAD - 0x0800c154 0x0800c154 0x0000001c Code RO 2134 .text.vApplicationGetTimerTaskMemory cmsis_os2.o - 0x0800c170 0x0800c170 0x00000002 Code RO 38 .text.vApplicationStackOverflowHook freertos.o - 0x0800c172 0x0800c172 0x00000002 PAD - 0x0800c174 0x0800c174 0x00000016 Code RO 1576 .text.vListInitialise list.o - 0x0800c18a 0x0800c18a 0x00000002 PAD - 0x0800c18c 0x0800c18c 0x00000006 Code RO 1578 .text.vListInitialiseItem list.o - 0x0800c192 0x0800c192 0x00000002 PAD - 0x0800c194 0x0800c194 0x0000003a Code RO 1582 .text.vListInsert list.o - 0x0800c1ce 0x0800c1ce 0x00000002 PAD - 0x0800c1d0 0x0800c1d0 0x0000001c Code RO 1580 .text.vListInsertEnd list.o - 0x0800c1ec 0x0800c1ec 0x00000014 Code RO 2194 .text.vPortEnableVFP port.o - 0x0800c200 0x0800c200 0x00000046 Code RO 2200 .text.vPortEnterCritical port.o - 0x0800c246 0x0800c246 0x00000002 PAD - 0x0800c248 0x0800c248 0x0000002e Code RO 2202 .text.vPortExitCritical port.o - 0x0800c276 0x0800c276 0x00000002 PAD - 0x0800c278 0x0800c278 0x0000008a Code RO 2158 .text.vPortFree heap_4.o - 0x0800c302 0x0800c302 0x00000002 PAD - 0x0800c304 0x0800c304 0x00000034 Code RO 2192 .text.vPortSetupTimerInterrupt port.o - 0x0800c338 0x0800c338 0x00000062 Code RO 2208 .text.vPortValidateInterruptPriority port.o - 0x0800c39a 0x0800c39a 0x00000002 PAD - 0x0800c39c 0x0800c39c 0x00000028 Code RO 1668 .text.vQueueAddToRegistry queue.o - 0x0800c3c4 0x0800c3c4 0x00000044 Code RO 1672 .text.vQueueWaitForMessageRestricted queue.o - 0x0800c408 0x0800c408 0x00000054 Code RO 1763 .text.vTaskDelay tasks.o - 0x0800c45c 0x0800c45c 0x000000a8 Code RO 1755 .text.vTaskDelayUntil tasks.o - 0x0800c504 0x0800c504 0x000000c2 Code RO 1749 .text.vTaskDelete tasks.o - 0x0800c5c6 0x0800c5c6 0x00000002 PAD - 0x0800c5c8 0x0800c5c8 0x0000001a Code RO 1817 .text.vTaskInternalSetTimeOutState tasks.o - 0x0800c5e2 0x0800c5e2 0x00000002 PAD - 0x0800c5e4 0x0800c5e4 0x0000000e Code RO 1821 .text.vTaskMissedYield tasks.o - 0x0800c5f2 0x0800c5f2 0x00000002 PAD - 0x0800c5f4 0x0800c5f4 0x00000032 Code RO 1805 .text.vTaskPlaceOnEventList tasks.o - 0x0800c626 0x0800c626 0x00000002 PAD - 0x0800c628 0x0800c628 0x0000003e Code RO 1809 .text.vTaskPlaceOnEventListRestricted tasks.o - 0x0800c666 0x0800c666 0x00000002 PAD - 0x0800c668 0x0800c668 0x000000a4 Code RO 1841 .text.vTaskPriorityDisinheritAfterTimeout tasks.o - 0x0800c70c 0x0800c70c 0x000000a8 Code RO 1783 .text.vTaskStartScheduler tasks.o - 0x0800c7b4 0x0800c7b4 0x00000010 Code RO 1757 .text.vTaskSuspendAll tasks.o - 0x0800c7c4 0x0800c7c4 0x000000e2 Code RO 1775 .text.vTaskSwitchContext tasks.o - 0x0800c8a6 0x0800c8a6 0x00000002 PAD - 0x0800c8a8 0x0800c8a8 0x00000112 Code RO 2190 .text.xPortStartScheduler port.o - 0x0800c9ba 0x0800c9ba 0x00000002 PAD - 0x0800c9bc 0x0800c9bc 0x0000002e Code RO 2206 .text.xPortSysTickHandler port.o - 0x0800c9ea 0x0800c9ea 0x00000002 PAD - 0x0800c9ec 0x0800c9ec 0x00000016 Code RO 1602 .text.xQueueCreateMutex queue.o - 0x0800ca02 0x0800ca02 0x00000002 PAD - 0x0800ca04 0x0800ca04 0x00000022 Code RO 1606 .text.xQueueCreateMutexStatic queue.o - 0x0800ca26 0x0800ca26 0x00000002 PAD - 0x0800ca28 0x0800ca28 0x00000046 Code RO 1600 .text.xQueueGenericCreate queue.o - 0x0800ca6e 0x0800ca6e 0x00000002 PAD - 0x0800ca70 0x0800ca70 0x00000096 Code RO 1596 .text.xQueueGenericCreateStatic queue.o - 0x0800cb06 0x0800cb06 0x00000002 PAD - 0x0800cb08 0x0800cb08 0x0000007e Code RO 1594 .text.xQueueGenericReset queue.o - 0x0800cb86 0x0800cb86 0x00000002 PAD - 0x0800cb88 0x0800cb88 0x000001a2 Code RO 1614 .text.xQueueGenericSend queue.o - 0x0800cd2a 0x0800cd2a 0x00000002 PAD - 0x0800cd2c 0x0800cd2c 0x000000ce Code RO 1630 .text.xQueueGenericSendFromISR queue.o - 0x0800cdfa 0x0800cdfa 0x00000002 PAD - 0x0800cdfc 0x0800cdfc 0x00000042 Code RO 1612 .text.xQueueGiveMutexRecursive queue.o - 0x0800ce3e 0x0800ce3e 0x00000002 PAD - 0x0800ce40 0x0800ce40 0x00000184 Code RO 1634 .text.xQueueReceive queue.o - 0x0800cfc4 0x0800cfc4 0x000000aa Code RO 1644 .text.xQueueReceiveFromISR queue.o - 0x0800d06e 0x0800d06e 0x00000002 PAD - 0x0800d070 0x0800d070 0x000001c6 Code RO 1618 .text.xQueueSemaphoreTake queue.o - 0x0800d236 0x0800d236 0x00000002 PAD - 0x0800d238 0x0800d238 0x0000003c Code RO 1616 .text.xQueueTakeMutexRecursive queue.o - 0x0800d274 0x0800d274 0x00000088 Code RO 1819 .text.xTaskCheckForTimeOut tasks.o - 0x0800d2fc 0x0800d2fc 0x00000066 Code RO 1747 .text.xTaskCreate tasks.o - 0x0800d362 0x0800d362 0x00000002 PAD - 0x0800d364 0x0800d364 0x00000076 Code RO 1741 .text.xTaskCreateStatic tasks.o - 0x0800d3da 0x0800d3da 0x00000002 PAD - 0x0800d3dc 0x0800d3dc 0x000000fc Code RO 1857 .text.xTaskGenericNotify tasks.o - 0x0800d4d8 0x0800d4d8 0x0000012a Code RO 1859 .text.xTaskGenericNotifyFromISR tasks.o - 0x0800d602 0x0800d602 0x00000002 PAD - 0x0800d604 0x0800d604 0x0000000c Code RO 1833 .text.xTaskGetCurrentTaskHandle tasks.o - 0x0800d610 0x0800d610 0x00000026 Code RO 1835 .text.xTaskGetSchedulerState tasks.o - 0x0800d636 0x0800d636 0x00000002 PAD - 0x0800d638 0x0800d638 0x0000000c Code RO 1791 .text.xTaskGetTickCount tasks.o - 0x0800d644 0x0800d644 0x00000012 Code RO 1793 .text.xTaskGetTickCountFromISR tasks.o - 0x0800d656 0x0800d656 0x00000002 PAD - 0x0800d658 0x0800d658 0x00000152 Code RO 1789 .text.xTaskIncrementTick tasks.o - 0x0800d7aa 0x0800d7aa 0x00000002 PAD - 0x0800d7ac 0x0800d7ac 0x00000090 Code RO 1855 .text.xTaskNotifyWait tasks.o - 0x0800d83c 0x0800d83c 0x00000092 Code RO 1839 .text.xTaskPriorityDisinherit tasks.o - 0x0800d8ce 0x0800d8ce 0x00000002 PAD - 0x0800d8d0 0x0800d8d0 0x00000092 Code RO 1837 .text.xTaskPriorityInherit tasks.o - 0x0800d962 0x0800d962 0x00000002 PAD - 0x0800d964 0x0800d964 0x0000008e Code RO 1811 .text.xTaskRemoveFromEventList tasks.o - 0x0800d9f2 0x0800d9f2 0x00000002 PAD - 0x0800d9f4 0x0800d9f4 0x00000114 Code RO 1761 .text.xTaskResumeAll tasks.o - 0x0800db08 0x0800db08 0x00000074 Code RO 1901 .text.xTimerCreateTimerTask timers.o - 0x0800db7c 0x0800db7c 0x00000068 Code RO 1913 .text.xTimerGenericCommand timers.o - 0x0800dbe4 0x0800dbe4 0x0000003e Code RO 3905 CL$$btod_d2e c_w.l(btod.o) - 0x0800dc22 0x0800dc22 0x00000046 Code RO 3907 CL$$btod_d2e_denorm_low c_w.l(btod.o) - 0x0800dc68 0x0800dc68 0x00000060 Code RO 3906 CL$$btod_d2e_norm_op1 c_w.l(btod.o) - 0x0800dcc8 0x0800dcc8 0x00000338 Code RO 3915 CL$$btod_div_common c_w.l(btod.o) - 0x0800e000 0x0800e000 0x000000dc Code RO 3912 CL$$btod_e2e c_w.l(btod.o) - 0x0800e0dc 0x0800e0dc 0x0000002a Code RO 3909 CL$$btod_ediv c_w.l(btod.o) - 0x0800e106 0x0800e106 0x0000002a Code RO 3908 CL$$btod_emul c_w.l(btod.o) - 0x0800e130 0x0800e130 0x00000244 Code RO 3914 CL$$btod_mult_common c_w.l(btod.o) - 0x0800e374 0x0800e374 0x00000030 Code RO 3940 i.__ARM_fpclassify m_wm.l(fpclassify.o) - 0x0800e3a4 0x0800e3a4 0x00000026 Code RO 3843 i.__ARM_fpclassifyf m_wm.l(fpclassifyf.o) - 0x0800e3ca 0x0800e3ca 0x00000002 PAD - 0x0800e3cc 0x0800e3cc 0x0000012c Code RO 3688 i.__hardfp_asinf m_wm.l(asinf.o) - 0x0800e4f8 0x0800e4f8 0x000002d8 Code RO 3816 i.__hardfp_atan m_wm.l(atan.o) - 0x0800e7d0 0x0800e7d0 0x00000200 Code RO 3694 i.__hardfp_atan2 m_wm.l(atan2.o) - 0x0800e9d0 0x0800e9d0 0x000002ac Code RO 3700 i.__hardfp_atan2f m_wm.l(atan2f.o) - 0x0800ec7c 0x0800ec7c 0x0000017c Code RO 3724 i.__hardfp_tanf m_wm.l(tanf.o) - 0x0800edf8 0x0800edf8 0x000000f8 Code RO 3942 i.__kernel_poly m_wm.l(poly.o) - 0x0800eef0 0x0800eef0 0x00000014 Code RO 3824 i.__mathlib_dbl_infnan m_wm.l(dunder.o) - 0x0800ef04 0x0800ef04 0x00000014 Code RO 3825 i.__mathlib_dbl_infnan2 m_wm.l(dunder.o) - 0x0800ef18 0x0800ef18 0x00000020 Code RO 3829 i.__mathlib_dbl_underflow m_wm.l(dunder.o) - 0x0800ef38 0x0800ef38 0x00000006 Code RO 3846 i.__mathlib_flt_infnan m_wm.l(funder.o) - 0x0800ef3e 0x0800ef3e 0x00000006 Code RO 3847 i.__mathlib_flt_infnan2 m_wm.l(funder.o) - 0x0800ef44 0x0800ef44 0x00000010 Code RO 3848 i.__mathlib_flt_invalid m_wm.l(funder.o) - 0x0800ef54 0x0800ef54 0x00000010 Code RO 3851 i.__mathlib_flt_underflow m_wm.l(funder.o) - 0x0800ef64 0x0800ef64 0x00000154 Code RO 3860 i.__mathlib_rredf2 m_wm.l(rredf.o) - 0x0800f0b8 0x0800f0b8 0x0000000e Code RO 3612 i._is_digit c_w.l(__printf_wp.o) - 0x0800f0c6 0x0800f0c6 0x00000010 Code RO 3818 i.atan m_wm.l(atan.o) - 0x0800f0d6 0x0800f0d6 0x00000018 Code RO 3839 i.fabs m_wm.l(fabs.o) - 0x0800f0ee 0x0800f0ee 0x0000003e Code RO 3865 i.sqrtf m_wm.l(sqrtf.o) - 0x0800f12c 0x0800f12c 0x0000002c Code RO 3930 locale$$code c_w.l(lc_numeric_c.o) - 0x0800f158 0x0800f158 0x00000018 Code RO 3797 x$fpl$basic fz_wm.l(basic.o) - 0x0800f170 0x0800f170 0x00000062 Code RO 3656 x$fpl$d2f fz_wm.l(d2f.o) - 0x0800f1d2 0x0800f1d2 0x00000002 PAD - 0x0800f1d4 0x0800f1d4 0x00000150 Code RO 3658 x$fpl$dadd fz_wm.l(daddsub_clz.o) - 0x0800f324 0x0800f324 0x00000018 Code RO 3934 x$fpl$dcmpinf fz_wm.l(dcmpi.o) - 0x0800f33c 0x0800f33c 0x000002b4 Code RO 3667 x$fpl$ddiv fz_wm.l(ddiv.o) - 0x0800f5f0 0x0800f5f0 0x00000078 Code RO 3799 x$fpl$deqf fz_wm.l(deqf.o) - 0x0800f668 0x0800f668 0x0000005a Code RO 3670 x$fpl$dfixu fz_wm.l(dfixu.o) - 0x0800f6c2 0x0800f6c2 0x00000026 Code RO 3674 x$fpl$dfltu fz_wm.l(dflt_clz.o) - 0x0800f6e8 0x0800f6e8 0x00000078 Code RO 3801 x$fpl$dgeqf fz_wm.l(dgeqf.o) - 0x0800f760 0x0800f760 0x00000078 Code RO 3803 x$fpl$dleqf fz_wm.l(dleqf.o) - 0x0800f7d8 0x0800f7d8 0x00000154 Code RO 3680 x$fpl$dmul fz_wm.l(dmul.o) - 0x0800f92c 0x0800f92c 0x0000009c Code RO 3805 x$fpl$dnaninf fz_wm.l(dnaninf.o) - 0x0800f9c8 0x0800f9c8 0x0000000c Code RO 3807 x$fpl$dretinf fz_wm.l(dretinf.o) - 0x0800f9d4 0x0800f9d4 0x00000016 Code RO 3659 x$fpl$drsb fz_wm.l(daddsub_clz.o) - 0x0800f9ea 0x0800f9ea 0x00000002 PAD - 0x0800f9ec 0x0800f9ec 0x000001dc Code RO 3660 x$fpl$dsub fz_wm.l(daddsub_clz.o) - 0x0800fbc8 0x0800fbc8 0x00000056 Code RO 3682 x$fpl$f2d fz_wm.l(f2d.o) - 0x0800fc1e 0x0800fc1e 0x00000054 Code RO 3664 x$fpl$fcmp fz_wm.l(dcmp.o) - 0x0800fc72 0x0800fc72 0x00000060 Code RO 3684 x$fpl$ffltll fz_wm.l(ffltll_clz.o) - 0x0800fcd2 0x0800fcd2 0x0000008c Code RO 3811 x$fpl$fnaninf fz_wm.l(fnaninf.o) - 0x0800fd5e 0x0800fd5e 0x0000001a Code RO 3936 x$fpl$fpinit fz_wm.l(fpinit.o) - 0x0800fd78 0x0800fd78 0x0000000a Code RO 3813 x$fpl$fretinf fz_wm.l(fretinf.o) - 0x0800fd82 0x0800fd82 0x00000004 Code RO 3686 x$fpl$printf1 fz_wm.l(printf1.o) - 0x0800fd86 0x0800fd86 0x00000000 Code RO 3815 x$fpl$usenofp fz_wm.l(usenofp.o) - 0x0800fd86 0x0800fd86 0x00000002 PAD - 0x0800fd88 0x0800fd88 0x00000098 Data RO 3819 .constdata m_wm.l(atan.o) - 0x0800fe20 0x0800fe20 0x00000008 Data RO 3859 .constdata m_wm.l(qnan.o) - 0x0800fe28 0x0800fe28 0x00000020 Data RO 3861 .constdata m_wm.l(rredf.o) - 0x0800fe48 0x0800fe48 0x00000094 Data RO 3903 .constdata c_w.l(bigflt0.o) - 0x0800fedc 0x0800fedc 0x00000010 Data RO 1527 .rodata.AHBPrescTable system_stm32f4xx.o - 0x0800feec 0x0800feec 0x00000008 Data RO 1528 .rodata.APBPrescTable system_stm32f4xx.o - 0x0800fef4 0x0800fef4 0x00000068 Data RO 2359 .rodata.GPIO_Map gpio_1.o - 0x0800ff5c 0x0800ff5c 0x00000010 Data RO 2541 .rodata.PWM_Map pwm.o - 0x0800ff6c 0x0800ff6c 0x00000024 Data RO 3479 .rodata.attr_ET16s user_task.o - 0x0800ff90 0x0800ff90 0x00000024 Data RO 3471 .rodata.attr_ai user_task.o - 0x0800ffb4 0x0800ffb4 0x00000024 Data RO 3475 .rodata.attr_atti_esti user_task.o - 0x0800ffd8 0x0800ffd8 0x00000024 Data RO 3473 .rodata.attr_chassis_ctrl user_task.o - 0x0800fffc 0x0800fffc 0x00000024 Data RO 3477 .rodata.attr_cmd user_task.o - 0x08010020 0x08010020 0x00000024 Data RO 3476 .rodata.attr_dr16 user_task.o - 0x08010044 0x08010044 0x00000024 Data RO 3472 .rodata.attr_gimbal_ctrl user_task.o - 0x08010068 0x08010068 0x00000024 Data RO 3470 .rodata.attr_init user_task.o - 0x0801008c 0x0801008c 0x00000024 Data RO 3474 .rodata.attr_shoot_ctrl user_task.o - 0x080100b0 0x080100b0 0x00000024 Data RO 3478 .rodata.attr_step_motor user_task.o - 0x080100d4 0x080100d4 0x00000024 Data RO 3480 .rodata.attr_vofa user_task.o - 0x080100f8 0x080100f8 0x00000010 Data RO 3330 .rodata.cst16 chassis.o - 0x08010108 0x08010108 0x00000024 Data RO 45 .rodata.defaultTask_attributes freertos.o - 0x0801012c 0x0801012c 0x000000b0 Data RO 3575 .rodata.g_behavior_configs cmd_behavior.o - 0x080101dc 0x080101dc 0x00000020 Data RO 3379 .rodata.imu_temp_ctrl_pid_param atti_esti.o - 0x080101fc 0x080101fc 0x0000000c Data RO 44 .rodata.str1.1 freertos.o - 0x08010208 0x08010208 0x00000002 Data RO 3229 .rodata.str1.1 vofa.o - 0x0801020a 0x0801020a 0x0000005a Data RO 3469 .rodata.str1.1 user_task.o - 0x08010264 0x08010264 0x00000040 Data RO 4049 Region$$Table anon$$obj.o - 0x080102a4 0x080102a4 0x0000001c Data RO 3929 locale$$data c_w.l(lc_numeric_c.o) + 0x0800ad6c 0x0800ad6c 0x00000020 Code RO 594 .text.__NVIC_SetPriorityGrouping stm32f4xx_hal_cortex.o + 0x0800ad8c 0x0800ad8c 0x000001be Code RO 3314 .text.chassis_init chassis.o + 0x0800af4a 0x0800af4a 0x00000002 PAD + 0x0800af4c 0x0800af4c 0x00000002 Code RO 34 .text.configureTimerForRunTimeStats freertos.o + 0x0800af4e 0x0800af4e 0x00000002 PAD + 0x0800af50 0x0800af50 0x00000016 Code RO 2558 .text.copysignf ahrs.o + 0x0800af66 0x0800af66 0x00000002 PAD + 0x0800af68 0x0800af68 0x0000009c Code RO 1765 .text.eTaskGetState tasks.o + 0x0800b004 0x0800b004 0x0000002c Code RO 2985 .text.float_to_uint motor_dm.o + 0x0800b030 0x0800b030 0x00000004 Code RO 36 .text.getRunTimeCounterValue freertos.o + 0x0800b034 0x0800b034 0x0000004a Code RO 11 .text.main main.o + 0x0800b07e 0x0800b07e 0x00000002 PAD + 0x0800b080 0x0800b080 0x00000020 Code RO 3258 .text.major_yaw_Control gimbal.o + 0x0800b0a0 0x0800b0a0 0x0000001a Code RO 2801 .text.map_fp32 calc_lib.o + 0x0800b0ba 0x0800b0ba 0x00000002 PAD + 0x0800b0bc 0x0800b0bc 0x00000068 Code RO 3312 .text.motor_add_anagle chassis.o + 0x0800b124 0x0800b124 0x00000044 Code RO 3266 .text.motor_imu_offset gimbal.o + 0x0800b168 0x0800b168 0x00000020 Code RO 2038 .text.osDelay cmsis_os2.o + 0x0800b188 0x0800b188 0x00000034 Code RO 2040 .text.osDelayUntil cmsis_os2.o + 0x0800b1bc 0x0800b1bc 0x00000026 Code RO 1976 .text.osKernelGetState cmsis_os2.o + 0x0800b1e2 0x0800b1e2 0x00000002 PAD + 0x0800b1e4 0x0800b1e4 0x00000014 Code RO 1988 .text.osKernelGetTickCount cmsis_os2.o + 0x0800b1f8 0x0800b1f8 0x00000006 Code RO 1990 .text.osKernelGetTickFreq cmsis_os2.o + 0x0800b1fe 0x0800b1fe 0x00000002 PAD + 0x0800b200 0x0800b200 0x00000028 Code RO 1972 .text.osKernelInitialize cmsis_os2.o + 0x0800b228 0x0800b228 0x0000002c Code RO 1982 .text.osKernelLock cmsis_os2.o + 0x0800b254 0x0800b254 0x00000034 Code RO 1978 .text.osKernelStart cmsis_os2.o + 0x0800b288 0x0800b288 0x00000044 Code RO 1984 .text.osKernelUnlock cmsis_os2.o + 0x0800b2cc 0x0800b2cc 0x00000086 Code RO 2092 .text.osMessageQueueGet cmsis_os2.o + 0x0800b352 0x0800b352 0x00000002 PAD + 0x0800b354 0x0800b354 0x000000a0 Code RO 2088 .text.osMessageQueueNew cmsis_os2.o + 0x0800b3f4 0x0800b3f4 0x0000008e Code RO 2090 .text.osMessageQueuePut cmsis_os2.o + 0x0800b482 0x0800b482 0x00000002 PAD + 0x0800b484 0x0800b484 0x00000024 Code RO 2102 .text.osMessageQueueReset cmsis_os2.o + 0x0800b4a8 0x0800b4a8 0x00000052 Code RO 2070 .text.osMutexAcquire cmsis_os2.o + 0x0800b4fa 0x0800b4fa 0x00000002 PAD + 0x0800b4fc 0x0800b4fc 0x00000096 Code RO 2068 .text.osMutexNew cmsis_os2.o + 0x0800b592 0x0800b592 0x00000002 PAD + 0x0800b594 0x0800b594 0x0000003e Code RO 2072 .text.osMutexRelease cmsis_os2.o + 0x0800b5d2 0x0800b5d2 0x00000002 PAD + 0x0800b5d4 0x0800b5d4 0x0000007e Code RO 2030 .text.osThreadFlagsSet cmsis_os2.o + 0x0800b652 0x0800b652 0x00000002 PAD + 0x0800b654 0x0800b654 0x000000ba Code RO 2036 .text.osThreadFlagsWait cmsis_os2.o + 0x0800b70e 0x0800b70e 0x00000002 PAD + 0x0800b710 0x0800b710 0x00000008 Code RO 2006 .text.osThreadGetId cmsis_os2.o + 0x0800b718 0x0800b718 0x000000b4 Code RO 2002 .text.osThreadNew cmsis_os2.o + 0x0800b7cc 0x0800b7cc 0x00000034 Code RO 2024 .text.osThreadTerminate cmsis_os2.o + 0x0800b800 0x0800b800 0x00000080 Code RO 1759 .text.prvAddCurrentTaskToDelayedList tasks.o + 0x0800b880 0x0800b880 0x000000ac Code RO 1745 .text.prvAddNewTaskToReadyList tasks.o + 0x0800b92c 0x0800b92c 0x0000007c Code RO 1903 .text.prvCheckForValidListAndQueue timers.o + 0x0800b9a8 0x0800b9a8 0x0000004e Code RO 1869 .text.prvCheckTasksWaitingTermination tasks.o + 0x0800b9f6 0x0800b9f6 0x00000002 PAD + 0x0800b9f8 0x0800b9f8 0x00000026 Code RO 1636 .text.prvCopyDataFromQueue queue.o + 0x0800ba1e 0x0800ba1e 0x00000002 PAD + 0x0800ba20 0x0800ba20 0x0000007a Code RO 1624 .text.prvCopyDataToQueue queue.o + 0x0800ba9a 0x0800ba9a 0x00000002 PAD + 0x0800ba9c 0x0800ba9c 0x00000036 Code RO 1751 .text.prvDeleteTCB tasks.o + 0x0800bad2 0x0800bad2 0x00000002 PAD + 0x0800bad4 0x0800bad4 0x00000012 Code RO 1640 .text.prvGetDisinheritPriorityAfterTimeout queue.o + 0x0800bae6 0x0800bae6 0x00000002 PAD + 0x0800bae8 0x0800bae8 0x00000020 Code RO 1941 .text.prvGetNextExpireTime timers.o + 0x0800bb08 0x0800bb08 0x00000078 Code RO 2154 .text.prvHeapInit heap_4.o + 0x0800bb80 0x0800bb80 0x0000002a Code RO 1785 .text.prvIdleTask tasks.o + 0x0800bbaa 0x0800bbaa 0x00000002 PAD + 0x0800bbac 0x0800bbac 0x00000020 Code RO 1604 .text.prvInitialiseMutex queue.o + 0x0800bbcc 0x0800bbcc 0x00000020 Code RO 1598 .text.prvInitialiseNewQueue queue.o + 0x0800bbec 0x0800bbec 0x0000009a Code RO 1743 .text.prvInitialiseNewTask tasks.o + 0x0800bc86 0x0800bc86 0x00000002 PAD + 0x0800bc88 0x0800bc88 0x00000070 Code RO 1867 .text.prvInitialiseTaskLists tasks.o + 0x0800bcf8 0x0800bcf8 0x0000005a Code RO 2156 .text.prvInsertBlockIntoFreeList heap_4.o + 0x0800bd52 0x0800bd52 0x00000002 PAD + 0x0800bd54 0x0800bd54 0x00000040 Code RO 1953 .text.prvInsertTimerInActiveList timers.o + 0x0800bd94 0x0800bd94 0x00000018 Code RO 1638 .text.prvIsQueueEmpty queue.o + 0x0800bdac 0x0800bdac 0x0000001c Code RO 1626 .text.prvIsQueueFull queue.o + 0x0800bdc8 0x0800bdc8 0x00000028 Code RO 2196 .text.prvPortStartFirstTask port.o + 0x0800bdf0 0x0800bdf0 0x0000006e Code RO 1949 .text.prvProcessExpiredTimer timers.o + 0x0800be5e 0x0800be5e 0x00000002 PAD + 0x0800be60 0x0800be60 0x00000122 Code RO 1945 .text.prvProcessReceivedCommands timers.o + 0x0800bf82 0x0800bf82 0x00000002 PAD + 0x0800bf84 0x0800bf84 0x00000080 Code RO 1943 .text.prvProcessTimerOrBlockTask timers.o + 0x0800c004 0x0800c004 0x00000028 Code RO 1753 .text.prvResetNextTaskUnblockTime tasks.o + 0x0800c02c 0x0800c02c 0x0000002a Code RO 1947 .text.prvSampleTimeNow timers.o + 0x0800c056 0x0800c056 0x00000002 PAD + 0x0800c058 0x0800c058 0x0000008e Code RO 1951 .text.prvSwitchTimerLists timers.o + 0x0800c0e6 0x0800c0e6 0x00000002 PAD + 0x0800c0e8 0x0800c0e8 0x00000032 Code RO 2186 .text.prvTaskExitError port.o + 0x0800c11a 0x0800c11a 0x00000002 PAD + 0x0800c11c 0x0800c11c 0x00000016 Code RO 1905 .text.prvTimerTask timers.o + 0x0800c132 0x0800c132 0x00000002 PAD + 0x0800c134 0x0800c134 0x00000072 Code RO 1628 .text.prvUnlockQueue queue.o + 0x0800c1a6 0x0800c1a6 0x00000002 PAD + 0x0800c1a8 0x0800c1a8 0x0000014a Code RO 2152 .text.pvPortMalloc heap_4.o + 0x0800c2f2 0x0800c2f2 0x00000002 PAD + 0x0800c2f4 0x0800c2f4 0x00000018 Code RO 1851 .text.pvTaskIncrementMutexHeldCount tasks.o + 0x0800c30c 0x0800c30c 0x00000028 Code RO 2184 .text.pxPortInitialiseStack port.o + 0x0800c334 0x0800c334 0x0000002a Code RO 2983 .text.uint_to_float motor_dm.o + 0x0800c35e 0x0800c35e 0x00000002 PAD + 0x0800c360 0x0800c360 0x00000024 Code RO 1584 .text.uxListRemove list.o + 0x0800c384 0x0800c384 0x0000001a Code RO 2132 .text.vApplicationGetIdleTaskMemory cmsis_os2.o + 0x0800c39e 0x0800c39e 0x00000002 PAD + 0x0800c3a0 0x0800c3a0 0x0000001c Code RO 2134 .text.vApplicationGetTimerTaskMemory cmsis_os2.o + 0x0800c3bc 0x0800c3bc 0x00000002 Code RO 38 .text.vApplicationStackOverflowHook freertos.o + 0x0800c3be 0x0800c3be 0x00000002 PAD + 0x0800c3c0 0x0800c3c0 0x00000016 Code RO 1576 .text.vListInitialise list.o + 0x0800c3d6 0x0800c3d6 0x00000002 PAD + 0x0800c3d8 0x0800c3d8 0x00000006 Code RO 1578 .text.vListInitialiseItem list.o + 0x0800c3de 0x0800c3de 0x00000002 PAD + 0x0800c3e0 0x0800c3e0 0x0000003a Code RO 1582 .text.vListInsert list.o + 0x0800c41a 0x0800c41a 0x00000002 PAD + 0x0800c41c 0x0800c41c 0x0000001c Code RO 1580 .text.vListInsertEnd list.o + 0x0800c438 0x0800c438 0x00000014 Code RO 2194 .text.vPortEnableVFP port.o + 0x0800c44c 0x0800c44c 0x00000046 Code RO 2200 .text.vPortEnterCritical port.o + 0x0800c492 0x0800c492 0x00000002 PAD + 0x0800c494 0x0800c494 0x0000002e Code RO 2202 .text.vPortExitCritical port.o + 0x0800c4c2 0x0800c4c2 0x00000002 PAD + 0x0800c4c4 0x0800c4c4 0x0000008a Code RO 2158 .text.vPortFree heap_4.o + 0x0800c54e 0x0800c54e 0x00000002 PAD + 0x0800c550 0x0800c550 0x00000034 Code RO 2192 .text.vPortSetupTimerInterrupt port.o + 0x0800c584 0x0800c584 0x00000062 Code RO 2208 .text.vPortValidateInterruptPriority port.o + 0x0800c5e6 0x0800c5e6 0x00000002 PAD + 0x0800c5e8 0x0800c5e8 0x00000028 Code RO 1668 .text.vQueueAddToRegistry queue.o + 0x0800c610 0x0800c610 0x00000044 Code RO 1672 .text.vQueueWaitForMessageRestricted queue.o + 0x0800c654 0x0800c654 0x00000054 Code RO 1763 .text.vTaskDelay tasks.o + 0x0800c6a8 0x0800c6a8 0x000000a8 Code RO 1755 .text.vTaskDelayUntil tasks.o + 0x0800c750 0x0800c750 0x000000c2 Code RO 1749 .text.vTaskDelete tasks.o + 0x0800c812 0x0800c812 0x00000002 PAD + 0x0800c814 0x0800c814 0x0000001a Code RO 1817 .text.vTaskInternalSetTimeOutState tasks.o + 0x0800c82e 0x0800c82e 0x00000002 PAD + 0x0800c830 0x0800c830 0x0000000e Code RO 1821 .text.vTaskMissedYield tasks.o + 0x0800c83e 0x0800c83e 0x00000002 PAD + 0x0800c840 0x0800c840 0x00000032 Code RO 1805 .text.vTaskPlaceOnEventList tasks.o + 0x0800c872 0x0800c872 0x00000002 PAD + 0x0800c874 0x0800c874 0x0000003e Code RO 1809 .text.vTaskPlaceOnEventListRestricted tasks.o + 0x0800c8b2 0x0800c8b2 0x00000002 PAD + 0x0800c8b4 0x0800c8b4 0x000000a4 Code RO 1841 .text.vTaskPriorityDisinheritAfterTimeout tasks.o + 0x0800c958 0x0800c958 0x000000a8 Code RO 1783 .text.vTaskStartScheduler tasks.o + 0x0800ca00 0x0800ca00 0x00000010 Code RO 1757 .text.vTaskSuspendAll tasks.o + 0x0800ca10 0x0800ca10 0x000000e2 Code RO 1775 .text.vTaskSwitchContext tasks.o + 0x0800caf2 0x0800caf2 0x00000002 PAD + 0x0800caf4 0x0800caf4 0x00000112 Code RO 2190 .text.xPortStartScheduler port.o + 0x0800cc06 0x0800cc06 0x00000002 PAD + 0x0800cc08 0x0800cc08 0x0000002e Code RO 2206 .text.xPortSysTickHandler port.o + 0x0800cc36 0x0800cc36 0x00000002 PAD + 0x0800cc38 0x0800cc38 0x00000016 Code RO 1602 .text.xQueueCreateMutex queue.o + 0x0800cc4e 0x0800cc4e 0x00000002 PAD + 0x0800cc50 0x0800cc50 0x00000022 Code RO 1606 .text.xQueueCreateMutexStatic queue.o + 0x0800cc72 0x0800cc72 0x00000002 PAD + 0x0800cc74 0x0800cc74 0x00000046 Code RO 1600 .text.xQueueGenericCreate queue.o + 0x0800ccba 0x0800ccba 0x00000002 PAD + 0x0800ccbc 0x0800ccbc 0x00000096 Code RO 1596 .text.xQueueGenericCreateStatic queue.o + 0x0800cd52 0x0800cd52 0x00000002 PAD + 0x0800cd54 0x0800cd54 0x0000007e Code RO 1594 .text.xQueueGenericReset queue.o + 0x0800cdd2 0x0800cdd2 0x00000002 PAD + 0x0800cdd4 0x0800cdd4 0x000001a2 Code RO 1614 .text.xQueueGenericSend queue.o + 0x0800cf76 0x0800cf76 0x00000002 PAD + 0x0800cf78 0x0800cf78 0x000000ce Code RO 1630 .text.xQueueGenericSendFromISR queue.o + 0x0800d046 0x0800d046 0x00000002 PAD + 0x0800d048 0x0800d048 0x00000042 Code RO 1612 .text.xQueueGiveMutexRecursive queue.o + 0x0800d08a 0x0800d08a 0x00000002 PAD + 0x0800d08c 0x0800d08c 0x00000184 Code RO 1634 .text.xQueueReceive queue.o + 0x0800d210 0x0800d210 0x000000aa Code RO 1644 .text.xQueueReceiveFromISR queue.o + 0x0800d2ba 0x0800d2ba 0x00000002 PAD + 0x0800d2bc 0x0800d2bc 0x000001c6 Code RO 1618 .text.xQueueSemaphoreTake queue.o + 0x0800d482 0x0800d482 0x00000002 PAD + 0x0800d484 0x0800d484 0x0000003c Code RO 1616 .text.xQueueTakeMutexRecursive queue.o + 0x0800d4c0 0x0800d4c0 0x00000088 Code RO 1819 .text.xTaskCheckForTimeOut tasks.o + 0x0800d548 0x0800d548 0x00000066 Code RO 1747 .text.xTaskCreate tasks.o + 0x0800d5ae 0x0800d5ae 0x00000002 PAD + 0x0800d5b0 0x0800d5b0 0x00000076 Code RO 1741 .text.xTaskCreateStatic tasks.o + 0x0800d626 0x0800d626 0x00000002 PAD + 0x0800d628 0x0800d628 0x000000fc Code RO 1857 .text.xTaskGenericNotify tasks.o + 0x0800d724 0x0800d724 0x0000012a Code RO 1859 .text.xTaskGenericNotifyFromISR tasks.o + 0x0800d84e 0x0800d84e 0x00000002 PAD + 0x0800d850 0x0800d850 0x0000000c Code RO 1833 .text.xTaskGetCurrentTaskHandle tasks.o + 0x0800d85c 0x0800d85c 0x00000026 Code RO 1835 .text.xTaskGetSchedulerState tasks.o + 0x0800d882 0x0800d882 0x00000002 PAD + 0x0800d884 0x0800d884 0x0000000c Code RO 1791 .text.xTaskGetTickCount tasks.o + 0x0800d890 0x0800d890 0x00000012 Code RO 1793 .text.xTaskGetTickCountFromISR tasks.o + 0x0800d8a2 0x0800d8a2 0x00000002 PAD + 0x0800d8a4 0x0800d8a4 0x00000152 Code RO 1789 .text.xTaskIncrementTick tasks.o + 0x0800d9f6 0x0800d9f6 0x00000002 PAD + 0x0800d9f8 0x0800d9f8 0x00000090 Code RO 1855 .text.xTaskNotifyWait tasks.o + 0x0800da88 0x0800da88 0x00000092 Code RO 1839 .text.xTaskPriorityDisinherit tasks.o + 0x0800db1a 0x0800db1a 0x00000002 PAD + 0x0800db1c 0x0800db1c 0x00000092 Code RO 1837 .text.xTaskPriorityInherit tasks.o + 0x0800dbae 0x0800dbae 0x00000002 PAD + 0x0800dbb0 0x0800dbb0 0x0000008e Code RO 1811 .text.xTaskRemoveFromEventList tasks.o + 0x0800dc3e 0x0800dc3e 0x00000002 PAD + 0x0800dc40 0x0800dc40 0x00000114 Code RO 1761 .text.xTaskResumeAll tasks.o + 0x0800dd54 0x0800dd54 0x00000074 Code RO 1901 .text.xTimerCreateTimerTask timers.o + 0x0800ddc8 0x0800ddc8 0x00000068 Code RO 1913 .text.xTimerGenericCommand timers.o + 0x0800de30 0x0800de30 0x0000003e Code RO 3914 CL$$btod_d2e c_w.l(btod.o) + 0x0800de6e 0x0800de6e 0x00000046 Code RO 3916 CL$$btod_d2e_denorm_low c_w.l(btod.o) + 0x0800deb4 0x0800deb4 0x00000060 Code RO 3915 CL$$btod_d2e_norm_op1 c_w.l(btod.o) + 0x0800df14 0x0800df14 0x00000338 Code RO 3924 CL$$btod_div_common c_w.l(btod.o) + 0x0800e24c 0x0800e24c 0x000000dc Code RO 3921 CL$$btod_e2e c_w.l(btod.o) + 0x0800e328 0x0800e328 0x0000002a Code RO 3918 CL$$btod_ediv c_w.l(btod.o) + 0x0800e352 0x0800e352 0x0000002a Code RO 3917 CL$$btod_emul c_w.l(btod.o) + 0x0800e37c 0x0800e37c 0x00000244 Code RO 3923 CL$$btod_mult_common c_w.l(btod.o) + 0x0800e5c0 0x0800e5c0 0x00000030 Code RO 3949 i.__ARM_fpclassify m_wm.l(fpclassify.o) + 0x0800e5f0 0x0800e5f0 0x00000026 Code RO 3852 i.__ARM_fpclassifyf m_wm.l(fpclassifyf.o) + 0x0800e616 0x0800e616 0x00000002 PAD + 0x0800e618 0x0800e618 0x0000012c Code RO 3689 i.__hardfp_asinf m_wm.l(asinf.o) + 0x0800e744 0x0800e744 0x00000004 PAD + 0x0800e748 0x0800e748 0x000002d8 Code RO 3825 i.__hardfp_atan m_wm.l(atan.o) + 0x0800ea20 0x0800ea20 0x00000200 Code RO 3695 i.__hardfp_atan2 m_wm.l(atan2.o) + 0x0800ec20 0x0800ec20 0x000002ac Code RO 3701 i.__hardfp_atan2f m_wm.l(atan2f.o) + 0x0800eecc 0x0800eecc 0x00000150 Code RO 3707 i.__hardfp_cosf m_wm.l(cosf.o) + 0x0800f01c 0x0800f01c 0x00000104 Code RO 3713 i.__hardfp_fmod m_wm.l(fmod.o) + 0x0800f120 0x0800f120 0x00000190 Code RO 3719 i.__hardfp_sinf m_wm.l(sinf.o) + 0x0800f2b0 0x0800f2b0 0x0000007a Code RO 3725 i.__hardfp_sqrt m_wm.l(sqrt.o) + 0x0800f32a 0x0800f32a 0x00000002 PAD + 0x0800f32c 0x0800f32c 0x0000017c Code RO 3731 i.__hardfp_tanf m_wm.l(tanf.o) + 0x0800f4a8 0x0800f4a8 0x000000f8 Code RO 3951 i.__kernel_poly m_wm.l(poly.o) + 0x0800f5a0 0x0800f5a0 0x00000014 Code RO 3833 i.__mathlib_dbl_infnan m_wm.l(dunder.o) + 0x0800f5b4 0x0800f5b4 0x00000014 Code RO 3834 i.__mathlib_dbl_infnan2 m_wm.l(dunder.o) + 0x0800f5c8 0x0800f5c8 0x00000020 Code RO 3835 i.__mathlib_dbl_invalid m_wm.l(dunder.o) + 0x0800f5e8 0x0800f5e8 0x00000020 Code RO 3838 i.__mathlib_dbl_underflow m_wm.l(dunder.o) + 0x0800f608 0x0800f608 0x00000006 Code RO 3855 i.__mathlib_flt_infnan m_wm.l(funder.o) + 0x0800f60e 0x0800f60e 0x00000006 Code RO 3856 i.__mathlib_flt_infnan2 m_wm.l(funder.o) + 0x0800f614 0x0800f614 0x00000010 Code RO 3857 i.__mathlib_flt_invalid m_wm.l(funder.o) + 0x0800f624 0x0800f624 0x00000010 Code RO 3860 i.__mathlib_flt_underflow m_wm.l(funder.o) + 0x0800f634 0x0800f634 0x00000154 Code RO 3869 i.__mathlib_rredf2 m_wm.l(rredf.o) + 0x0800f788 0x0800f788 0x0000000e Code RO 3613 i._is_digit c_w.l(__printf_wp.o) + 0x0800f796 0x0800f796 0x00000010 Code RO 3827 i.atan m_wm.l(atan.o) + 0x0800f7a6 0x0800f7a6 0x00000018 Code RO 3848 i.fabs m_wm.l(fabs.o) + 0x0800f7be 0x0800f7be 0x0000003e Code RO 3874 i.sqrtf m_wm.l(sqrtf.o) + 0x0800f7fc 0x0800f7fc 0x0000002c Code RO 3939 locale$$code c_w.l(lc_numeric_c.o) + 0x0800f828 0x0800f828 0x00000018 Code RO 3804 x$fpl$basic fz_wm.l(basic.o) + 0x0800f840 0x0800f840 0x00000062 Code RO 3657 x$fpl$d2f fz_wm.l(d2f.o) + 0x0800f8a2 0x0800f8a2 0x00000002 PAD + 0x0800f8a4 0x0800f8a4 0x00000150 Code RO 3659 x$fpl$dadd fz_wm.l(daddsub_clz.o) + 0x0800f9f4 0x0800f9f4 0x00000018 Code RO 3943 x$fpl$dcmpinf fz_wm.l(dcmpi.o) + 0x0800fa0c 0x0800fa0c 0x000002b4 Code RO 3668 x$fpl$ddiv fz_wm.l(ddiv.o) + 0x0800fcc0 0x0800fcc0 0x00000078 Code RO 3806 x$fpl$deqf fz_wm.l(deqf.o) + 0x0800fd38 0x0800fd38 0x0000005a Code RO 3671 x$fpl$dfixu fz_wm.l(dfixu.o) + 0x0800fd92 0x0800fd92 0x00000026 Code RO 3675 x$fpl$dfltu fz_wm.l(dflt_clz.o) + 0x0800fdb8 0x0800fdb8 0x00000078 Code RO 3808 x$fpl$dgeqf fz_wm.l(dgeqf.o) + 0x0800fe30 0x0800fe30 0x00000078 Code RO 3810 x$fpl$dleqf fz_wm.l(dleqf.o) + 0x0800fea8 0x0800fea8 0x00000154 Code RO 3681 x$fpl$dmul fz_wm.l(dmul.o) + 0x0800fffc 0x0800fffc 0x0000009c Code RO 3812 x$fpl$dnaninf fz_wm.l(dnaninf.o) + 0x08010098 0x08010098 0x00000150 Code RO 3814 x$fpl$drem fz_wm.l(drem_clz.o) + 0x080101e8 0x080101e8 0x0000000c Code RO 3816 x$fpl$dretinf fz_wm.l(dretinf.o) + 0x080101f4 0x080101f4 0x00000016 Code RO 3660 x$fpl$drsb fz_wm.l(daddsub_clz.o) + 0x0801020a 0x0801020a 0x00000002 PAD + 0x0801020c 0x0801020c 0x00000198 Code RO 3818 x$fpl$dsqrt fz_wm.l(dsqrt_umaal.o) + 0x080103a4 0x080103a4 0x000001dc Code RO 3661 x$fpl$dsub fz_wm.l(daddsub_clz.o) + 0x08010580 0x08010580 0x00000056 Code RO 3683 x$fpl$f2d fz_wm.l(f2d.o) + 0x080105d6 0x080105d6 0x00000054 Code RO 3665 x$fpl$fcmp fz_wm.l(dcmp.o) + 0x0801062a 0x0801062a 0x00000060 Code RO 3685 x$fpl$ffltll fz_wm.l(ffltll_clz.o) + 0x0801068a 0x0801068a 0x0000008c Code RO 3820 x$fpl$fnaninf fz_wm.l(fnaninf.o) + 0x08010716 0x08010716 0x0000001a Code RO 3945 x$fpl$fpinit fz_wm.l(fpinit.o) + 0x08010730 0x08010730 0x0000000a Code RO 3822 x$fpl$fretinf fz_wm.l(fretinf.o) + 0x0801073a 0x0801073a 0x00000004 Code RO 3687 x$fpl$printf1 fz_wm.l(printf1.o) + 0x0801073e 0x0801073e 0x00000000 Code RO 3824 x$fpl$usenofp fz_wm.l(usenofp.o) + 0x0801073e 0x0801073e 0x00000002 PAD + 0x08010740 0x08010740 0x00000098 Data RO 3828 .constdata m_wm.l(atan.o) + 0x080107d8 0x080107d8 0x00000008 Data RO 3868 .constdata m_wm.l(qnan.o) + 0x080107e0 0x080107e0 0x00000020 Data RO 3870 .constdata m_wm.l(rredf.o) + 0x08010800 0x08010800 0x00000094 Data RO 3912 .constdata c_w.l(bigflt0.o) + 0x08010894 0x08010894 0x00000010 Data RO 1527 .rodata.AHBPrescTable system_stm32f4xx.o + 0x080108a4 0x080108a4 0x00000008 Data RO 1528 .rodata.APBPrescTable system_stm32f4xx.o + 0x080108ac 0x080108ac 0x00000058 Data RO 2359 .rodata.GPIO_Map gpio_1.o + 0x08010904 0x08010904 0x00000010 Data RO 2541 .rodata.PWM_Map pwm.o + 0x08010914 0x08010914 0x00000024 Data RO 3480 .rodata.attr_ET16s user_task.o + 0x08010938 0x08010938 0x00000024 Data RO 3472 .rodata.attr_ai user_task.o + 0x0801095c 0x0801095c 0x00000024 Data RO 3476 .rodata.attr_atti_esti user_task.o + 0x08010980 0x08010980 0x00000024 Data RO 3474 .rodata.attr_chassis_ctrl user_task.o + 0x080109a4 0x080109a4 0x00000024 Data RO 3478 .rodata.attr_cmd user_task.o + 0x080109c8 0x080109c8 0x00000024 Data RO 3477 .rodata.attr_dr16 user_task.o + 0x080109ec 0x080109ec 0x00000024 Data RO 3473 .rodata.attr_gimbal_ctrl user_task.o + 0x08010a10 0x08010a10 0x00000024 Data RO 3471 .rodata.attr_init user_task.o + 0x08010a34 0x08010a34 0x00000024 Data RO 3475 .rodata.attr_shoot_ctrl user_task.o + 0x08010a58 0x08010a58 0x00000024 Data RO 3479 .rodata.attr_step_motor user_task.o + 0x08010a7c 0x08010a7c 0x00000024 Data RO 3481 .rodata.attr_vofa user_task.o + 0x08010aa0 0x08010aa0 0x00000010 Data RO 3332 .rodata.cst16 chassis.o + 0x08010ab0 0x08010ab0 0x00000024 Data RO 45 .rodata.defaultTask_attributes freertos.o + 0x08010ad4 0x08010ad4 0x000000b0 Data RO 3576 .rodata.g_behavior_configs cmd_behavior.o + 0x08010b84 0x08010b84 0x00000020 Data RO 3381 .rodata.imu_temp_ctrl_pid_param atti_esti.o + 0x08010ba4 0x08010ba4 0x0000000c Data RO 44 .rodata.str1.1 freertos.o + 0x08010bb0 0x08010bb0 0x00000002 Data RO 3231 .rodata.str1.1 vofa.o + 0x08010bb2 0x08010bb2 0x0000005a Data RO 3470 .rodata.str1.1 user_task.o + 0x08010c0c 0x08010c0c 0x00000040 Data RO 4058 Region$$Table anon$$obj.o + 0x08010c4c 0x08010c4c 0x0000001c Data RO 3938 locale$$data c_w.l(lc_numeric_c.o) - Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x080102c0, Size: 0x0001afa8, Max: 0x0001c000, ABSOLUTE) + Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08010c68, Size: 0x0001af10, Max: 0x0001c000, ABSOLUTE) Exec Addr Load Addr Size Type Attr Idx E Section Name Object - 0x20000000 0x080102c0 0x00000010 Data RW 3439 .data.StepMotor_param step_motor_1.o - 0x20000010 0x080102d0 0x00000004 Data RW 2562 .data.beta ahrs.o - 0x20000014 0x080102d4 0x00000001 Data RW 3230 .data.current_protocol vofa.o - 0x20000015 0x080102d5 0x00000001 Data RW 725 .data.uwTickFreq stm32f4xx_hal.o - 0x20000016 0x080102d6 0x00000002 PAD - 0x20000018 0x080102d8 0x00000004 Data RW 2212 .data.uxCriticalNesting port.o - 0x2000001c 0x080102dc 0x00000004 PAD - 0x20000020 - 0x00000068 Zero RW 2297 .bss.CAN_Callback can_1.o - 0x20000088 - 0x00000040 Zero RW 2358 .bss.GPIO_Callback gpio_1.o - 0x200000c8 - 0x00000004 Zero RW 64 .bss.HAL_RCC_CAN1_CLK_ENABLED can.o - 0x200000cc - 0x00000001 Zero RW 3441 .bss.Key_A step_motor_1.o - 0x200000cd 0x080102dc 0x00000003 PAD - 0x200000d0 - 0x00000020 Zero RW 2461 .bss.SPI_Callback spi_1.o - 0x200000f0 - 0x00000004 Zero RW 3300 .bss.Shoot_RunningFSM.pos shoot.o - 0x200000f4 0x080102dc 0x00000004 PAD - 0x200000f8 - 0x00000030 Zero RW 3375 .bss.bmi088 atti_esti.o - 0x20000128 - 0x00000008 Zero RW 2942 .bss.can_managers motor_rm.o - 0x20000130 - 0x00000019 Zero RW 3095 .bss.cbuf et16s.o - 0x20000149 0x080102dc 0x00000003 PAD - 0x2000014c - 0x00000004 Zero RW 3353 .bss.cmd_for_gimbal cmd.o - 0x20000150 - 0x00000004 Zero RW 46 .bss.defaultTaskHandle freertos.o - 0x20000154 - 0x0000004d Zero RW 3429 .bss.et16s et16s_1.o - 0x200001a1 0x080102dc 0x00000003 PAD - 0x200001a4 - 0x0000000c Zero RW 3380 .bss.eulr_to_send atti_esti.o - 0x200001b0 - 0x00000010 Zero RW 3534 .bss.g_adapters cmd_adapter.o - 0x200001c0 - 0x00000014 Zero RW 3396 .bss.gimbal_cmd gimbal_ctrl.o - 0x200001d4 - 0x00000028 Zero RW 62 .bss.hcan1 can.o - 0x200001fc - 0x00000060 Zero RW 107 .bss.hdma_spi1_rx spi.o - 0x2000025c - 0x00000060 Zero RW 153 .bss.hdma_usart3_rx usart.o - 0x200002bc - 0x00000060 Zero RW 155 .bss.hdma_usart6_tx usart.o - 0x2000031c - 0x00000054 Zero RW 90 .bss.hi2c1 i2c.o - 0x20000370 - 0x00000058 Zero RW 106 .bss.hspi1 spi.o - 0x200003c8 - 0x00000048 Zero RW 128 .bss.htim10 tim.o - 0x20000410 - 0x00000048 Zero RW 150 .bss.huart2 usart.o - 0x20000458 - 0x00000048 Zero RW 152 .bss.huart6 usart.o - 0x200004a0 - 0x0000003c Zero RW 3378 .bss.imu_temp_ctrl_pid atti_esti.o - 0x200004dc - 0x00000001 Zero RW 2856 .bss.inited bmi088.o - 0x200004dd - 0x000000a0 Zero RW 1963 .bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage timers.o - 0x2000057d 0x080102dc 0x00000003 PAD - 0x20000580 - 0x00000050 Zero RW 1962 .bss.prvCheckForValidListAndQueue.xStaticTimerQueue timers.o - 0x200005d0 - 0x00000004 Zero RW 1959 .bss.prvSampleTimeNow.xLastTime timers.o - 0x200005d4 - 0x00000004 Zero RW 1871 .bss.pxCurrentTCB tasks.o - 0x200005d8 - 0x00000004 Zero RW 1957 .bss.pxCurrentTimerList timers.o - 0x200005dc - 0x00000004 Zero RW 2168 .bss.pxEnd heap_4.o - 0x200005e0 - 0x00000004 Zero RW 1880 .bss.pxOverflowDelayedTaskList tasks.o - 0x200005e4 - 0x00000460 Zero RW 1882 .bss.pxReadyTasksLists tasks.o - 0x20000a44 - 0x00000004 Zero RW 2300 .bss.queue_mutex can_1.o - 0x20000a48 - 0x00000003 Zero RW 3418 .bss.shoot_cmd shoot_ctrl.o - 0x20000a4b 0x080102dc 0x00000001 PAD - 0x20000a4c - 0x000000e0 Zero RW 3481 .bss.task_runtime user_task.o - 0x20000b2c - 0x00000004 Zero RW 3094 .bss.thread_alert et16s.o - 0x20000b30 - 0x00019999 Zero RW 2175 .bss.ucHeap heap_4.o - 0x2001a4c9 - 0x00000001 Zero RW 2210 .bss.ucMaxSysCallPriority port.o - 0x2001a4ca 0x080102dc 0x00000002 PAD - 0x2001a4cc - 0x00000004 Zero RW 726 .bss.uwTick stm32f4xx_hal.o - 0x2001a4d0 - 0x00000004 Zero RW 1874 .bss.uxDeletedTasksWaitingCleanUp tasks.o - 0x2001a4d4 - 0x00000400 Zero RW 2143 .bss.vApplicationGetTimerTaskMemory.Timer_Stack cmsis_os2.o - 0x2001a8d4 - 0x00000060 Zero RW 2142 .bss.vApplicationGetTimerTaskMemory.Timer_TCB cmsis_os2.o - 0x2001a934 - 0x00000104 Zero RW 3228 .bss.vofa_tx_buf vofa.o - 0x2001aa38 - 0x00000014 Zero RW 1961 .bss.xActiveTimerList2 timers.o - 0x2001aa4c - 0x00000014 Zero RW 1892 .bss.xDelayedTaskList2 tasks.o - 0x2001aa60 - 0x00000004 Zero RW 1885 .bss.xIdleTaskHandle tasks.o - 0x2001aa64 - 0x00000004 Zero RW 2172 .bss.xMinimumEverFreeBytesRemaining heap_4.o - 0x2001aa68 - 0x00000004 Zero RW 1889 .bss.xNumOfOverflows tasks.o - 0x2001aa6c - 0x00000004 Zero RW 2174 .bss.xNumberOfSuccessfulFrees heap_4.o - 0x2001aa70 - 0x00000014 Zero RW 1884 .bss.xPendingReadyList tasks.o - 0x2001aa84 - 0x00000004 Zero RW 1876 .bss.xSchedulerRunning tasks.o - 0x2001aa88 - 0x00000014 Zero RW 1873 .bss.xTasksWaitingTermination tasks.o - 0x2001aa9c - 0x00000004 Zero RW 1878 .bss.xTickCount tasks.o - 0x2001aaa0 - 0x00000004 Zero RW 1955 .bss.xTimerQueue timers.o - 0x2001aaa4 - 0x00000004 Zero RW 1887 .bss.xYieldPending tasks.o - 0x2001aaa8 - 0x00000500 Zero RW 2 HEAP startup_stm32f407xx.o + 0x20000000 0x08010c68 0x00000004 Data RW 1526 .data.SystemCoreClock system_stm32f4xx.o + 0x20000004 0x08010c6c 0x0000000c Data RW 3376 .data.cali_bmi088 atti_esti.o + 0x20000010 0x08010c78 0x00000001 Data RW 3232 .data.current_protocol vofa.o + 0x20000011 0x08010c79 0x00000003 PAD + 0x20000014 0x08010c7c 0x00000040 Data RW 3512 .data.sourceHandlers cmd_1.o + 0x20000054 0x08010cbc 0x00000001 Data RW 725 .data.uwTickFreq stm32f4xx_hal.o + 0x20000055 0x08010cbd 0x00000003 PAD + 0x20000058 0x08010cc0 0x00000004 Data RW 724 .data.uwTickPrio stm32f4xx_hal.o + 0x2000005c 0x08010cc4 0x00000004 PAD + 0x20000060 - 0x00000060 Zero RW 3954 .bss c_w.l(libspace.o) + 0x200000c0 - 0x00000068 Zero RW 2297 .bss.CAN_Callback can_1.o + 0x20000128 - 0x00000004 Zero RW 2138 .bss.KernelState cmsis_os2.o + 0x2000012c - 0x00000020 Zero RW 2461 .bss.SPI_Callback spi_1.o + 0x2000014c 0x08010cc4 0x00000004 PAD + 0x20000150 - 0x00000030 Zero RW 3377 .bss.bmi088 atti_esti.o + 0x20000180 - 0x00000013 Zero RW 2858 .bss.bmi088_rxbuf bmi088.o + 0x20000193 0x08010cc4 0x00000001 PAD + 0x20000194 - 0x00000008 Zero RW 2987 .bss.can_managers motor_dm.o + 0x2000019c - 0x00000020 Zero RW 3409 .bss.cmd_chassis chassis_ctrl.o + 0x200001bc - 0x0000004d Zero RW 3353 .bss.cmd_et16s cmd.o + 0x20000209 0x08010cc4 0x00000003 PAD + 0x2000020c - 0x00000004 Zero RW 3355 .bss.cmd_for_gimbal cmd.o + 0x20000210 - 0x00000004 Zero RW 46 .bss.defaultTaskHandle freertos.o + 0x20000214 0x08010cc4 0x00000004 PAD + 0x20000218 - 0x00000058 Zero RW 3366 .bss.dr16 dr16_1.o + 0x20000270 - 0x000002f8 Zero RW 3396 .bss.gimbal gimbal_ctrl.o + 0x20000568 - 0x00000014 Zero RW 3378 .bss.gimbal_ahrs atti_esti.o + 0x2000057c - 0x00000034 Zero RW 3383 .bss.gimbal_to_send atti_esti.o + 0x200005b0 - 0x00000060 Zero RW 108 .bss.hdma_spi1_tx spi.o + 0x20000610 - 0x00000060 Zero RW 154 .bss.hdma_usart6_rx usart.o + 0x20000670 - 0x00000054 Zero RW 91 .bss.hi2c2 i2c.o + 0x200006c4 - 0x00000048 Zero RW 127 .bss.htim1 tim.o + 0x2000070c - 0x00000048 Zero RW 149 .bss.huart1 usart.o + 0x20000754 - 0x00000048 Zero RW 151 .bss.huart3 usart.o + 0x2000079c - 0x00000004 Zero RW 2299 .bss.id_parser can_1.o + 0x200007a0 - 0x00000001 Zero RW 2856 .bss.inited bmi088.o + 0x200007a1 0x08010cc4 0x00000003 PAD + 0x200007a4 - 0x0000000c Zero RW 3379 .bss.magn atti_esti.o + 0x200007b0 - 0x00000004 Zero RW 3331 .bss.motor_add_anagle.prev_angle chassis.o + 0x200007b4 - 0x000000a0 Zero RW 1963 .bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage timers.o + 0x20000854 - 0x00000004 Zero RW 1879 .bss.pxDelayedTaskList tasks.o + 0x20000858 - 0x00000004 Zero RW 1958 .bss.pxOverflowTimerList timers.o + 0x2000085c - 0x00000004 Zero RW 2302 .bss.queue_list can_1.o + 0x20000860 - 0x00000003 Zero RW 3420 .bss.shoot_cmd shoot_ctrl.o + 0x20000863 0x08010cc4 0x00000001 PAD + 0x20000864 - 0x000000e0 Zero RW 3482 .bss.task_runtime user_task.o + 0x20000944 - 0x00000004 Zero RW 2857 .bss.thread_alert bmi088.o + 0x20000948 - 0x00000004 Zero RW 3123 .bss.thread_alert dr16.o + 0x2000094c - 0x00019999 Zero RW 2175 .bss.ucHeap heap_4.o + 0x2001a2e5 - 0x00000001 Zero RW 2210 .bss.ucMaxSysCallPriority port.o + 0x2001a2e6 0x08010cc4 0x00000002 PAD + 0x2001a2e8 - 0x00000004 Zero RW 2211 .bss.ulMaxPRIGROUPValue port.o + 0x2001a2ec - 0x00000004 Zero RW 1890 .bss.ulTaskSwitchedInTime tasks.o + 0x2001a2f0 - 0x00000004 Zero RW 1875 .bss.uxCurrentNumberOfTasks tasks.o + 0x2001a2f4 - 0x00000004 Zero RW 1877 .bss.uxSchedulerSuspended tasks.o + 0x2001a2f8 - 0x00000004 Zero RW 1872 .bss.uxTaskNumber tasks.o + 0x2001a2fc - 0x00000004 Zero RW 1883 .bss.uxTopReadyPriority tasks.o + 0x2001a300 - 0x00000200 Zero RW 2141 .bss.vApplicationGetIdleTaskMemory.Idle_Stack cmsis_os2.o + 0x2001a500 - 0x00000060 Zero RW 2140 .bss.vApplicationGetIdleTaskMemory.Idle_TCB cmsis_os2.o + 0x2001a560 - 0x00000400 Zero RW 2143 .bss.vApplicationGetTimerTaskMemory.Timer_Stack cmsis_os2.o + 0x2001a960 - 0x00000014 Zero RW 1960 .bss.xActiveTimerList1 timers.o + 0x2001a974 - 0x00000014 Zero RW 1891 .bss.xDelayedTaskList1 tasks.o + 0x2001a988 - 0x00000004 Zero RW 2170 .bss.xFreeBytesRemaining heap_4.o + 0x2001a98c - 0x00000004 Zero RW 1886 .bss.xNextTaskUnblockTime tasks.o + 0x2001a990 - 0x00000004 Zero RW 2173 .bss.xNumberOfSuccessfulAllocations heap_4.o + 0x2001a994 - 0x00000004 Zero RW 1888 .bss.xPendedTicks tasks.o + 0x2001a998 - 0x00000040 Zero RW 1674 .bss.xQueueRegistry queue.o + 0x2001a9d8 - 0x00000008 Zero RW 2171 .bss.xStart heap_4.o + 0x2001a9e0 - 0x00000014 Zero RW 1881 .bss.xSuspendedTaskList tasks.o + 0x2001a9f4 - 0x00000014 Zero RW 1873 .bss.xTasksWaitingTermination tasks.o + 0x2001aa08 - 0x00000004 Zero RW 1956 .bss.xTimerTaskHandle timers.o + 0x2001aa0c 0x08010cc4 0x00000004 PAD + 0x2001aa10 - 0x00000500 Zero RW 2 HEAP startup_stm32f407xx.o - Execution Region RW_IRAM2 (Exec base: 0x2001c000, Load base: 0x080102e0, Size: 0x00002fa8, Max: 0x00004000, ABSOLUTE, COMPRESSED[0x000001a0]) + Execution Region RW_IRAM2 (Exec base: 0x2001c000, Load base: 0x08010cc8, Size: 0x00002f00, Max: 0x00004000, ABSOLUTE, COMPRESSED[0x00000178]) Exec Addr Load Addr Size Type Attr Idx E Section Name Object - 0x2001c000 COMPRESSED 0x00000004 Data RW 1526 .data.SystemCoreClock system_stm32f4xx.o - 0x2001c004 COMPRESSED 0x0000000c Data RW 3374 .data.cali_bmi088 atti_esti.o - 0x2001c010 COMPRESSED 0x00000018 Data RW 3535 .data.g_adapter_ET16s cmd_adapter.o - 0x2001c028 COMPRESSED 0x00000438 Data RW 3241 .data.robot_config config.o - 0x2001c460 COMPRESSED 0x00000040 Data RW 3511 .data.sourceHandlers cmd_1.o - 0x2001c4a0 COMPRESSED 0x00000004 Data RW 724 .data.uwTickPrio stm32f4xx_hal.o - 0x2001c4a4 COMPRESSED 0x00000004 PAD - 0x2001c4a8 - 0x00000060 Zero RW 3945 .bss c_w.l(libspace.o) - 0x2001c508 - 0x00000004 Zero RW 2138 .bss.KernelState cmsis_os2.o - 0x2001c50c - 0x00000090 Zero RW 2514 .bss.UART_Callback uart.o - 0x2001c59c - 0x00000013 Zero RW 2858 .bss.bmi088_rxbuf bmi088.o - 0x2001c5af - 0x00000002 Zero RW 2859 .bss.buffer bmi088.o - 0x2001c5b1 COMPRESSED 0x00000003 PAD - 0x2001c5b4 - 0x00000008 Zero RW 2987 .bss.can_managers motor_dm.o - 0x2001c5bc - 0x00000010 Zero RW 3461 .bss.channel vofa_1.o - 0x2001c5cc COMPRESSED 0x00000004 PAD - 0x2001c5d0 - 0x000008b8 Zero RW 3406 .bss.chassis chassis_ctrl.o - 0x2001ce88 - 0x000000c4 Zero RW 3350 .bss.cmd cmd.o - 0x2001cf4c - 0x00000020 Zero RW 3407 .bss.cmd_chassis chassis_ctrl.o - 0x2001cf6c - 0x0000004d Zero RW 3351 .bss.cmd_et16s cmd.o - 0x2001cfb9 COMPRESSED 0x00000003 PAD - 0x2001cfbc - 0x00000004 Zero RW 3352 .bss.cmd_for_chassis cmd.o - 0x2001cfc0 - 0x00000004 Zero RW 3354 .bss.cmd_for_shoot cmd.o - 0x2001cfc4 COMPRESSED 0x00000004 PAD - 0x2001cfc8 - 0x00000058 Zero RW 3364 .bss.dr16 dr16_1.o - 0x2001d020 - 0x000002f8 Zero RW 3394 .bss.gimbal gimbal_ctrl.o - 0x2001d318 - 0x00000014 Zero RW 3376 .bss.gimbal_ahrs atti_esti.o - 0x2001d32c - 0x00000034 Zero RW 3395 .bss.gimbal_imu gimbal_ctrl.o - 0x2001d360 - 0x00000034 Zero RW 3381 .bss.gimbal_to_send atti_esti.o - 0x2001d394 - 0x00000028 Zero RW 63 .bss.hcan2 can.o - 0x2001d3bc - 0x00000060 Zero RW 108 .bss.hdma_spi1_tx spi.o - 0x2001d41c - 0x00000060 Zero RW 154 .bss.hdma_usart6_rx usart.o - 0x2001d47c - 0x00000054 Zero RW 91 .bss.hi2c2 i2c.o - 0x2001d4d0 - 0x00000048 Zero RW 127 .bss.htim8 tim.o - 0x2001d518 - 0x00000048 Zero RW 149 .bss.huart1 usart.o - 0x2001d560 - 0x00000048 Zero RW 151 .bss.huart3 usart.o - 0x2001d5a8 - 0x00000004 Zero RW 2299 .bss.id_parser can_1.o - 0x2001d5ac - 0x00000001 Zero RW 2298 .bss.inited can_1.o - 0x2001d5ad - 0x00000001 Zero RW 3120 .bss.inited dr16.o - 0x2001d5ae - 0x00000001 Zero RW 3301 .bss.last_firecmd shoot.o - 0x2001d5af COMPRESSED 0x00000001 PAD - 0x2001d5b0 - 0x0000000c Zero RW 3377 .bss.magn atti_esti.o - 0x2001d5bc - 0x00000004 Zero RW 1879 .bss.pxDelayedTaskList tasks.o - 0x2001d5c0 - 0x00000004 Zero RW 1958 .bss.pxOverflowTimerList timers.o - 0x2001d5c4 - 0x00000004 Zero RW 2302 .bss.queue_list can_1.o - 0x2001d5c8 - 0x000006b0 Zero RW 3417 .bss.shoot shoot_ctrl.o - 0x2001dc78 - 0x00000004 Zero RW 2857 .bss.thread_alert bmi088.o - 0x2001dc7c - 0x00000004 Zero RW 3121 .bss.thread_alert dr16.o - 0x2001dc80 - 0x00000810 Zero RW 2301 .bss.tx_queues can_1.o - 0x2001e490 - 0x00000004 Zero RW 2211 .bss.ulMaxPRIGROUPValue port.o - 0x2001e494 - 0x00000004 Zero RW 1890 .bss.ulTaskSwitchedInTime tasks.o - 0x2001e498 - 0x00000004 Zero RW 1875 .bss.uxCurrentNumberOfTasks tasks.o - 0x2001e49c - 0x00000004 Zero RW 1877 .bss.uxSchedulerSuspended tasks.o - 0x2001e4a0 - 0x00000004 Zero RW 1872 .bss.uxTaskNumber tasks.o - 0x2001e4a4 - 0x00000004 Zero RW 1883 .bss.uxTopReadyPriority tasks.o - 0x2001e4a8 - 0x00000200 Zero RW 2141 .bss.vApplicationGetIdleTaskMemory.Idle_Stack cmsis_os2.o - 0x2001e6a8 - 0x00000060 Zero RW 2140 .bss.vApplicationGetIdleTaskMemory.Idle_TCB cmsis_os2.o - 0x2001e708 - 0x00000014 Zero RW 1960 .bss.xActiveTimerList1 timers.o - 0x2001e71c - 0x00000001 Zero RW 2169 .bss.xBlockAllocatedBit heap_4.o - 0x2001e71d COMPRESSED 0x00000003 PAD - 0x2001e720 - 0x00000014 Zero RW 1891 .bss.xDelayedTaskList1 tasks.o - 0x2001e734 - 0x00000004 Zero RW 2170 .bss.xFreeBytesRemaining heap_4.o - 0x2001e738 - 0x00000004 Zero RW 1886 .bss.xNextTaskUnblockTime tasks.o - 0x2001e73c - 0x00000004 Zero RW 2173 .bss.xNumberOfSuccessfulAllocations heap_4.o - 0x2001e740 - 0x00000004 Zero RW 1888 .bss.xPendedTicks tasks.o - 0x2001e744 - 0x00000040 Zero RW 1674 .bss.xQueueRegistry queue.o - 0x2001e784 - 0x00000008 Zero RW 2171 .bss.xStart heap_4.o - 0x2001e78c - 0x00000014 Zero RW 1881 .bss.xSuspendedTaskList tasks.o - 0x2001e7a0 - 0x00000004 Zero RW 1956 .bss.xTimerTaskHandle timers.o - 0x2001e7a4 COMPRESSED 0x00000004 PAD - 0x2001e7a8 - 0x00000800 Zero RW 1 STACK startup_stm32f407xx.o + 0x2001c000 COMPRESSED 0x00000008 Data RW 3441 .data.StepMotor_param step_motor_1.o + 0x2001c008 COMPRESSED 0x00000004 Data RW 2562 .data.beta ahrs.o + 0x2001c00c COMPRESSED 0x00000018 Data RW 3536 .data.g_adapter_ET16s cmd_adapter.o + 0x2001c024 COMPRESSED 0x00000400 Data RW 3243 .data.robot_config config.o + 0x2001c424 COMPRESSED 0x00000004 Data RW 2212 .data.uxCriticalNesting port.o + 0x2001c428 - 0x000000e4 Zero RW 3630 .bss c_w.l(rand.o) + 0x2001c50c - 0x00000040 Zero RW 2358 .bss.GPIO_Callback gpio_1.o + 0x2001c54c - 0x00000004 Zero RW 64 .bss.HAL_RCC_CAN1_CLK_ENABLED can.o + 0x2001c550 - 0x00000090 Zero RW 2514 .bss.UART_Callback uart.o + 0x2001c5e0 - 0x00000002 Zero RW 2859 .bss.buffer bmi088.o + 0x2001c5e2 COMPRESSED 0x00000002 PAD + 0x2001c5e4 - 0x00000008 Zero RW 2942 .bss.can_managers motor_rm.o + 0x2001c5ec - 0x00000019 Zero RW 3097 .bss.cbuf et16s.o + 0x2001c605 COMPRESSED 0x00000003 PAD + 0x2001c608 - 0x00000010 Zero RW 3462 .bss.channel vofa_1.o + 0x2001c618 - 0x000006d4 Zero RW 3408 .bss.chassis chassis_ctrl.o + 0x2001ccec - 0x000000c4 Zero RW 3352 .bss.cmd cmd.o + 0x2001cdb0 - 0x00000004 Zero RW 3354 .bss.cmd_for_chassis cmd.o + 0x2001cdb4 - 0x00000004 Zero RW 3356 .bss.cmd_for_shoot cmd.o + 0x2001cdb8 - 0x0000004d Zero RW 3431 .bss.et16s et16s_1.o + 0x2001ce05 COMPRESSED 0x00000003 PAD + 0x2001ce08 - 0x0000000c Zero RW 3382 .bss.eulr_to_send atti_esti.o + 0x2001ce14 - 0x00000010 Zero RW 3535 .bss.g_adapters cmd_adapter.o + 0x2001ce24 - 0x00000014 Zero RW 3398 .bss.gimbal_cmd gimbal_ctrl.o + 0x2001ce38 - 0x00000034 Zero RW 3397 .bss.gimbal_imu gimbal_ctrl.o + 0x2001ce6c - 0x00000028 Zero RW 62 .bss.hcan1 can.o + 0x2001ce94 - 0x00000028 Zero RW 63 .bss.hcan2 can.o + 0x2001cebc - 0x00000060 Zero RW 107 .bss.hdma_spi1_rx spi.o + 0x2001cf1c - 0x00000060 Zero RW 153 .bss.hdma_usart3_rx usart.o + 0x2001cf7c - 0x00000060 Zero RW 155 .bss.hdma_usart6_tx usart.o + 0x2001cfdc - 0x00000054 Zero RW 90 .bss.hi2c1 i2c.o + 0x2001d030 - 0x00000058 Zero RW 106 .bss.hspi1 spi.o + 0x2001d088 - 0x00000048 Zero RW 128 .bss.htim10 tim.o + 0x2001d0d0 - 0x00000048 Zero RW 150 .bss.huart2 usart.o + 0x2001d118 - 0x00000048 Zero RW 152 .bss.huart6 usart.o + 0x2001d160 - 0x0000003c Zero RW 3380 .bss.imu_temp_ctrl_pid atti_esti.o + 0x2001d19c - 0x00000001 Zero RW 2298 .bss.inited can_1.o + 0x2001d19d - 0x00000001 Zero RW 3122 .bss.inited dr16.o + 0x2001d19e COMPRESSED 0x00000002 PAD + 0x2001d1a0 - 0x00000004 Zero RW 3330 .bss.motor_add_anagle.cirle chassis.o + 0x2001d1a4 - 0x00000050 Zero RW 1962 .bss.prvCheckForValidListAndQueue.xStaticTimerQueue timers.o + 0x2001d1f4 - 0x00000004 Zero RW 1959 .bss.prvSampleTimeNow.xLastTime timers.o + 0x2001d1f8 - 0x00000004 Zero RW 1871 .bss.pxCurrentTCB tasks.o + 0x2001d1fc - 0x00000004 Zero RW 1957 .bss.pxCurrentTimerList timers.o + 0x2001d200 - 0x00000004 Zero RW 2168 .bss.pxEnd heap_4.o + 0x2001d204 - 0x00000004 Zero RW 1880 .bss.pxOverflowDelayedTaskList tasks.o + 0x2001d208 - 0x00000460 Zero RW 1882 .bss.pxReadyTasksLists tasks.o + 0x2001d668 - 0x00000004 Zero RW 2300 .bss.queue_mutex can_1.o + 0x2001d66c COMPRESSED 0x00000004 PAD + 0x2001d670 - 0x000006b0 Zero RW 3419 .bss.shoot shoot_ctrl.o + 0x2001dd20 - 0x00000004 Zero RW 3096 .bss.thread_alert et16s.o + 0x2001dd24 - 0x00000810 Zero RW 2301 .bss.tx_queues can_1.o + 0x2001e534 - 0x00000004 Zero RW 726 .bss.uwTick stm32f4xx_hal.o + 0x2001e538 - 0x00000004 Zero RW 1874 .bss.uxDeletedTasksWaitingCleanUp tasks.o + 0x2001e53c - 0x00000060 Zero RW 2142 .bss.vApplicationGetTimerTaskMemory.Timer_TCB cmsis_os2.o + 0x2001e59c - 0x00000104 Zero RW 3230 .bss.vofa_tx_buf vofa.o + 0x2001e6a0 - 0x00000014 Zero RW 1961 .bss.xActiveTimerList2 timers.o + 0x2001e6b4 - 0x00000001 Zero RW 2169 .bss.xBlockAllocatedBit heap_4.o + 0x2001e6b5 COMPRESSED 0x00000003 PAD + 0x2001e6b8 - 0x00000014 Zero RW 1892 .bss.xDelayedTaskList2 tasks.o + 0x2001e6cc - 0x00000004 Zero RW 1885 .bss.xIdleTaskHandle tasks.o + 0x2001e6d0 - 0x00000004 Zero RW 2172 .bss.xMinimumEverFreeBytesRemaining heap_4.o + 0x2001e6d4 - 0x00000004 Zero RW 1889 .bss.xNumOfOverflows tasks.o + 0x2001e6d8 - 0x00000004 Zero RW 2174 .bss.xNumberOfSuccessfulFrees heap_4.o + 0x2001e6dc - 0x00000014 Zero RW 1884 .bss.xPendingReadyList tasks.o + 0x2001e6f0 - 0x00000004 Zero RW 1876 .bss.xSchedulerRunning tasks.o + 0x2001e6f4 - 0x00000004 Zero RW 1878 .bss.xTickCount tasks.o + 0x2001e6f8 - 0x00000004 Zero RW 1955 .bss.xTimerQueue timers.o + 0x2001e6fc - 0x00000004 Zero RW 1887 .bss.xYieldPending tasks.o + 0x2001e700 - 0x00000800 Zero RW 1 STACK startup_stm32f407xx.o ============================================================================== @@ -10553,19 +10592,19 @@ Image component sizes 2814 12 0 4 0 9047 ahrs.o 64 8 0 0 0 678 ai_1.o - 376 16 32 12 204 3388 atti_esti.o - 1082 16 0 0 26 5660 bmi088.o + 376 16 32 12 204 3386 atti_esti.o + 1082 16 0 0 26 5618 bmi088.o 26 0 0 0 0 2417 calc_lib.o - 458 0 0 0 84 6441 can.o + 464 0 0 0 84 6442 can.o 2364 4 0 0 2181 17085 can_1.o - 564 0 16 0 0 10100 chassis.o - 116 12 0 0 2264 5714 chassis_ctrl.o - 232 8 0 0 285 5107 cmd.o - 846 8 0 64 0 7238 cmd_1.o + 3392 150 16 0 8 9938 chassis.o + 148 12 0 0 1780 4941 chassis_ctrl.o + 232 8 0 0 285 5199 cmd.o + 856 8 0 64 0 7342 cmd_1.o 400 0 0 24 16 4765 cmd_adapter.o - 548 8 176 0 0 8196 cmd_behavior.o + 548 8 176 0 0 8288 cmd_behavior.o 1746 0 0 0 1732 42904 cmsis_os2.o - 10 0 0 1080 0 6036 config.o + 10 0 0 1024 0 5934 config.o 138 0 0 0 0 3328 dma.o 90 0 0 0 5 4581 dr16.o 104 8 0 0 88 2007 dr16_1.o @@ -10575,27 +10614,27 @@ Image component sizes 78 0 48 0 4 3090 freertos.o 2406 40 0 0 0 11455 gimbal.o 180 12 0 0 832 6512 gimbal_ctrl.o - 484 0 0 0 0 4183 gpio.o - 314 20 104 0 64 5040 gpio_1.o + 514 0 0 0 0 4234 gpio.o + 310 16 88 0 64 4998 gpio_1.o 678 0 0 0 104886 4736 heap_4.o 340 0 0 0 168 5407 i2c.o - 352 0 0 0 0 585 init.o + 364 0 0 0 0 593 init.o 150 0 0 0 0 2212 list.o 244 0 0 0 0 2742 main.o 16 0 0 0 0 729 mm.o 1222 32 0 0 8 9747 motor_dm.o - 1376 32 0 0 8 8770 motor_rm.o - 48 4 0 0 0 1452 motor_step.o - 584 12 0 0 0 3418 pid.o + 1360 28 0 0 8 8770 motor_rm.o + 12 0 0 0 0 1672 motor_step.o + 570 12 0 0 0 3418 pid.o 872 16 0 4 5 3821 port.o - 160 4 16 0 0 5959 pwm.o + 140 4 16 0 0 5935 pwm.o 2680 0 0 0 64 22606 queue.o - 3116 72 0 0 5 11585 shoot.o - 148 12 0 0 1715 5915 shoot_ctrl.o + 840 16 0 0 0 11585 shoot.o + 132 12 0 0 1715 5912 shoot_ctrl.o 380 0 0 0 280 5153 spi.o 408 0 0 0 32 8719 spi_1.o 64 26 392 0 3328 832 startup_stm32f407xx.o - 112 8 0 16 1 1469 step_motor_1.o + 72 8 0 8 0 1223 step_motor_1.o 212 0 0 5 4 7305 stm32f4xx_hal.o 1674 6 0 0 0 13174 stm32f4xx_hal_can.o 306 0 0 0 0 10977 stm32f4xx_hal_cortex.o @@ -10611,20 +10650,20 @@ Image component sizes 336 0 0 0 0 2997 stm32f4xx_it.o 18 0 24 4 0 2541 system_stm32f4xx.o 4310 20 0 0 1284 31650 tasks.o - 674 0 0 0 144 8665 tim.o + 748 0 0 0 144 8737 tim.o 168 0 0 0 0 1812 time.o 1174 26 0 0 300 14847 timers.o 476 16 0 0 144 7125 uart.o 966 0 0 0 576 7922 usart.o - 310 0 0 0 0 2885 user_math.o + 256 0 0 0 0 2885 user_math.o 0 0 486 0 224 3828 user_task.o 442 48 2 1 260 2650 vofa.o 96 8 0 0 16 988 vofa_1.o ---------------------------------------------------------------------- - 52264 594 1360 1216 121392 584240 Object Totals + 52788 688 1344 1156 120904 583484 Object Totals 0 0 64 0 0 0 (incl. Generated) - 432 12 0 2 49 0 (incl. Padding) + 440 24 0 6 43 0 (incl. Padding) ---------------------------------------------------------------------- @@ -10665,12 +10704,13 @@ Image component sizes 0 0 0 0 0 0 indicate_semi.o 44 10 28 0 0 76 lc_numeric_c.o 2 0 0 0 0 0 libinit.o - 22 0 0 0 0 0 libinit2.o + 26 0 0 0 0 0 libinit2.o 2 0 0 0 0 0 libshutdown.o 2 0 0 0 0 0 libshutdown2.o 8 4 0 0 96 68 libspace.o 138 0 0 0 0 80 lludiv10.o 240 0 0 0 0 100 lludivv7m.o + 60 14 0 0 228 92 rand.o 8 4 0 0 0 68 rt_errno_addr_intlibspace.o 8 4 0 0 0 68 rt_locale_intlibspace.o 78 0 0 0 0 80 rt_memclr_w.o @@ -10696,7 +10736,9 @@ Image component sizes 120 4 0 0 0 140 dleqf.o 340 12 0 0 0 152 dmul.o 156 4 0 0 0 140 dnaninf.o + 336 12 0 0 0 136 drem_clz.o 12 0 0 0 0 116 dretinf.o + 408 56 0 0 0 168 dsqrt_umaal.o 86 4 0 0 0 132 f2d.o 96 0 0 0 0 132 ffltll_clz.o 140 4 0 0 0 132 fnaninf.o @@ -10708,31 +10750,35 @@ Image component sizes 744 106 152 0 0 352 atan.o 512 64 0 0 0 208 atan2.o 684 90 0 0 0 208 atan2f.o - 72 8 0 0 0 372 dunder.o + 336 56 0 0 0 136 cosf.o + 104 16 0 0 0 496 dunder.o 24 0 0 0 0 124 fabs.o + 260 6 0 0 0 144 fmod.o 48 0 0 0 0 124 fpclassify.o 38 0 0 0 0 116 fpclassifyf.o 44 12 0 0 0 464 funder.o 248 0 0 0 0 152 poly.o 0 0 8 0 0 0 qnan.o 340 24 32 0 0 160 rredf.o + 400 56 0 0 0 212 sinf.o + 122 0 0 0 0 148 sqrt.o 62 0 0 0 0 136 sqrtf.o 380 58 0 0 0 200 tanf.o ---------------------------------------------------------------------- - 12248 820 368 0 96 9524 Library Totals - 24 0 0 0 0 0 (incl. Padding) + 14212 1032 368 0 324 10684 Library Totals + 30 4 0 0 0 0 (incl. Padding) ---------------------------------------------------------------------- Code (inc. data) RO Data RW Data ZI Data Debug Library Name - 5614 216 176 0 96 3460 c_w.l - 3114 200 0 0 0 3272 fz_wm.l - 3496 404 192 0 0 2792 m_wm.l + 5678 230 176 0 324 3552 c_w.l + 3858 268 0 0 0 3576 fz_wm.l + 4646 530 192 0 0 3556 m_wm.l ---------------------------------------------------------------------- - 12248 820 368 0 96 9524 Library Totals + 14212 1032 368 0 324 10684 Library Totals ---------------------------------------------------------------------- @@ -10741,15 +10787,15 @@ Image component sizes Code (inc. data) RO Data RW Data ZI Data Debug - 64512 1414 1728 1216 121488 586952 Grand Totals - 64512 1414 1728 444 121488 586952 ELF Image Totals (compressed) - 64512 1414 1728 444 0 0 ROM Totals + 67000 1720 1712 1156 121228 586604 Grand Totals + 67000 1720 1712 468 121228 586604 ELF Image Totals (compressed) + 67000 1720 1712 468 0 0 ROM Totals ============================================================================== - Total RO Size (Code + RO Data) 66240 ( 64.69kB) - Total RW Size (RW Data + ZI Data) 122704 ( 119.83kB) - Total ROM Size (Code + RO Data + RW Data) 66684 ( 65.12kB) + Total RO Size (Code + RO Data) 68712 ( 67.10kB) + Total RW Size (RW Data + ZI Data) 122384 ( 119.52kB) + Total ROM Size (Code + RO Data + RW Data) 69180 ( 67.56kB) ============================================================================== diff --git a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry_Steering Wheel_Infatry.dep b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry_Steering Wheel_Infatry.dep index 8d333fb..01d4708 100644 --- a/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry_Steering Wheel_Infatry.dep +++ b/MDK-ARM/Steering Wheel_Infatry/Steering Wheel_Infatry_Steering Wheel_Infatry.dep @@ -1,8 +1,8 @@ Dependencies for Project 'Steering Wheel_Infatry', Target 'Steering Wheel_Infatry': (DO NOT MODIFY !) CompilerVersion: 6160000::V6.16::ARMCLANG -F (startup_stm32f407xx.s)(0x69797494)(--target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -masm=auto -c -gdwarf-3 -I ../Core/Inc -I ../Drivers/CMSIS/Include -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -Wa,armasm,--pd,"__UVISION_VERSION SETA 534" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32F407xx SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1" -o "steering wheel_infatry/startup_stm32f407xx.o") -F (../Core/Src/main.c)(0x697874D4)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/main.o" -MD) -I (..\Core\Inc\main.h)(0x697874D4) +F (startup_stm32f407xx.s)(0x6986B01E)(--target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -masm=auto -c -gdwarf-3 -I ../Core/Inc -I ../Drivers/CMSIS/Include -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -Wa,armasm,--pd,"__UVISION_VERSION SETA 534" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32F407xx SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1" -o "steering wheel_infatry/startup_stm32f407xx.o") +F (../Core/Src/main.c)(0x6982F10D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/main.o" -MD) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -52,12 +52,12 @@ I (..\Core\Inc\can.h)(0x69184414) I (..\Core\Inc\dma.h)(0x69184EBA) I (..\Core\Inc\i2c.h)(0x69184EBA) I (..\Core\Inc\spi.h)(0x69184EBA) -I (..\Core\Inc\tim.h)(0x697874D3) +I (..\Core\Inc\tim.h)(0x6982F10C) I (..\Core\Inc\usart.h)(0x69455093) I (..\Core\Inc\gpio.h)(0x69184413) -F (../Core/Src/gpio.c)(0x697874CF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/gpio.o" -MD) +F (../Core/Src/gpio.c)(0x6982F109)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/gpio.o" -MD) I (..\Core\Inc\gpio.h)(0x69184413) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -104,7 +104,7 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -139,10 +139,10 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\task\user_task.h)(0x69765461) -F (../Core/Src/can.c)(0x694E815E)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/can.o" -MD) +I (..\User\task\user_task.h)(0x69843531) +F (../Core/Src/can.c)(0x6986B019)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/can.o" -MD) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -179,7 +179,7 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) F (../Core/Src/dma.c)(0x69455092)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/dma.o" -MD) I (..\Core\Inc\dma.h)(0x69184EBA) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -216,7 +216,7 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) F (../Core/Src/i2c.c)(0x69184EBA)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/i2c.o" -MD) I (..\Core\Inc\i2c.h)(0x69184EBA) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -253,7 +253,7 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) F (../Core/Src/spi.c)(0x69186D46)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/spi.o" -MD) I (..\Core\Inc\spi.h)(0x69184EBA) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -288,9 +288,9 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -F (../Core/Src/tim.c)(0x697874D2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/tim.o" -MD) -I (..\Core\Inc\tim.h)(0x697874D3) -I (..\Core\Inc\main.h)(0x697874D4) +F (../Core/Src/tim.c)(0x6982F10C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/tim.o" -MD) +I (..\Core\Inc\tim.h)(0x6982F10C) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -327,7 +327,7 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) F (../Core/Src/usart.c)(0x6974B3BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/usart.o" -MD) I (..\Core\Inc\usart.h)(0x69455093) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -362,8 +362,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -F (../Core/Src/stm32f4xx_it.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/stm32f4xx_it.o" -MD) -I (..\Core\Inc\main.h)(0x697874D4) +F (../Core/Src/stm32f4xx_it.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/stm32f4xx_it.o" -MD) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -398,7 +398,7 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\Core\Inc\stm32f4xx_it.h)(0x6974B3BF) +I (..\Core\Inc\stm32f4xx_it.h)(0x6981F4DE) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h)(0x68B055DB) @@ -408,12 +408,12 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\bsp\uart.h)(0x6982F1BF) I (..\Core\Inc\usart.h)(0x69455093) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) F (../Core/Src/stm32f4xx_hal_msp.c)(0x69749697)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/stm32f4xx_hal_msp.o" -MD) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1361,10 +1361,10 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -F (..\User\bsp\can.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/can_1.o" -MD) -I (..\User\bsp\can.h)(0x697874F2) +F (..\User\bsp\can.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/can_1.o" -MD) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1399,8 +1399,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) @@ -1414,9 +1414,9 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -F (..\User\bsp\dwt.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/dwt.o" -MD) -I (..\User\bsp\dwt.h)(0x697874F2) -I (..\Core\Inc\main.h)(0x697874D4) +F (..\User\bsp\dwt.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/dwt.o" -MD) +I (..\User\bsp\dwt.h)(0x6982F1BF) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1451,13 +1451,13 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -F (..\User\bsp\gpio.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/gpio_1.o" -MD) -I (..\User\bsp\gpio.h)(0x697874F2) +F (..\User\bsp\gpio.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/gpio_1.o" -MD) +I (..\User\bsp\gpio.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) I (..\Core\Inc\gpio.h)(0x69184413) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1491,10 +1491,10 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -F (..\User\bsp\i2c.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/i2c_1.o" -MD) -I (..\User\bsp\i2c.h)(0x697874F2) +F (..\User\bsp\i2c.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/i2c_1.o" -MD) +I (..\User\bsp\i2c.h)(0x6982F1BF) I (..\Core\Inc\i2c.h)(0x69184EBA) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1530,9 +1530,9 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) -F (..\User\bsp\mm.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/mm.o" -MD) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +F (..\User\bsp\mm.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/mm.o" -MD) +I (..\User\bsp\mm.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) @@ -1542,9 +1542,9 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) -F (..\User\bsp\spi.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/spi_1.o" -MD) +F (..\User\bsp\spi.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/spi_1.o" -MD) I (..\Core\Inc\spi.h)(0x69184EBA) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1579,13 +1579,13 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\spi.h)(0x697874F2) +I (..\User\bsp\spi.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) -F (..\User\bsp\time.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/time.o" -MD) -I (..\User\bsp\time.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +F (..\User\bsp\time.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/time.o" -MD) +I (..\User\bsp\time.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) @@ -1595,7 +1595,7 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1630,9 +1630,9 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -F (..\User\bsp\uart.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/uart.o" -MD) +F (..\User\bsp\uart.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/uart.o" -MD) I (..\Core\Inc\usart.h)(0x69455093) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1667,12 +1667,12 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\bsp\uart.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) -F (..\User\bsp\pwm.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/pwm.o" -MD) -I (..\Core\Inc\tim.h)(0x697874D3) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\User\bsp\bsp.h)(0x6982F1BF) +F (..\User\bsp\pwm.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/pwm.o" -MD) +I (..\Core\Inc\tim.h)(0x6982F10C) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1707,49 +1707,49 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\pwm.h)(0x697874F2) -I (..\User\bsp\bsp.h)(0x697874F2) -F (..\User\component\ahrs.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ahrs.o" -MD) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\pwm.h)(0x6982F1BF) +I (..\User\bsp\bsp.h)(0x6982F1BF) +F (..\User\component\ahrs.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ahrs.o" -MD) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -F (..\User\component\capacity.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/capacity.o" -MD) -I (..\User\component\capacity.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +F (..\User\component\capacity.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/capacity.o" -MD) +I (..\User\component\capacity.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -F (..\User\component\crc16.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/crc16.o" -MD) -I (..\User\component\crc16.h)(0x697874F2) +F (..\User\component\crc16.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/crc16.o" -MD) +I (..\User\component\crc16.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -F (..\User\component\error_detect.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/error_detect.o" -MD) -I (..\User\component\error_detect.h)(0x697874F2) +F (..\User\component\error_detect.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/error_detect.o" -MD) +I (..\User\component\error_detect.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\mm.h)(0x697874F2) -F (..\User\component\filter.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/filter.o" -MD) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\mm.h)(0x6982F1BF) +F (..\User\component\filter.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/filter.o" -MD) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -F (..\User\component\freertos_cli.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/freertos_cli.o" -MD) +F (..\User\component\freertos_cli.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/freertos_cli.o" -MD) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) @@ -1762,42 +1762,42 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\component\FreeRTOS_CLI.h)(0x697874F2) -F (..\User\component\limiter.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/limiter.o" -MD) -I (..\User\component\limiter.h)(0x697874F2) +I (..\User\component\FreeRTOS_CLI.h)(0x6982F1BF) +F (..\User\component\limiter.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/limiter.o" -MD) +I (..\User\component\limiter.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -F (..\User\component\mixer.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/mixer.o" -MD) -I (..\User\component\mixer.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +F (..\User\component\mixer.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/mixer.o" -MD) +I (..\User\component\mixer.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -F (..\User\component\pid.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/pid.o" -MD) -I (..\User\component\pid.h)(0x697874F2) +F (..\User\component\pid.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/pid.o" -MD) +I (..\User\component\pid.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -F (..\User\component\ui.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ui.o" -MD) -I (..\User\component\ui.h)(0x697874F2) +F (..\User\component\ui.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ui.o" -MD) +I (..\User\component\ui.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6035A4A8) -F (..\User\component\user_math.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/user_math.o" -MD) -I (..\User\component\user_math.h)(0x697874F2) +F (..\User\component\user_math.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/user_math.o" -MD) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) @@ -1807,7 +1807,7 @@ I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) F (..\User\component\bsp_rc.c)(0x68B718FD)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/bsp_rc.o" -MD) I (..\User\component\bsp_rc.h)(0x62055230) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1846,24 +1846,24 @@ I (..\User\component\calc_lib.h)(0x62054DF2) F (..\User\component\calc_lib.c)(0x68B718FD)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/calc_lib.o" -MD) I (..\User\component\calc_lib.h)(0x62054DF2) I (..\User\module\struct_typedef.h)(0x68DBD148) -F (..\User\component\crc8.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/crc8.o" -MD) -I (..\User\component\crc8.h)(0x697874F2) +F (..\User\component\crc8.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/crc8.o" -MD) +I (..\User\component\crc8.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -F (..\User\device\bmi088.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/bmi088.o" -MD) -I (..\User\device\bmi088.h)(0x697874F2) +F (..\User\device\bmi088.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/bmi088.o" -MD) +I (..\User\device\bmi088.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (..\Core\Inc\gpio.h)(0x69184413) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1897,24 +1897,24 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\gpio.h)(0x697874F2) -I (..\User\bsp\spi.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\gpio.h)(0x6982F1BF) +I (..\User\bsp\spi.h)(0x6982F1BF) I (..\Core\Inc\spi.h)(0x69184EBA) -F (..\User\device\ist8310.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ist8310.o" -MD) -I (..\User\device\ist8310.h)(0x697874F2) +F (..\User\device\ist8310.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ist8310.o" -MD) +I (..\User\device\ist8310.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (..\Core\Inc\gpio.h)(0x69184413) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -1948,26 +1948,26 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\gpio.h)(0x697874F2) -I (..\User\bsp\i2c.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\gpio.h)(0x6982F1BF) +I (..\User\bsp\i2c.h)(0x6982F1BF) I (..\Core\Inc\i2c.h)(0x69184EBA) -F (..\User\device\motor.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor.o" -MD) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +F (..\User\device\motor.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor.o" -MD) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -F (..\User\device\motor_rm.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_rm.o" -MD) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +F (..\User\device\motor_rm.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_rm.o" -MD) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2001,8 +2001,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2015,19 +2015,19 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -F (..\User\device\motor_dm.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_dm.o" -MD) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +F (..\User\device\motor_dm.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_dm.o" -MD) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2061,8 +2061,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2074,13 +2074,13 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -F (..\User\device\motor_step.c)(0x697875A5)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_step.o" -MD) -I (..\Core\Inc\main.h)(0x697874D4) +F (..\User\device\motor_step.c)(0x69843522)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_step.o" -MD) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2115,22 +2115,22 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\pwm.h)(0x697874F2) -I (..\Core\Inc\tim.h)(0x697874D3) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\device\motor_step.h)(0x69786AB5) +I (..\User\bsp\pwm.h)(0x6982F1BF) +I (..\Core\Inc\tim.h)(0x6982F10C) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\device\motor_step.h)(0x698304D5) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\gpio.h)(0x697874F2) -F (..\User\device\motor_lz.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_lz.o" -MD) -I (..\User\device\motor_lz.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +I (..\User\bsp\gpio.h)(0x6982F1BF) +F (..\User\device\motor_lz.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_lz.o" -MD) +I (..\User\device\motor_lz.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2164,8 +2164,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2178,28 +2178,28 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) F (..\User\device\ai.c)(0x694550E5)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ai.o" -MD) I (..\User\device\ai.h)(0x69454FF2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2232,8 +2232,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2245,20 +2245,20 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\bsp\uart.h)(0x6982F1BF) I (..\Core\Inc\usart.h)(0x69455093) F (..\User\device\ET16s.c)(0x69722251)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/et16s.o" -MD) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\bsp\uart.h)(0x6982F1BF) I (..\Core\Inc\usart.h)(0x69455093) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2291,22 +2291,22 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) I (..\User\component\calc_lib.h)(0x62054DF2) I (..\User\module\struct_typedef.h)(0x68DBD148) -F (..\User\device\dr16.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/dr16.o" -MD) -I (..\User\device\dr16.h)(0x697874F2) +F (..\User\device\dr16.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/dr16.o" -MD) +I (..\User\device\dr16.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\device\device.h)(0x697874F2) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\bsp\uart.h)(0x6982F1BF) I (..\Core\Inc\usart.h)(0x69455093) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2339,17 +2339,17 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\time.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\time.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) F (..\User\device\Oid.c)(0x694BAAC7)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/oid.o" -MD) I (..\User\device\Oid.h)(0x694B9861) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2383,8 +2383,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2396,19 +2396,19 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -I (..\User\bsp\time.h)(0x697874F2) -F (..\User\device\motor_lk.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_lk.o" -MD) -I (..\User\device\motor_lk.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +F (..\User\device\motor_lk.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/motor_lk.o" -MD) +I (..\User\device\motor_lk.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2442,8 +2442,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2456,23 +2456,23 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -F (..\User\device\led.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/led.o" -MD) -I (..\User\device\led.h)(0x697874F2) +F (..\User\device\led.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/led.o" -MD) +I (..\User\device\led.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -F (..\User\device\vofa.c)(0x697874F2)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/vofa.o" -MD) +F (..\User\device\vofa.c)(0x6982F1BF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/vofa.o" -MD) I (D:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) -I (..\User\device\vofa.h)(0x697874F2) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\device\vofa.h)(0x6982F1BF) +I (..\User\bsp\uart.h)(0x6982F1BF) I (..\Core\Inc\usart.h)(0x69455093) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2508,10 +2508,10 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -F (..\User\module\config.c)(0x69798101)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/config.o" -MD) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +F (..\User\module\config.c)(0x6986AF5C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/config.o" -MD) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) @@ -2519,15 +2519,15 @@ I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (..\User\module\config.h)(0x696E2066) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2560,8 +2560,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2573,33 +2573,33 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) F (..\User\module\gimbal.c)(0x69455D21)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/gimbal.o" -MD) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2632,8 +2632,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2645,14 +2645,14 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\bsp\time.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\bsp\time.h)(0x6982F1BF) F (..\User\module\shoot.c)(0x6968CF1F)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/shoot.o" -MD) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) I (..\User\module\shoot.h)(0x6968CB81) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2686,18 +2686,18 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2709,37 +2709,37 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\bsp\time.h)(0x697874F2) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\bsp\time.h)(0x6982F1BF) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\device\motor_dm.h)(0x697874F2) -F (..\User\module\chassis.c)(0x697766C7)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/chassis.o" -MD) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\device\motor_dm.h)(0x6982F1BF) +F (..\User\module\chassis.c)(0x6986C008)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/chassis.o" -MD) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2772,8 +2772,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -2785,10 +2785,10 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) -I (..\User\bsp\time.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdlib.h)(0x6035A4A8) F (..\User\task\ai.c)(0x69765461)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/ai_1.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -2801,8 +2801,8 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -F (..\User\task\cmd.c)(0x69765461)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/cmd.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +F (..\User\task\cmd.c)(0x6984392C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/cmd.o" -MD) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -2816,22 +2816,22 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\device\dr16.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\device\dr16.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (..\User\module\config.h)(0x696E2066) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2864,20 +2864,20 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) F (..\User\task\dr16.c)(0x69765461)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/dr16_1.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -2890,14 +2890,14 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\device\dr16.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\device\dr16.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) F (..\User\task\atti_esti.c)(0x69765461)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/atti_esti.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -2910,9 +2910,9 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\bsp\pwm.h)(0x697874F2) -I (..\Core\Inc\tim.h)(0x697874D3) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\User\bsp\pwm.h)(0x6982F1BF) +I (..\Core\Inc\tim.h)(0x6982F10C) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -2945,27 +2945,27 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\ist8310.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\ist8310.h)(0x6982F1BF) F (..\User\task\gimbal_ctrl.c)(0x6976DF34)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/gimbal_ctrl.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -2979,19 +2979,19 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3024,22 +3024,22 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) I (..\User\module\config.h)(0x696E2066) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) -F (..\User\task\chassis_ctrl.c)(0x697971FF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/chassis_ctrl.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +F (..\User\task\chassis_ctrl.c)(0x6986BF84)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/chassis_ctrl.o" -MD) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3052,22 +3052,22 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3100,20 +3100,20 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\User\module\config.h)(0x696E2066) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\device\motor_dm.h)(0x697874F2) +I (..\User\device\motor_dm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) -F (..\User\task\shoot_ctrl.c)(0x69797C19)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/shoot_ctrl.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +F (..\User\task\shoot_ctrl.c)(0x697BE1BA)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/shoot_ctrl.o" -MD) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3132,18 +3132,18 @@ I (..\User\component\bsp_rc.h)(0x62055230) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (..\User\module\config.h)(0x696E2066) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3176,20 +3176,20 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) +I (..\User\device\motor_rm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\module\chassis.h)(0x6977318C) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\module\chassis.h)(0x6986BB0E) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) F (..\User\task\ET16s.c)(0x69765461)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/et16s_1.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3203,10 +3203,10 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -F (..\User\task\step_motor.c)(0x69786AEF)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/step_motor_1.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +F (..\User\task\step_motor.c)(0x6986AF30)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/step_motor_1.o" -MD) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3219,14 +3219,49 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\device\motor_step.h)(0x69786AB5) +I (..\User\device\motor_step.h)(0x698304D5) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) +I (..\User\bsp\pwm.h)(0x6982F1BF) +I (..\Core\Inc\tim.h)(0x6982F10C) +I (..\Core\Inc\main.h)(0x6982EE89) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) +I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h)(0x68B05645) +I (..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h)(0x68B05646) +I (..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h)(0x68B05646) +I (..\Drivers\CMSIS\Include\core_cm4.h)(0x68B05646) +I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x68B05646) +I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x68B05646) +I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x68B05646) +I (..\Drivers\CMSIS\Include\mpu_armv7.h)(0x68B05646) +I (..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h)(0x68B05646) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_can.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) +I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) +I (..\User\bsp\bsp.h)(0x6982F1BF) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) -I (..\User\bsp\gpio.h)(0x697874F2) -I (..\User\bsp\bsp.h)(0x697874F2) -F (..\User\task\init.c)(0x69797532)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/init.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\bsp\gpio.h)(0x6982F1BF) +F (..\User\task\init.c)(0x6983037C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/init.o" -MD) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3240,19 +3275,19 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) -I (..\User\device\motor_dm.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) +I (..\User\device\motor_dm.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3285,19 +3320,21 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\device\bmi088.h)(0x697874F2) +I (..\User\device\bmi088.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\device\dr16.h)(0x697874F2) +I (..\User\device\dr16.h)(0x6982F1BF) I (..\User\device\et16s.h)(0x69735766) -I (..\User\device\motor_step.h)(0x69786AB5) +I (..\User\device\motor_step.h)(0x698304D5) +I (..\User\bsp\pwm.h)(0x6982F1BF) +I (..\Core\Inc\tim.h)(0x6982F10C) F (..\User\task\vofa.c)(0x697655EC)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/vofa_1.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3310,10 +3347,10 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -I (..\User\device\vofa.h)(0x697874F2) -I (..\User\bsp\uart.h)(0x697874F2) +I (..\User\device\vofa.h)(0x6982F1BF) +I (..\User\bsp\uart.h)(0x6982F1BF) I (..\Core\Inc\usart.h)(0x69455093) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3347,10 +3384,10 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\device\device.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\device\device.h)(0x6982F1BF) F (..\User\task\user_task.c)(0x69765461)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/user_task.o" -MD) -I (..\User\task\user_task.h)(0x69765461) +I (..\User\task\user_task.h)(0x69843531) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) @@ -3363,31 +3400,31 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F\portmacro.h I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) -F (..\User\module\cmd\cmd.c)(0x69797D81)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/cmd_1.o" -MD) -I (..\User\module\cmd\cmd.h)(0x69734649) +F (..\User\module\cmd\cmd.c)(0x6986B0E3)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/cmd_1.o" -MD) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3420,8 +3457,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -3433,9 +3470,9 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\device\motor_dm.h)(0x697874F2) +I (..\User\device\motor_dm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) -I (..\User\bsp\time.h)(0x697874F2) +I (..\User\bsp\time.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) F (..\User\module\cmd\cmd_adapter.c)(0x69724A11)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/cmd_adapter.o" -MD) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) @@ -3443,7 +3480,7 @@ I (..\User\module\cmd\cmd_types.h)(0x69710063) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) @@ -3452,26 +3489,26 @@ I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3504,8 +3541,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -3517,34 +3554,34 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\device\motor_dm.h)(0x697874F2) +I (..\User\device\motor_dm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) I (D:\Keil_v5\ARM\ARMCLANG\include\string.h)(0x6035A4A8) F (..\User\module\cmd\cmd_example.c)(0x695FA70F)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-3 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Middlewares/Third_Party/FreeRTOS/Source/include -I ../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I ../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I ../User -I ../User/bsp -I ../User/component -I ../User/device -I ../User/module -I ../User/task -I ../User/module/cmd -I./RTE/_Steering_Wheel_Infatry -ID:/Keil_v5/Arm/Packs/ARM/CMSIS/5.7.0/CMSIS/Core/Include -ID:/Keil_v5/Arm/Packs/Keil/STM32F4xx_DFP/2.17.1/Drivers/CMSIS/Device/ST/STM32F4xx/Include -D__UVISION_VERSION="534" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o "steering wheel_infatry/cmd_example.o" -MD) -I (..\User\module\cmd\cmd.h)(0x69734649) +I (..\User\module\cmd\cmd.h)(0x6986AEE1) I (..\User\module\cmd\cmd_types.h)(0x69710063) I (D:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6035A4A8) I (D:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x6035A4A8) I (..\User\module\cmd\cmd_adapter.h)(0x697249FA) I (..\User\device\ET16s.h)(0x69735766) -I (..\User\device\device.h)(0x697874F2) +I (..\User\device\device.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h)(0x68B055DB) I (D:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x6035A4A8) I (..\User\module\cmd\cmd_behavior.h)(0x695FA70F) -I (..\User\module\chassis.h)(0x6977318C) +I (..\User\module\chassis.h)(0x6986BB0E) I (..\User\module\struct_typedef.h)(0x68DBD148) -I (..\User\component\filter.h)(0x697874F2) -I (..\User\component\user_math.h)(0x697874F2) +I (..\User\component\filter.h)(0x6982F1BF) +I (..\User\component\user_math.h)(0x6982F1BF) I (D:\Keil_v5\ARM\ARMCLANG\include\float.h)(0x6035A4A0) I (D:\Keil_v5\ARM\ARMCLANG\include\math.h)(0x6035A4A8) -I (..\User\component\pid.h)(0x697874F2) -I (..\User\component\ahrs.h)(0x697874F2) -I (..\User\device\bmi088.h)(0x697874F2) -I (..\User\device\motor_rm.h)(0x697874F2) -I (..\User\device\motor.h)(0x697874F2) -I (..\User\bsp\can.h)(0x697874F2) +I (..\User\component\pid.h)(0x6982F1BF) +I (..\User\component\ahrs.h)(0x6982F1BF) +I (..\User\device\bmi088.h)(0x6982F1BF) +I (..\User\device\motor_rm.h)(0x6982F1BF) +I (..\User\device\motor.h)(0x6982F1BF) +I (..\User\bsp\can.h)(0x6982F1BF) I (..\Core\Inc\can.h)(0x69184414) -I (..\Core\Inc\main.h)(0x697874D4) +I (..\Core\Inc\main.h)(0x6982EE89) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h)(0x68B05645) I (..\Core\Inc\stm32f4xx_hal_conf.h)(0x691865D1) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h)(0x68B05645) @@ -3577,8 +3614,8 @@ I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h)(0x68B05645) I (..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h)(0x68B05645) -I (..\User\bsp\bsp.h)(0x697874F2) -I (..\User\bsp\mm.h)(0x697874F2) +I (..\User\bsp\bsp.h)(0x6982F1BF) +I (..\User\bsp\mm.h)(0x6982F1BF) I (..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h)(0x68B055DB) I (..\Core\Inc\FreeRTOSConfig.h)(0x6976E9CD) @@ -3590,5 +3627,5 @@ I (..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h)(0x68B055DB I (..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h)(0x68B055DB) I (..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h)(0x68B055DB) I (..\User\module\gimbal.h)(0x6975DF62) -I (..\User\device\motor_dm.h)(0x697874F2) +I (..\User\device\motor_dm.h)(0x6982F1BF) I (..\User\module\shoot.h)(0x6968CB81) diff --git a/MDK-ARM/Steering Wheel_Infatry/atti_esti.o b/MDK-ARM/Steering Wheel_Infatry/atti_esti.o index 4ab35d9..790ebc0 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/atti_esti.o and b/MDK-ARM/Steering Wheel_Infatry/atti_esti.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/bmi088.o b/MDK-ARM/Steering Wheel_Infatry/bmi088.o index 566a44b..d7f0a09 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/bmi088.o and b/MDK-ARM/Steering Wheel_Infatry/bmi088.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/can.o b/MDK-ARM/Steering Wheel_Infatry/can.o index 8a90005..91e0a58 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/can.o and b/MDK-ARM/Steering Wheel_Infatry/can.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/chassis.o b/MDK-ARM/Steering Wheel_Infatry/chassis.o index e5d6f04..83cf855 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/chassis.o and b/MDK-ARM/Steering Wheel_Infatry/chassis.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/chassis_ctrl.o b/MDK-ARM/Steering Wheel_Infatry/chassis_ctrl.o index 9cc779b..8ce51c7 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/chassis_ctrl.o and b/MDK-ARM/Steering Wheel_Infatry/chassis_ctrl.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/cmd.o b/MDK-ARM/Steering Wheel_Infatry/cmd.o index da615f1..2bde3c8 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/cmd.o and b/MDK-ARM/Steering Wheel_Infatry/cmd.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/cmd_1.o b/MDK-ARM/Steering Wheel_Infatry/cmd_1.o index 2f78195..959e5f5 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/cmd_1.o and b/MDK-ARM/Steering Wheel_Infatry/cmd_1.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/cmd_behavior.o b/MDK-ARM/Steering Wheel_Infatry/cmd_behavior.o index 8ca7846..86a5e43 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/cmd_behavior.o and b/MDK-ARM/Steering Wheel_Infatry/cmd_behavior.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/config.o b/MDK-ARM/Steering Wheel_Infatry/config.o index 2ac8c24..efcfafc 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/config.o and b/MDK-ARM/Steering Wheel_Infatry/config.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/gpio.o b/MDK-ARM/Steering Wheel_Infatry/gpio.o index 5482079..3a4bce6 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/gpio.o and b/MDK-ARM/Steering Wheel_Infatry/gpio.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/gpio_1.o b/MDK-ARM/Steering Wheel_Infatry/gpio_1.o index e2e6659..667083d 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/gpio_1.o and b/MDK-ARM/Steering Wheel_Infatry/gpio_1.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/init.d b/MDK-ARM/Steering Wheel_Infatry/init.d index b481989..ff24060 100644 --- a/MDK-ARM/Steering Wheel_Infatry/init.d +++ b/MDK-ARM/Steering Wheel_Infatry/init.d @@ -61,4 +61,5 @@ steering\ wheel_infatry/init.o: ..\User\task\init.c \ ..\User\device\bmi088.h ..\User\component\user_math.h \ ..\User\module\shoot.h ..\Core\Inc\main.h ..\User\device\dr16.h \ ..\User\device\device.h ..\User\device\et16s.h \ - ..\User\device\motor_step.h + ..\User\device\motor_step.h ..\User\bsp\pwm.h ..\Core\Inc\tim.h \ + ..\User\bsp\bsp.h diff --git a/MDK-ARM/Steering Wheel_Infatry/init.o b/MDK-ARM/Steering Wheel_Infatry/init.o index 1a5d187..b512fe7 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/init.o and b/MDK-ARM/Steering Wheel_Infatry/init.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/ist8310.o b/MDK-ARM/Steering Wheel_Infatry/ist8310.o index 7dbf71f..a5daa87 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/ist8310.o and b/MDK-ARM/Steering Wheel_Infatry/ist8310.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/main.o b/MDK-ARM/Steering Wheel_Infatry/main.o index b5f2a8e..6262c9c 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/main.o and b/MDK-ARM/Steering Wheel_Infatry/main.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/motor_step.o b/MDK-ARM/Steering Wheel_Infatry/motor_step.o index e551698..85ba660 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/motor_step.o and b/MDK-ARM/Steering Wheel_Infatry/motor_step.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/pwm.o b/MDK-ARM/Steering Wheel_Infatry/pwm.o index 6c63ff6..edf1948 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/pwm.o and b/MDK-ARM/Steering Wheel_Infatry/pwm.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/shoot_ctrl.o b/MDK-ARM/Steering Wheel_Infatry/shoot_ctrl.o index c2bdca1..a0c077c 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/shoot_ctrl.o and b/MDK-ARM/Steering Wheel_Infatry/shoot_ctrl.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/step_motor_1.d b/MDK-ARM/Steering Wheel_Infatry/step_motor_1.d index 8594d71..2373526 100644 --- a/MDK-ARM/Steering Wheel_Infatry/step_motor_1.d +++ b/MDK-ARM/Steering Wheel_Infatry/step_motor_1.d @@ -13,6 +13,39 @@ steering\ wheel_infatry/step_motor_1.o: ..\User\task\step_motor.c \ ..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \ ..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \ ..\User\device\motor_step.h \ - D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \ - ..\User\device\ET16s.h ..\User\device\device.h ..\User\bsp\gpio.h \ - ..\User\bsp\bsp.h + D:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h ..\User\bsp\pwm.h \ + ..\Core\Inc\tim.h ..\Core\Inc\main.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h \ + ..\Core\Inc\stm32f4xx_hal_conf.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h \ + ..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h \ + ..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h \ + ..\Drivers\CMSIS\Include\core_cm4.h \ + ..\Drivers\CMSIS\Include\cmsis_version.h \ + ..\Drivers\CMSIS\Include\cmsis_compiler.h \ + ..\Drivers\CMSIS\Include\cmsis_armclang.h \ + ..\Drivers\CMSIS\Include\mpu_armv7.h \ + ..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_can.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_i2c_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_spi.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h \ + ..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h \ + ..\User\bsp\bsp.h ..\User\device\ET16s.h ..\User\device\device.h \ + ..\User\bsp\gpio.h ..\User\bsp\bsp.h diff --git a/MDK-ARM/Steering Wheel_Infatry/step_motor_1.o b/MDK-ARM/Steering Wheel_Infatry/step_motor_1.o index e34dc2f..f996ab5 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/step_motor_1.o and b/MDK-ARM/Steering Wheel_Infatry/step_motor_1.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/stm32f4xx_it.o b/MDK-ARM/Steering Wheel_Infatry/stm32f4xx_it.o index ff5c13e..f5b612f 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/stm32f4xx_it.o and b/MDK-ARM/Steering Wheel_Infatry/stm32f4xx_it.o differ diff --git a/MDK-ARM/Steering Wheel_Infatry/tim.o b/MDK-ARM/Steering Wheel_Infatry/tim.o index a858d47..452f438 100644 Binary files a/MDK-ARM/Steering Wheel_Infatry/tim.o and b/MDK-ARM/Steering Wheel_Infatry/tim.o differ diff --git a/Steering Wheel_Infatry.ioc b/Steering Wheel_Infatry.ioc index 39ba4e4..788fb57 100644 --- a/Steering Wheel_Infatry.ioc +++ b/Steering Wheel_Infatry.ioc @@ -7,18 +7,20 @@ CAN1.BS2=CAN_BS2_3TQ CAN1.CalculateBaudRate=1000000 CAN1.CalculateTimeBit=1000 CAN1.CalculateTimeQuantum=71.42857142857143 -CAN1.IPParameters=CalculateTimeQuantum,CalculateTimeBit,CalculateBaudRate,BS1,Prescaler,BS2,NART,SJW +CAN1.IPParameters=CalculateTimeQuantum,CalculateTimeBit,CalculateBaudRate,BS1,Prescaler,BS2,NART,SJW,TXFP CAN1.NART=ENABLE CAN1.Prescaler=3 CAN1.SJW=CAN_SJW_1TQ +CAN1.TXFP=ENABLE CAN2.BS1=CAN_BS1_10TQ CAN2.BS2=CAN_BS2_3TQ CAN2.CalculateBaudRate=1000000 CAN2.CalculateTimeBit=1000 CAN2.CalculateTimeQuantum=71.42857142857143 -CAN2.IPParameters=CalculateTimeQuantum,CalculateTimeBit,CalculateBaudRate,BS1,BS2,Prescaler,NART +CAN2.IPParameters=CalculateTimeQuantum,CalculateTimeBit,CalculateBaudRate,BS1,BS2,Prescaler,NART,TXFP CAN2.NART=ENABLE CAN2.Prescaler=3 +CAN2.TXFP=ENABLE Dma.Request0=USART3_RX Dma.Request1=SPI1_RX Dma.Request2=SPI1_TX @@ -91,7 +93,7 @@ Mcu.CPN=STM32F407IGH6 Mcu.Family=STM32F4 Mcu.IP0=CAN1 Mcu.IP1=CAN2 -Mcu.IP10=TIM8 +Mcu.IP10=TIM1 Mcu.IP11=TIM10 Mcu.IP12=USART1 Mcu.IP13=USART2 @@ -109,50 +111,51 @@ Mcu.IPNb=16 Mcu.Name=STM32F407I(E-G)Hx Mcu.Package=UFBGA176 Mcu.Pin0=PB8 -Mcu.Pin1=PG14 -Mcu.Pin10=PD0 -Mcu.Pin11=PC11 -Mcu.Pin12=PC10 -Mcu.Pin13=PG9 -Mcu.Pin14=PD5 -Mcu.Pin15=PD1 -Mcu.Pin16=PC14-OSC32_IN -Mcu.Pin17=PF0 -Mcu.Pin18=PA9 -Mcu.Pin19=PC15-OSC32_OUT -Mcu.Pin2=PB4 -Mcu.Pin20=PH0-OSC_IN -Mcu.Pin21=PC7 -Mcu.Pin22=PH1-OSC_OUT -Mcu.Pin23=PF1 -Mcu.Pin24=PG6 -Mcu.Pin25=PF6 -Mcu.Pin26=PH12 -Mcu.Pin27=PG3 -Mcu.Pin28=PH11 -Mcu.Pin29=PH10 -Mcu.Pin3=PB3 -Mcu.Pin30=PC2 -Mcu.Pin31=PB2 -Mcu.Pin32=PA0-WKUP -Mcu.Pin33=PA4 -Mcu.Pin34=PC4 +Mcu.Pin1=PB5 +Mcu.Pin10=PD6 +Mcu.Pin11=PD0 +Mcu.Pin12=PC11 +Mcu.Pin13=PC10 +Mcu.Pin14=PG9 +Mcu.Pin15=PD5 +Mcu.Pin16=PD1 +Mcu.Pin17=PC14-OSC32_IN +Mcu.Pin18=PF0 +Mcu.Pin19=PA9 +Mcu.Pin2=PG14 +Mcu.Pin20=PC15-OSC32_OUT +Mcu.Pin21=PH0-OSC_IN +Mcu.Pin22=PC7 +Mcu.Pin23=PH1-OSC_OUT +Mcu.Pin24=PF1 +Mcu.Pin25=PG6 +Mcu.Pin26=PF6 +Mcu.Pin27=PH12 +Mcu.Pin28=PG3 +Mcu.Pin29=PH11 +Mcu.Pin3=PB4 +Mcu.Pin30=PH10 +Mcu.Pin31=PA0-WKUP +Mcu.Pin32=PA4 +Mcu.Pin33=PC4 +Mcu.Pin34=PE13 Mcu.Pin35=PC5 -Mcu.Pin36=PB12 -Mcu.Pin37=PA7 -Mcu.Pin38=PB1 -Mcu.Pin39=PB0 -Mcu.Pin4=PA14 -Mcu.Pin40=VP_FREERTOS_VS_CMSIS_V2 -Mcu.Pin41=VP_SYS_VS_Systick -Mcu.Pin42=VP_TIM8_VS_ClockSourceINT -Mcu.Pin43=VP_TIM10_VS_ClockSourceINT -Mcu.Pin5=PA13 -Mcu.Pin6=PB9 -Mcu.Pin7=PB7 -Mcu.Pin8=PB6 -Mcu.Pin9=PD6 -Mcu.PinsNb=44 +Mcu.Pin36=PE9 +Mcu.Pin37=PE11 +Mcu.Pin38=PE14 +Mcu.Pin39=PA7 +Mcu.Pin4=PB3 +Mcu.Pin40=PB0 +Mcu.Pin41=VP_FREERTOS_VS_CMSIS_V2 +Mcu.Pin42=VP_SYS_VS_Systick +Mcu.Pin43=VP_TIM1_VS_ClockSourceINT +Mcu.Pin44=VP_TIM10_VS_ClockSourceINT +Mcu.Pin5=PA14 +Mcu.Pin6=PA13 +Mcu.Pin7=PB9 +Mcu.Pin8=PB7 +Mcu.Pin9=PB6 +Mcu.PinsNb=45 Mcu.ThirdPartyNb=0 Mcu.UserConstants= Mcu.UserName=STM32F407IGHx @@ -186,7 +189,7 @@ NVIC.SavedPendsvIrqHandlerGenerated=true NVIC.SavedSvcallIrqHandlerGenerated=true NVIC.SavedSystickIrqHandlerGenerated=true NVIC.SysTick_IRQn=true\:15\:0\:false\:false\:true\:true\:false\:true\:false -NVIC.TIM1_UP_TIM10_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.TIM1_BRK_TIM9_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true NVIC.USART1_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true NVIC.USART3_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true NVIC.USART6_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true @@ -220,23 +223,13 @@ PB0.GPIO_Speed=GPIO_SPEED_FREQ_MEDIUM PB0.Locked=true PB0.PinState=GPIO_PIN_SET PB0.Signal=GPIO_Output -PB1.GPIOParameters=GPIO_PuPd,GPIO_Label -PB1.GPIO_Label=DIR_P -PB1.GPIO_PuPd=GPIO_PULLUP -PB1.Locked=true -PB1.Signal=GPIO_Output -PB12.Locked=true -PB12.Mode=CAN_Activate -PB12.Signal=CAN2_RX -PB2.GPIOParameters=GPIO_PuPd,GPIO_Label -PB2.GPIO_Label=DIR_N -PB2.GPIO_PuPd=GPIO_PULLUP -PB2.Locked=true -PB2.Signal=GPIO_Output PB3.Mode=Full_Duplex_Master PB3.Signal=SPI1_SCK PB4.Mode=Full_Duplex_Master PB4.Signal=SPI1_MISO +PB5.Locked=true +PB5.Mode=CAN_Activate +PB5.Signal=CAN2_RX PB6.Mode=CAN_Activate PB6.Signal=CAN2_TX PB7.Mode=Asynchronous @@ -253,11 +246,6 @@ PC14-OSC32_IN.Mode=LSE-External-Oscillator PC14-OSC32_IN.Signal=RCC_OSC32_IN PC15-OSC32_OUT.Mode=LSE-External-Oscillator PC15-OSC32_OUT.Signal=RCC_OSC32_OUT -PC2.GPIOParameters=GPIO_PuPd,GPIO_Label -PC2.GPIO_Label=PUL_N -PC2.GPIO_PuPd=GPIO_PULLUP -PC2.Locked=true -PC2.Signal=GPIO_Output PC4.GPIOParameters=GPIO_PuPd,GPIO_Label,GPIO_ModeDefaultEXTI PC4.GPIO_Label=ACCL_INT PC4.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING @@ -270,6 +258,9 @@ PC5.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING PC5.GPIO_PuPd=GPIO_PULLUP PC5.Locked=true PC5.Signal=GPXTI5 +PC7.GPIOParameters=GPIO_Speed,GPIO_PuPd +PC7.GPIO_PuPd=GPIO_PULLUP +PC7.GPIO_Speed=GPIO_SPEED_FREQ_HIGH PC7.Locked=true PC7.Signal=S_TIM8_CH2 PCC.Checker=false @@ -289,6 +280,29 @@ PD5.Mode=Asynchronous PD5.Signal=USART2_TX PD6.Mode=Asynchronous PD6.Signal=USART2_RX +PE11.GPIOParameters=GPIO_Speed,PinState,GPIO_PuPd,GPIO_Label,GPIO_ModeDefaultOutputPP +PE11.GPIO_Label=DIR_P +PE11.GPIO_ModeDefaultOutputPP=GPIO_MODE_OUTPUT_PP +PE11.GPIO_PuPd=GPIO_PULLUP +PE11.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PE11.Locked=true +PE11.PinState=GPIO_PIN_SET +PE11.Signal=GPIO_Output +PE13.GPIOParameters=GPIO_Speed,GPIO_PuPd +PE13.GPIO_PuPd=GPIO_PULLUP +PE13.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PE13.Locked=true +PE13.Signal=S_TIM1_CH3 +PE14.GPIOParameters=GPIO_Speed,GPIO_PuPd +PE14.GPIO_PuPd=GPIO_PULLUP +PE14.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PE14.Locked=true +PE14.Signal=S_TIM1_CH4 +PE9.GPIOParameters=GPIO_Speed,GPIO_PuPd +PE9.GPIO_PuPd=GPIO_PULLUP +PE9.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PE9.Locked=true +PE9.Signal=S_TIM1_CH1 PF0.Mode=I2C PF0.Signal=I2C2_SDA PF1.Mode=I2C @@ -363,7 +377,7 @@ ProjectManager.ToolChainLocation= ProjectManager.UAScriptAfterPath= ProjectManager.UAScriptBeforePath= ProjectManager.UnderRoot=false -ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-HAL-false,2-MX_GPIO_Init-GPIO-false-HAL-true,3-MX_DMA_Init-DMA-false-HAL-true,4-MX_CAN1_Init-CAN1-false-HAL-true,5-MX_CAN2_Init-CAN2-false-HAL-true,6-MX_I2C1_Init-I2C1-false-HAL-true,7-MX_I2C2_Init-I2C2-false-HAL-true,8-MX_SPI1_Init-SPI1-false-HAL-true,9-MX_USART1_UART_Init-USART1-false-HAL-true,10-MX_USART2_UART_Init-USART2-false-HAL-true,11-MX_USART3_UART_Init-USART3-false-HAL-true,12-MX_TIM10_Init-TIM10-false-HAL-true,13-MX_USART6_UART_Init-USART6-false-HAL-true,14-MX_TIM8_Init-TIM8-false-HAL-true +ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-HAL-false,2-MX_GPIO_Init-GPIO-false-HAL-true,3-MX_DMA_Init-DMA-false-HAL-true,4-MX_CAN1_Init-CAN1-false-HAL-true,5-MX_CAN2_Init-CAN2-false-HAL-true,6-MX_I2C1_Init-I2C1-false-HAL-true,7-MX_I2C2_Init-I2C2-false-HAL-true,8-MX_SPI1_Init-SPI1-false-HAL-true,9-MX_USART1_UART_Init-USART1-false-HAL-true,10-MX_USART2_UART_Init-USART2-false-HAL-true,11-MX_USART3_UART_Init-USART3-false-HAL-true,12-MX_TIM10_Init-TIM10-false-HAL-true,13-MX_USART6_UART_Init-USART6-false-HAL-true,14-MX_TIM1_Init-TIM1-false-HAL-true RCC.48MHZClocksFreq_Value=84000000 RCC.AHBFreq_Value=168000000 RCC.APB1CLKDivider=RCC_HCLK_DIV4 @@ -406,7 +420,13 @@ SH.GPXTI5.0=GPIO_EXTI5 SH.GPXTI5.ConfNb=1 SH.S_TIM10_CH1.0=TIM10_CH1,PWM Generation1 CH1 SH.S_TIM10_CH1.ConfNb=1 -SH.S_TIM8_CH2.0=TIM8_CH2,PWM Generation2 CH2 +SH.S_TIM1_CH1.0=TIM1_CH1,PWM Generation1 CH1 +SH.S_TIM1_CH1.ConfNb=1 +SH.S_TIM1_CH3.0=TIM1_CH3 +SH.S_TIM1_CH3.ConfNb=1 +SH.S_TIM1_CH4.0=TIM1_CH4 +SH.S_TIM1_CH4.ConfNb=1 +SH.S_TIM8_CH2.0=TIM8_CH2 SH.S_TIM8_CH2.ConfNb=1 SPI1.BaudRatePrescaler=SPI_BAUDRATEPRESCALER_16 SPI1.CLKPhase=SPI_PHASE_2EDGE @@ -416,13 +436,13 @@ SPI1.Direction=SPI_DIRECTION_2LINES SPI1.IPParameters=VirtualType,Mode,Direction,CalculateBaudRate,BaudRatePrescaler,CLKPhase,CLKPolarity SPI1.Mode=SPI_MODE_MASTER SPI1.VirtualType=VM_MASTER +TIM1.Channel-PWM\ Generation1\ CH1=TIM_CHANNEL_1 +TIM1.IPParameters=Channel-PWM Generation1 CH1,Prescaler,Period +TIM1.Period=19999 +TIM1.Prescaler=167 TIM10.Channel=TIM_CHANNEL_1 TIM10.IPParameters=Channel,Period TIM10.Period=5000 -TIM8.Channel-PWM\ Generation2\ CH2=TIM_CHANNEL_2 -TIM8.IPParameters=Channel-PWM Generation2 CH2,Prescaler,Period -TIM8.Period=19999 -TIM8.Prescaler=167 USART1.IPParameters=VirtualMode USART1.VirtualMode=VM_ASYNC USART2.IPParameters=VirtualMode @@ -441,7 +461,7 @@ VP_SYS_VS_Systick.Mode=SysTick VP_SYS_VS_Systick.Signal=SYS_VS_Systick VP_TIM10_VS_ClockSourceINT.Mode=Enable_Timer VP_TIM10_VS_ClockSourceINT.Signal=TIM10_VS_ClockSourceINT -VP_TIM8_VS_ClockSourceINT.Mode=Internal -VP_TIM8_VS_ClockSourceINT.Signal=TIM8_VS_ClockSourceINT +VP_TIM1_VS_ClockSourceINT.Mode=Internal +VP_TIM1_VS_ClockSourceINT.Signal=TIM1_VS_ClockSourceINT board=custom rtos.0.ip=FREERTOS diff --git a/User/bsp/bsp_config.yaml b/User/bsp/bsp_config.yaml index d50a179..8fe9bb4 100644 --- a/User/bsp/bsp_config.yaml +++ b/User/bsp/bsp_config.yaml @@ -24,21 +24,6 @@ gpio: ioc_label: GYRO_CS pin: PB0 type: OUTPUT - - custom_name: DIR_P - has_exti: false - ioc_label: DIR_P - pin: PB1 - type: OUTPUT - - custom_name: DIR_N - has_exti: false - ioc_label: DIR_N - pin: PB2 - type: OUTPUT - - custom_name: PUL_N - has_exti: false - ioc_label: PUL_N - pin: PC2 - type: OUTPUT - custom_name: ACCL_INT has_exti: true ioc_label: ACCL_INT @@ -49,6 +34,11 @@ gpio: ioc_label: GYRO_INT pin: PC5 type: EXTI + - custom_name: DIR_P + has_exti: false + ioc_label: DIR_P + pin: PE11 + type: OUTPUT - custom_name: CMPS_INT has_exti: true ioc_label: CMPS_INT @@ -86,10 +76,10 @@ mm: enabled: true pwm: configs: - - channel: TIM_CHANNEL_2 - custom_name: MOTOR_STEP - label: TIM8_CH2 - timer: TIM8 + - channel: TIM_CHANNEL_1 + custom_name: TIM1_CH1 + label: TIM1_CH1 + timer: TIM1 - channel: TIM_CHANNEL_1 custom_name: IMU_HEAT label: TIM10_CH1 diff --git a/User/bsp/gpio.c b/User/bsp/gpio.c index 432ada9..0cc74ac 100644 --- a/User/bsp/gpio.c +++ b/User/bsp/gpio.c @@ -29,11 +29,9 @@ static const BSP_GPIO_MAP_t GPIO_Map[BSP_GPIO_NUM] = { {USER_KEY_Pin, USER_KEY_GPIO_Port}, {ACCL_CS_Pin, ACCL_CS_GPIO_Port}, {GYRO_CS_Pin, GYRO_CS_GPIO_Port}, - {DIR_P_Pin, DIR_P_GPIO_Port}, - {DIR_N_Pin, DIR_N_GPIO_Port}, - {PUL_N_Pin, PUL_N_GPIO_Port}, {ACCL_INT_Pin, ACCL_INT_GPIO_Port}, {GYRO_INT_Pin, GYRO_INT_GPIO_Port}, + {DIR_P_Pin, DIR_P_GPIO_Port}, {CMPS_INT_Pin, CMPS_INT_GPIO_Port}, {CMPS_RST_Pin, CMPS_RST_GPIO_Port}, {LED_Blue_Pin, LED_Blue_GPIO_Port}, diff --git a/User/bsp/gpio.h b/User/bsp/gpio.h index afcf446..126b062 100644 --- a/User/bsp/gpio.h +++ b/User/bsp/gpio.h @@ -25,11 +25,9 @@ typedef enum { BSP_GPIO_USER_KEY, BSP_GPIO_ACCL_CS, BSP_GPIO_GYRO_CS, - BSP_GPIO_DIR_P, - BSP_GPIO_DIR_N, - BSP_GPIO_PUL_N, BSP_GPIO_ACCL_INT, BSP_GPIO_GYRO_INT, + BSP_GPIO_DIR_P, BSP_GPIO_CMPS_INT, BSP_GPIO_CMPS_RST, BSP_GPIO_LED_BLUE, diff --git a/User/bsp/pwm.c b/User/bsp/pwm.c index dc21593..ea47c5e 100644 --- a/User/bsp/pwm.c +++ b/User/bsp/pwm.c @@ -25,7 +25,7 @@ typedef struct { /* Private variables -------------------------------------------------------- */ static const BSP_PWM_Config_t PWM_Map[BSP_PWM_NUM] = { - {&htim8, TIM_CHANNEL_2}, + {&htim1, TIM_CHANNEL_1}, {&htim10, TIM_CHANNEL_1}, }; diff --git a/User/bsp/pwm.h b/User/bsp/pwm.h index 9ef31fc..d6a7d1c 100644 --- a/User/bsp/pwm.h +++ b/User/bsp/pwm.h @@ -23,7 +23,7 @@ extern "C" { /* Exported types ----------------------------------------------------------- */ /* PWM通道 */ typedef enum { - BSP_PWM_MOTOR_STEP, + BSP_PWM_TIM1_CH1, BSP_PWM_IMU_HEAT, BSP_PWM_NUM, BSP_PWM_ERR, diff --git a/User/device/motor_step.c b/User/device/motor_step.c index aae338d..114b642 100644 --- a/User/device/motor_step.c +++ b/User/device/motor_step.c @@ -5,26 +5,33 @@ #include "bsp/gpio.h" #include "cmsis_os2.h" -int8_t Motor_Step_Init(STEP_MOTOR *param){ - - BSP_PWM_Start(BSP_PWM_MOTOR_STEP); +int8_t Motor_Step_Init(MOTOR_STEP_t *motor_step){ + BSP_PWM_Start(motor_step->param.channel); return 0; } -int8_t Motor_Step_Ctrl(STEP_MOTOR *param){ +int8_t Motor_Step_Ctrl(MOTOR_STEP_t *motor_step){ -// if(param->state==1){ /* 控制方向 */ - BSP_GPIO_WritePin(BSP_GPIO_DIR_P, param->direction); - osDelay(10); // 方向稳定时间 -// for(int i;i<10000;i++){ - BSP_PWM_SetComp(BSP_PWM_MOTOR_STEP,19999); -// osDelay(200); -// BSP_PWM_SetComp(BSP_PWM_STEP_MOTOR,0); -// osDelay(200); -// } + if(motor_step->param.reverse==true){ + BSP_GPIO_WritePin(BSP_GPIO_DIR_P, true); + BSP_PWM_SetComp(motor_step->param.channel,0.5); + } + + if(motor_step->param.reverse==false){ + BSP_GPIO_WritePin(BSP_GPIO_DIR_P, true); + + BSP_PWM_SetComp(motor_step->param.channel,0.9); +// osDelay(100); +// BSP_PWM_SetComp(motor_step->param.channel,0); + } return 0; } +int8_t Motor_Step_Stop(MOTOR_STEP_t *motor_step){ + + BSP_PWM_Stop(motor_step->param.channel) ; + return 0; +} diff --git a/User/device/motor_step.h b/User/device/motor_step.h index 9fa867d..a471880 100644 --- a/User/device/motor_step.h +++ b/User/device/motor_step.h @@ -11,27 +11,32 @@ extern "C" { /* Includes ----------------------------------------------------------------- */ #include "cmsis_os2.h" #include +#include "bsp/pwm.h" /* Exported constants ------------------------------------------------------- */ /* Exported macro ----------------------------------------------------------- */ /* Exported types ----------------------------------------------------------- */ -typedef struct{ + + /*每个电机需要的参数*/ +typedef struct { + BSP_PWM_Channel_t channel; + bool reverse; + bool gear; +} MOTOR_STEP_Param_t; + +typedef struct{ + + MOTOR_STEP_Param_t param; /* 脉冲个数 */ int pulse; - /* 脉冲间隔 */ - float time; + +}MOTOR_STEP_t; - /* 方向 */ - bool direction; - /* 状态 */ - int state; - -}STEP_MOTOR; - -int8_t Motor_Step_Init(STEP_MOTOR *param); -int8_t Motor_Step_Ctrl(STEP_MOTOR *param); +int8_t Motor_Step_Init(MOTOR_STEP_t *param); +int8_t Motor_Step_Ctrl(MOTOR_STEP_t *param); +int8_t Motor_Step_Stop(MOTOR_STEP_t *motor_step); #ifdef __cplusplus } #endif diff --git a/User/module/chassis.c b/User/module/chassis.c index cb651cf..a76f385 100644 --- a/User/module/chassis.c +++ b/User/module/chassis.c @@ -40,7 +40,6 @@ chassis_init(&chassis,&Config_GetRobotParam()->chassis,CHASSIS_FREQ); #include "math.h" #include "component/pid.h" #include "component/filter.h" - #include "stdlib.h" /*舵轮舵向校准方法:注释掉关于6020反馈角度的处理以及6020数据的发送这两处(define.h里有快捷方法), @@ -64,6 +63,7 @@ fp32 vofa_send[8]; //vofa输出数据 #define CHASSIS_ROTOR_OMEGA 0.001 #define CHASSIS_ROTOR_WZ_MIN 0.6f /* 小陀螺旋转位移下界 */ #define CHASSIS_ROTOR_WZ_MAX 0.8f /* 小陀螺旋转位移上界 */ +#define ONE_MINUTE 60.0f /* 一分钟时间 */ float motor_add_anagle(float current_angle){ static int cirle; @@ -80,7 +80,40 @@ float motor_add_anagle(float current_angle){ return current_angle; } -static int8_t Chassis_SetMode(Chassis_t *c, Chassis_mode_t mode ,uint32_t now) + +static int8_t Set_Chassis_Attitude(Chassis_t *c,CHASSIS_ATTITUDE_MODE_t mode){ + float Telescope_omega_set_point; + switch(mode) + { + case STOP_MODE: + c->out.Telescope = 0.0f; + break; + case EXPAND_MODE: + + Telescope_omega_set_point = PID_Calc(&(c->pid.Telescope_angle), c->param->Set_TelescopeAngle, + c->feedback.motor.Telescope_SuperiorAngle, 0.0f, c->dt); + c->out.Telescope = PID_Calc(&(c->pid.Telescope_omega), Telescope_omega_set_point, + c->feedback.motor.Telescope_Omega, 0.f, c->dt); + break; + case REDUCE_MODE: + + Telescope_omega_set_point = PID_Calc(&(c->pid.Telescope_angle), 0, + c->feedback.motor.Telescope_SuperiorAngle, 0.0f, c->dt); + c->out.Telescope = PID_Calc(&(c->pid.Telescope_omega), Telescope_omega_set_point, + c->feedback.motor.Telescope_Omega, 0.f, c->dt); + break; + default: + c->out.Telescope = 0.0f; + break; + } + return CHASSIS_OK; +} + + + + + +static int8_t Chassis_SetMode(Chassis_t *c, Chassis_Mode_t mode ,uint32_t now) { if (c == NULL) return CHASSIS_ERR_NULL; /* 主结构体不能为空 */ @@ -88,15 +121,19 @@ static int8_t Chassis_SetMode(Chassis_t *c, Chassis_mode_t mode ,uint32_t now) if (mode == CHASSIS_MODE_ROTOR && c->mode != CHASSIS_MODE_ROTOR) { srand(now); - c->wz_multi = (rand() % 2) ? -1 : 1; + c->wz_multi =1; + // c->wz_multi = (rand() % 2) ? -1 : 1; } for (int i = 0; i < 4; i++) { - PID_Reset(&c->pid.chassis_3508VPID[i]); - PID_Reset(&c->pid.chassis_6020OmegaPid[i]); - PID_Reset(&c->pid.chassis_6020anglePid[i]); + PID_Reset(&c->pid.Radder_DIR_omega[i]); + PID_Reset(&c->pid.Radder_DIR_angle[i]); + PID_Reset(&c->pid.Wheel_DIR_omega[i]); + PID_Reset(&c->pid.Radder_DIR_omega[i]); } - + /* 丝杆伸缩 */ + PID_Reset(&c->pid.Telescope_omega); + PID_Reset(&c->pid.Telescope_angle); c->mode = mode; return CHASSIS_OK; } @@ -127,46 +164,40 @@ int8_t chassis_init(Chassis_t *c, Chassis_Param_t *param, float target_freq) c->mode = CHASSIS_MODE_RELAX; // 默认模式为停止锁死底盘 c->mech_zero = c->param->mech_zero;/*云台6020的机械中点*/ c->travel = c->param->travel ;/*云台6020的机械行程*/ -// c->chassis2006_setangle = c->param->chassis2006_setangle; // 变形舵轮2006目标角度 大概是48圈 -// c->chassis3508_setangle = c->param->chassis3508_setangle; // 变形舵轮3508目标角度 大概是60度左右 +// c->mech_zero_4310 = c->param->mech_zero_4310;/*云台4310的机械中点*/ /*初始化can*/ BSP_CAN_Init(); - /*注册3508电机*/ + /*注册轮向电机*/ for (int i = 0; i < 4; i++) { - MOTOR_RM_Register(&(c->param->motor_3508_param[i])); + MOTOR_RM_Register(&(c->param->motor.Wheel_DIR[i])); } - /*注册6020电机*/ + /*注册舵向电机*/ for (int i = 0; i < 4; i++) { - MOTOR_RM_Register(&(c->param->motor_6020_param[i])); + MOTOR_RM_Register(&(c->param->motor.Radder_DIR[i])); } - MOTOR_RM_Register(&(c->param->motor_2006_param)); // 注册2006电机 - + /*注册伸缩电机*/ + MOTOR_RM_Register(&(c->param->motor.Telescope_motor)); // 舵轮安装时的6020机械误差,机械校准时1号轮在左前方,所有轮的编码器朝向右面 - MotorOffset_t motor_offset = {{2.09311676 / M_PI * 180.0f, 0.50467968 / M_PI * 180.0f, 3.63706851 / M_PI * 180.0f, 5.26232147 / M_PI * 180.0f}}; // 右右右右 + MotorOffset_t motor_offset = {{2.12916541 / M_PI * 180.0f, 5.23470974/ M_PI * 180.0f, + 1.60531092 / M_PI * 180.0f, 4.16322374/ M_PI * 180.0f}}; // 右右右右 c->motoroffset = motor_offset; /*对3508的速度环和6020的角速度以及位置环pid进行初始化*/ for (int i = 0; i < 4; i++) { - PID_Init(&c->pid.chassis_3508VPID[i], KPID_MODE_NO_D, target_freq, &c->param->M3508v_param); + PID_Init(&c->pid.Wheel_DIR_omega[i], KPID_MODE_NO_D, target_freq, &c->param->pid.Wheel_DIR_Omega); } for (int i = 0; i < 4; i++) { - PID_Init(&c->pid.chassis_6020OmegaPid[i], KPID_MODE_CALC_D, target_freq, &c->param->C6020Omega_param); - PID_Init(&c->pid.chassis_6020anglePid[i], KPID_MODE_CALC_D, target_freq, &c->param->C6020Angle_param); - } - PID_Init(&c->pid.chassis_follow_gimbal_pid, KPID_MODE_CALC_D, target_freq, &c->param->chassis_follow_gimbalPID); - /*2006位置环pid*/ - PID_Init(&c->pid.chassis_2006_anglepid,KPID_MODE_NO_D,target_freq , &c->param->chassis_2006_angle_param); - PID_Init(&c->pid.chassis_2006_OmegaPid,KPID_MODE_CALC_D,target_freq , &c->param->chassis_2006_Omega_param); -/*底盘轮向3508在控制展开时的位置双环pid*/ - for(int i=0;i<4;i++) - { - PID_Init(&c->pid.chassis_3508_anglepid[i],KPID_MODE_NO_D,target_freq , &c->param->chassis_3508_angle_param); - PID_Init(&c->pid.chassis_3508_OmegaPid[i],KPID_MODE_CALC_D,target_freq , &c->param->chassis_3508_Omega_param); + PID_Init(&c->pid.Radder_DIR_omega[i], KPID_MODE_CALC_D, target_freq, &c->param->pid.Radder_DIR_Omega); + PID_Init(&c->pid.Radder_DIR_angle[i], KPID_MODE_CALC_D, target_freq, &c->param->pid.Radder_DIR_Angle); } + PID_Init(&c->pid.chassis_follow_gimbal_pid, + KPID_MODE_CALC_D, + target_freq, + &c->param->pid.chassis_follow_gimbal); LowPassFilter2p_Init(&c->filled[0], target_freq, 20.0f); // vx LowPassFilter2p_Init(&c->filled[1], target_freq, 20.0f); // vy @@ -180,9 +211,7 @@ int8_t chassis_init(Chassis_t *c, Chassis_Param_t *param, float target_freq) LowPassFilter2p_Init(&c->filled[7], target_freq, 20.0f); // 6020-1 LowPassFilter2p_Init(&c->filled[8], target_freq, 20.0f); // 6020-2 LowPassFilter2p_Init(&c->filled[9], target_freq, 20.0f); // 6020-3 - LowPassFilter2p_Init(&c->filled[10],target_freq, 20.0f); // 6020-4 - - LowPassFilter2p_Init(&c->filled[11], target_freq, 10.0f); // 2006角度 + LowPassFilter2p_Init(&c->filled[10], target_freq, 20.0f); // 6020-4 return CHASSIS_OK; @@ -205,13 +234,13 @@ void Chassis_speed_calculate(Chassis_t *c, Chassis_CMD_t *c_cmd) // 使用保持的角度,而不是实时反馈值,速度为0 for (uint8_t i = 0; i < 4; i++) { - c->hopemotorout.rotor6020_jiesuan_1[i] = c->keep_angle[i]; - c->hopemotorout.rotor3508_jiesuan_1[i] = 0; + c->hopemotorout.Radder_DIR_Solving_1[i] = c->keep_angle[i]; + c->hopemotorout.Wheel_DIR_Solving_1[i] = 0; } - // c->hopemotorout.rotor6020_jiesuan_1[0] = 315; - // c->hopemotorout.rotor6020_jiesuan_1[1] = 45; - // c->hopemotorout.rotor6020_jiesuan_1[2] = 315; - // c->hopemotorout.rotor6020_jiesuan_1[3] = 45; + // c->hopemotorout.Radder_DIR_Solving_1[0] = 315; + // c->hopemotorout.Radder_DIR_Solving_1[1] = 45; + // c->hopemotorout.Radder_DIR_Solving_1[2] = 315; + // c->hopemotorout.Radder_DIR_Solving_1[3] = 45; } else { @@ -220,42 +249,44 @@ void Chassis_speed_calculate(Chassis_t *c, Chassis_CMD_t *c_cmd) // 让保持角度实时等于进入保持阈值前的最后一次角度值 for (uint8_t i = 0; i < 4; i++) { - c->keep_angle[i] = c->hopemotorout.rotor6020_jiesuan_1[i]; + c->keep_angle[i] = c->hopemotorout.Radder_DIR_Solving_1[i]; } + switch (c->mode) { case RC: + + case CHASSIS_MODE_ROTOR: case CHASSIS_MODE_FOLLOW_GIMBAL: // const double radians = atan(1.0f * 330 / 330); - c->hopemotorout.rotor3508_jiesuan_1[0] = sqrt( + c->hopemotorout.Wheel_DIR_Solving_1[0] = sqrt( (c->move_vec.Vx + c->move_vec.Vw * sin(radians)) * (c->move_vec.Vx + c->move_vec.Vw * sin(radians)) + (c->move_vec.Vy + c->move_vec.Vw * cos(radians)) * (c->move_vec.Vy + c->move_vec.Vw * cos(radians))); - c->hopemotorout.rotor3508_jiesuan_1[1] = sqrt( + c->hopemotorout.Wheel_DIR_Solving_1[1] = sqrt( (c->move_vec.Vx + c->move_vec.Vw * sin(radians)) * (c->move_vec.Vx + c->move_vec.Vw * sin(radians)) + (c->move_vec.Vy - c->move_vec.Vw * cos(radians)) * (c->move_vec.Vy - c->move_vec.Vw * cos(radians))); - c->hopemotorout.rotor3508_jiesuan_1[2] = sqrt( + c->hopemotorout.Wheel_DIR_Solving_1[2] = sqrt( (c->move_vec.Vx - c->move_vec.Vw * sin(radians)) * (c->move_vec.Vx - c->move_vec.Vw * sin(radians)) + (c->move_vec.Vy - c->move_vec.Vw * cos(radians)) * (c->move_vec.Vy - c->move_vec.Vw * cos(radians))); - c->hopemotorout.rotor3508_jiesuan_1[3] = sqrt( + c->hopemotorout.Wheel_DIR_Solving_1[3] = sqrt( (c->move_vec.Vx - c->move_vec.Vw * sin(radians)) * (c->move_vec.Vx - c->move_vec.Vw * sin(radians)) + (c->move_vec.Vy + c->move_vec.Vw * cos(radians)) * (c->move_vec.Vy + c->move_vec.Vw * cos(radians))); - c->hopemotorout.rotor6020_jiesuan_1[0] = atan2((c->move_vec.Vy + c->move_vec.Vw * cos(radians)), + c->hopemotorout.Radder_DIR_Solving_1[0] = atan2((c->move_vec.Vy + c->move_vec.Vw * cos(radians)), (c->move_vec.Vx + c->move_vec.Vw * sin(radians))) * (180.0f / M_PI); - c->hopemotorout.rotor6020_jiesuan_1[1] = atan2((c->move_vec.Vy - c->move_vec.Vw * cos(radians)), + c->hopemotorout.Radder_DIR_Solving_1[1] = atan2((c->move_vec.Vy - c->move_vec.Vw * cos(radians)), (c->move_vec.Vx + c->move_vec.Vw * sin(radians))) * (180.0f / M_PI); - c->hopemotorout.rotor6020_jiesuan_1[2] = atan2((c->move_vec.Vy - c->move_vec.Vw * cos(radians)), + c->hopemotorout.Radder_DIR_Solving_1[2] = atan2((c->move_vec.Vy - c->move_vec.Vw * cos(radians)), (c->move_vec.Vx - c->move_vec.Vw * sin(radians))) * (180.0f / M_PI); - c->hopemotorout.rotor6020_jiesuan_1[3] = atan2((c->move_vec.Vy + c->move_vec.Vw * cos(radians)), + c->hopemotorout.Radder_DIR_Solving_1[3] = atan2((c->move_vec.Vy + c->move_vec.Vw * cos(radians)), (c->move_vec.Vx - c->move_vec.Vw * sin(radians))) * (180.0f / M_PI); - c->chassis2006_setangle=c->param->chassis2006_setangle; break; case CHASSIS_MODE_BREAK: @@ -264,82 +295,61 @@ void Chassis_speed_calculate(Chassis_t *c, Chassis_CMD_t *c_cmd) for (int i = 0; i < 4; i++) { - c->hopemotorout.rotor3508_jiesuan_1[i] = 0.0f; + c->hopemotorout.Wheel_DIR_Solving_1[i] = 0.0f; } - // c->hopemotorout.rotor6020_jiesuan_1[0] = 6.26554489/M_PI*180.0f; - // c->hopemotorout.rotor6020_jiesuan_1[1] = 2.1099906/M_PI*180.0f; - // c->hopemotorout.rotor6020_jiesuan_1[2] = 2.08391285/M_PI*180.0f; - // c->hopemotorout.rotor6020_jiesuan_1[3] = 5.26845694/M_PI*180.0f; - c->hopemotorout.rotor6020_jiesuan_1[0] = 315; - c->hopemotorout.rotor6020_jiesuan_1[1] = 45; - c->hopemotorout.rotor6020_jiesuan_1[2] = 315; - c->hopemotorout.rotor6020_jiesuan_1[3] = 45; - - - c->chassis2006_setangle=0; + // c->hopemotorout.Radder_DIR_Solving_1[0] = 6.26554489/M_PI*180.0f; + // c->hopemotorout.Radder_DIR_Solving_1[1] = 2.1099906/M_PI*180.0f; + // c->hopemotorout.Radder_DIR_Solving_1[2] = 2.08391285/M_PI*180.0f; + // c->hopemotorout.Radder_DIR_Solving_1[3] = 5.26845694/M_PI*180.0f; + // c->hopemotorout.Radder_DIR_Solving_1[0] = 315; + // c->hopemotorout.Radder_DIR_Solving_1[1] = 45; + // c->hopemotorout.Radder_DIR_Solving_1[2] = 315; + // c->hopemotorout.Radder_DIR_Solving_1[3] = 45; + + c->hopemotorout.Radder_DIR_Solving_1[0] = 0; + c->hopemotorout.Radder_DIR_Solving_1[1] = 0; + c->hopemotorout.Radder_DIR_Solving_1[2] = 0; + c->hopemotorout.Radder_DIR_Solving_1[3] = 0; break; - case HUIHANG_BIANXING_DUOLUN: - c->hopemotorout.rotor6020_jiesuan_1[0] = 90; - c->hopemotorout.rotor6020_jiesuan_1[1] = 90; - c->hopemotorout.rotor6020_jiesuan_1[2] = 270; - c->hopemotorout.rotor6020_jiesuan_1[3] = 270; - c->chassis2006_setangle = c->param->chassis2006_setangle; - for (int i = 0; i < 4; i++) - { - c->hopemotorout.rotor3508_jiesuan_1[i] = 0.0f; - } - break; - // c->hopemotorout.rotor3508_jiesuan_1[0] = PID_Calc(&c->pid.chassis_3508_anglepid[0],c->chassis3508_setangle,c->motorfeedback.rotor_angle3508[0],0.0f,c->dt); - // c->hopemotorout.rotor3508_jiesuan_1[1] = PID_Calc(&c->pid.chassis_3508_anglepid[1],c->chassis3508_setangle,c->motorfeedback.rotor_angle3508[1],0.0f,c->dt); - // c->hopemotorout.rotor3508_jiesuan_1[2] = PID_Calc(&c->pid.chassis_3508_anglepid[2],-c->chassis3508_setangle,c->motorfeedback.rotor_angle3508[2],0.0f,c->dt); - // c->hopemotorout.rotor3508_jiesuan_1[3] = PID_Calc(&c->pid.chassis_3508_anglepid[3],-c->chassis3508_setangle,c->motorfeedback.rotor_angle3508[3],0.0f,c->dt); - - // c->out.rotor3508_out[0]=PID_Calc(&c->pid.chassis_3508_OmegaPid[0],c->hopemotorout.rotor3508_jiesuan_1[0],c->motorfeedback.rotor_rpm3508[0],0.0f,c->dt); - // c->out.rotor3508_out[1]=PID_Calc(&c->pid.chassis_3508_OmegaPid[1],c->hopemotorout.rotor3508_jiesuan_1[1],c->motorfeedback.rotor_rpm3508[1],0.0f,c->dt); - // c->out.rotor3508_out[2]=PID_Calc(&c->pid.chassis_3508_OmegaPid[2],c->hopemotorout.rotor3508_jiesuan_1[2],c->motorfeedback.rotor_rpm3508[2],0.0f,c->dt); - // c->out.rotor3508_out[3]=PID_Calc(&c->pid.chassis_3508_OmegaPid[3],c->hopemotorout.rotor3508_jiesuan_1[3],c->motorfeedback.rotor_rpm3508[3],0.0f,c->dt); - - } - float motor_2006omega = PID_Calc(&c->pid.chassis_2006_anglepid,c->chassis2006_setangle,c->motorfeedback.motor2006_add_angle,0.0f,c->dt); - c->final_out.final_2006out=PID_Calc(&c->pid.chassis_2006_OmegaPid,motor_2006omega,c->motorfeedback.motor2006_omega,0.0f,c->dt); - -} + + } + } // 角度归化到0°——360° for (uint8_t i = 0; i < 4; i++) { - if (c->hopemotorout.rotor6020_jiesuan_1[i] < 0) + if (c->hopemotorout.Radder_DIR_Solving_1[i] < 0) { - c->hopemotorout.rotor6020_jiesuan_1[i] += 360; + c->hopemotorout.Radder_DIR_Solving_1[i] += 360; } } for (uint8_t i = 0; i < 4; i++) { float angle_error[4]; // 角度误差 - angle_error[i] = c->hopemotorout.rotor6020_jiesuan_1[i] - c->motorfeedback.rotor_angle6020[i]; + angle_error[i] = c->hopemotorout.Radder_DIR_Solving_1[i] - c->feedback.motor.Radder_DIR_Angle[i]; // 误差角度归化到-180°——+180° while (angle_error[i] > 180) angle_error[i] -= 360; while (angle_error[i] < -180) angle_error[i] += 360; /*这里发现如果下面的c->motorfeedback.rotor_angle6020[i]+angle_error[i]变为 - c->hopemotorout.rotor6020_jiesuan_1[i]会导致6020出现故障*/ + c->hopemotorout.Radder_DIR_Solving_1[i]会导致6020出现故障*/ if (angle_error[i] > 90 && angle_error[i] <= 180) { - c->hopemotorout.rotor3508_jiesuan_2[i] = c->hopemotorout.rotor3508_jiesuan_1[i]; - c->hopemotorout.rotor6020_jiesuan_2[i] = c->motorfeedback.rotor_angle6020[i] + angle_error[i] - 180; + c->hopemotorout.Wheel_DIR_Solving_2[i] = c->hopemotorout.Wheel_DIR_Solving_1[i]; + c->hopemotorout.Radder_DIR_Solving_2[i] = c->feedback.motor.Radder_DIR_Angle[i] + angle_error[i] - 180; } else if (angle_error[i] < -90 && angle_error[i] >= -180) { - c->hopemotorout.rotor3508_jiesuan_2[i] = c->hopemotorout.rotor3508_jiesuan_1[i]; - c->hopemotorout.rotor6020_jiesuan_2[i] = c->motorfeedback.rotor_angle6020[i] + angle_error[i] + 180; + c->hopemotorout.Wheel_DIR_Solving_2[i] = c->hopemotorout.Wheel_DIR_Solving_1[i]; + c->hopemotorout.Radder_DIR_Solving_2[i] = c->feedback.motor.Radder_DIR_Angle[i] + angle_error[i] + 180; } else { - c->hopemotorout.rotor3508_jiesuan_2[i] = -c->hopemotorout.rotor3508_jiesuan_1[i]; - c->hopemotorout.rotor6020_jiesuan_2[i] = c->motorfeedback.rotor_angle6020[i] + angle_error[i]; + c->hopemotorout.Wheel_DIR_Solving_2[i] = -c->hopemotorout.Wheel_DIR_Solving_1[i]; + c->hopemotorout.Radder_DIR_Solving_2[i] = c->feedback.motor.Radder_DIR_Angle[i] + angle_error[i]; } } } @@ -355,31 +365,39 @@ int8_t Chassis_update(Chassis_t *c) { return CHASSIS_ERR_NULL; // 参数错误 } - /*更新所有电机数据*/ - MOTOR_RM_UpdateAll(); + MOTOR_RM_t *Wheel_DIR_MOTOR[4]; + MOTOR_RM_t *Radder_DIR_MOTOR[4]; + /*更新电机反馈*/ - // for (int i = 0; i < 4; i++) - // { - // // c->motorfeedback.rotor_angle6020[i] = (MOTOR_GetRotorAbsAngle(&(MOTOR_RM_GetMotor(&c->param->motor_6020_param[i])->motor)) ); - // c->motorfeedback.rotor_angle6020[i] = (MOTOR_GetRotorAbsAngle(&(MOTOR_RM_GetMotor(&c->param->motor_6020_param[i])->motor)) / M_PI * 180.0f) ; - // c->motorfeedback.rotor_rpm6020[i] = (MOTOR_GetRotorSpeed(&(MOTOR_RM_GetMotor(&c->param->motor_6020_param[i])->motor)) / 320); - // c->motorfeedback.rotor_rpm3508[i] = MOTOR_GetRotorSpeed(&(MOTOR_RM_GetMotor(&c->param->motor_3508_param[i])->motor)) /10000; - // c->motorfeedback.rotor_angle3508[i] = MOTOR_GetRotorAbsAngle(&(MOTOR_RM_GetMotor(&c->param->motor_3508_param[i])->motor)) ; - // // c->motorfeedback.rotor_angle6020[i] = MOTOR_GetRotorAbsAngle(&(MOTOR_RM_GetMotor(&c->param->motor_6020_param[i])->motor)); + for (int i = 0; i < 4; i++) + { + /* 轮向电机更新 */ + MOTOR_RM_Update(&(c->param->motor.Wheel_DIR[i])); + Wheel_DIR_MOTOR[i]= MOTOR_RM_GetMotor(&(c->param->motor.Wheel_DIR[i])); + c->feedback.motor.Wheel_DIR[i] = Wheel_DIR_MOTOR[i]->feedback; - // // 角度归化到0°——360°并且进行偏移校准 - // c->motorfeedback.rotor_angle6020[i] = fmod(c->motorfeedback.rotor_angle6020[i] - c->motoroffset.MOTOR_OFFSET[i], 360.0); - // if (c->motorfeedback.rotor_angle6020[i] < 0) - // { - // c->motorfeedback.rotor_angle6020[i] += 360; - // } - // } - c->motorfeedback.motor2006_angle = MOTOR_GetRotorAbsAngle(&(MOTOR_RM_GetMotor(&c->param->motor_2006_param)->motor)) ; - c->motorfeedback.motor2006_rpm = MOTOR_GetRotorSpeed(&(MOTOR_RM_GetMotor(&c->param->motor_2006_param)->motor)) ; - - c->motorfeedback.motor2006_add_angle= motor_add_anagle(c->motorfeedback.motor2006_angle); - c->motorfeedback.motor2006_omega=c->motorfeedback.motor2006_rpm*M_2PI/60; + /* 舵向电机 */ + MOTOR_RM_Update(&(c->param->motor.Radder_DIR[i])); + Radder_DIR_MOTOR[i]= MOTOR_RM_GetMotor(&(c->param->motor.Radder_DIR[i])); + c->feedback.motor.Radder_DIR[i] = Radder_DIR_MOTOR[i]->feedback; + /* 单位转换 */ + c->feedback.motor.Radder_DIR_Angle[i]=c->feedback.motor.Radder_DIR[i].rotor_abs_angle/ M_PI * 180.0f; + c->feedback.motor.Radder_DIR_Rpm[i]= c->feedback.motor.Radder_DIR[i].rotor_speed/320; + c->feedback.motor.Wheel_DIR_Angle[i]= c->feedback.motor.Wheel_DIR[i].rotor_speed/10000; + + c->feedback.motor.Radder_DIR_Angle[i] = fmod(c->feedback.motor.Radder_DIR_Angle[i] - c->motoroffset.MOTOR_OFFSET[i], 360.0); + if (c->feedback.motor.Radder_DIR_Angle[i] < 0) + { + c->feedback.motor.Radder_DIR_Angle[i] += 360; + } + } + MOTOR_RM_Update(&(c->param->motor.Telescope_motor)); + MOTOR_RM_t *Telescope_RM = MOTOR_RM_GetMotor(&(c->param->motor.Telescope_motor)); + if (Telescope_RM != NULL) + c->feedback.motor.Telescope = Telescope_RM->feedback; + c->feedback.motor.Telescope_Omega=c->feedback.motor.Telescope.rotor_speed*M_2PI/ONE_MINUTE; + c->feedback.motor.Telescope_SuperiorAngle=motor_add_anagle(c->feedback.motor.Telescope.rotor_abs_angle); return CHASSIS_OK; } @@ -407,7 +425,7 @@ int8_t Chassis_Control(Chassis_t *c, Chassis_CMD_t *c_cmd,uint32_t now) { return CHASSIS_ERR_MODE; /* 设置模式失败 */ } - + float beta; /*根据底盘模式进行不同的控制*/ switch (c->mode) @@ -419,7 +437,6 @@ int8_t Chassis_Control(Chassis_t *c, Chassis_CMD_t *c_cmd,uint32_t now) c->move_vec.Vx = 0.0f; c->move_vec.Vy = 0.0f; c->move_vec.Vw = 0.0f; - c->final_out.final_2006out=0.0f; break; case RC: @@ -434,24 +451,25 @@ int8_t Chassis_Control(Chassis_t *c, Chassis_CMD_t *c_cmd,uint32_t now) case CHASSIS_MODE_ROTOR: // 小陀螺模式 - c->move_vec.Vx =c_cmd->y_l; - c->move_vec.Vy =c_cmd->x_l; + + beta = (c->feedback.motor.gimbal_yaw.rotor_abs_angle / 180.0f * M_PI) - c->mech_zero; // 云台当前角度转弧度 + float cos_beta = cosf(beta); + float sin_beta = sinf(beta); + + c->move_vec.Vx =cos_beta * c_cmd->x_l - sin_beta * c_cmd->y_l; + c->move_vec.Vy =sin_beta* c_cmd->x_l + cos_beta * c_cmd->y_l; c->move_vec.Vw =c->wz_multi* Chassis_CalcWz(CHASSIS_ROTOR_WZ_MIN,CHASSIS_ROTOR_WZ_MAX, now); break; case CHASSIS_MODE_FOLLOW_GIMBAL: // 跟随云台模式 - c->move_vec.Vx =c_cmd->y_l; - c->move_vec.Vy =c_cmd->x_l; - c->move_vec.Vw = -PID_Calc(&c->pid.chassis_follow_gimbal_pid, 2.0f ,c->motorfeedback.gimbal_yaw_encoder, 0.0f, c->dt); + c->move_vec.Vx =-c_cmd->y_l; + c->move_vec.Vy =-c_cmd->x_l; + c->move_vec.Vw = PID_Calc(&c->pid.chassis_follow_gimbal_pid, 2.06f ,c->feedback.motor.gimbal_yaw.rotor_abs_angle, 0.0f, c->dt); + + // c->move_vec.Vw = -PID_Calc(&c->pid.chassis_follow_gimbal_pid, c->motorfeedback.gimbal_yaw_encoder-2.07694483f ,c->motorfeedback.gimbal_yaw_encoder, 0.0f, c->dt); break; - case HUIHANG_BIANXING_DUOLUN: - // 会航变形舵轮模式 - c->move_vec.Vx = 0.0f; - c->move_vec.Vy = 0.0f; - c->move_vec.Vw = 0.0f; - break; default: @@ -467,22 +485,21 @@ int8_t Chassis_Control(Chassis_t *c, Chassis_CMD_t *c_cmd,uint32_t now) for (int i = 0; i < 4; i++) { - float chassis6020_detangle[4]; // 6020解算出的角度 - c->hopemotorout.motor6020_target[i] = c->hopemotorout.rotor6020_jiesuan_2[i]; - chassis6020_detangle[i] = PID_Calc(&(c->pid.chassis_6020anglePid[i]), c->hopemotorout.motor6020_target[i], - c->motorfeedback.rotor_angle6020[i], 0.0f, c->dt); + float chassis6020_detangle[4]; // 6020解算出的角度 + c->hopemotorout.Radder_DIR_target[i] = c->hopemotorout.Radder_DIR_Solving_2[i]; + chassis6020_detangle[i] = PID_Calc(&(c->pid.Radder_DIR_angle[i]), c->hopemotorout.Radder_DIR_target[i], + c->feedback.motor.Radder_DIR_Angle[i], 0.0f, c->dt); // c->final_out.final_6020out[i] = chassis6020_detangle[i] ; //单环控制就用这个 - c->final_out.final_6020out[i] = PID_Calc(&(c->pid.chassis_6020OmegaPid[i]), chassis6020_detangle[i], - c->motorfeedback.rotor_rpm6020[i], 0.0f, c->dt); + c->chassis6020_detangle[i]=chassis6020_detangle[i]; + c->final_out.final_Radder_DIR[i] = PID_Calc(&(c->pid.Radder_DIR_omega[i]), chassis6020_detangle[i], + c->feedback.motor.Radder_DIR_Rpm[i], 0.0f, c->dt); - c->out.rotor6020_out[i] = LowPassFilter2p_Apply(&c->filled[7+i], c->final_out.final_6020out[i]); - - c->hopemotorout.motor3508_target[i] = c->hopemotorout.rotor3508_jiesuan_2[i]; - c->final_out.final_3508out[i] = PID_Calc(&(c->pid.chassis_3508VPID[i]), c->hopemotorout.motor3508_target[i], - c->motorfeedback.rotor_rpm3508[i], 0.0f, c->dt); - c->out.rotor3508_out[i] = LowPassFilter2p_Apply(&c->filled[3+i], c->final_out.final_3508out[i]); - - c->out.motor2006_out=c->final_out.final_2006out; + c->out.Radder_DIR[i] = LowPassFilter2p_Apply(&c->filled[7+i], c->final_out.final_Radder_DIR[i]); +// c->out.Radder_DIR[i]= c->final_out.final_Radder_DIR[i]; + c->hopemotorout.Wheel_DIR_target[i] = c->hopemotorout.Wheel_DIR_Solving_2[i]; + c->final_out.final_Wheel_DIR[i] = PID_Calc(&(c->pid.Wheel_DIR_omega[i]), c->hopemotorout.Wheel_DIR_target[i], + c->feedback.motor.Wheel_DIR_Rpm[i], 0.0f, c->dt); + c->out.Wheel_DIR[i] = LowPassFilter2p_Apply(&c->filled[3+i], c->final_out.final_Wheel_DIR[i]); } return CHASSIS_OK; } @@ -490,15 +507,19 @@ int8_t Chassis_Control(Chassis_t *c, Chassis_CMD_t *c_cmd,uint32_t now) /*电机输出设定和发送*/ void Chassis_Setoutput(Chassis_t *c) { - for (int i = 0; i < 4; i++) - { - MOTOR_RM_SetOutput(&(c->param->motor_3508_param[i]), c->out.rotor3508_out[i]); - MOTOR_RM_SetOutput(&(c->param->motor_6020_param[i]), c->out.rotor6020_out[i]); - } - MOTOR_RM_SetOutput(&(c->param->motor_2006_param), c->out.motor2006_out); - MOTOR_RM_SetOutput(&(c->param->motor_3508_param[0]), 1.0f); - MOTOR_RM_Ctrl(&(c->param->motor_3508_param[0])); - MOTOR_RM_Ctrl(&(c->param->motor_6020_param[0])); - MOTOR_RM_Ctrl(&(c->param->motor_2006_param)); + + for (uint8_t i = 0; i < 4; i++) { + MOTOR_RM_SetOutput(&(c->param->motor.Wheel_DIR[i]), c->out.Wheel_DIR[i]); + MOTOR_RM_SetOutput(&(c->param->motor.Radder_DIR[i]), c->out.Radder_DIR[i]); + } + MOTOR_RM_Ctrl(&(c->param->motor.Wheel_DIR[0])); + MOTOR_RM_Ctrl(&(c->param->motor.Wheel_DIR[1])); + MOTOR_RM_Ctrl(&(c->param->motor.Wheel_DIR[2])); + MOTOR_RM_Ctrl(&(c->param->motor.Wheel_DIR[3])); +// MOTOR_RM_Ctrl(&(c->param->motor.Radder_DIR[0])); +// MOTOR_RM_Ctrl(&(c->param->motor.Radder_DIR[1])); +// MOTOR_RM_Ctrl(&(c->param->motor.Radder_DIR[2])); + MOTOR_RM_Ctrl(&(c->param->motor.Radder_DIR[3])); } + diff --git a/User/module/chassis.h b/User/module/chassis.h index cc90d4c..5ed2e6e 100644 --- a/User/module/chassis.h +++ b/User/module/chassis.h @@ -22,6 +22,26 @@ extern "C" #define CHASSIS_ERR_TYPE (-4) /*Chassis_Type_t */ +// 纵向/横向 +#define radians atan(1.0f * 390 /390) // 角度制 + + +/*底盘姿态模式*/ +typedef enum +{ + STOP_MODE,/* 急停模式 */ + EXPAND_MODE,/* 展开模式 */ + REDUCE_MODE,/* 收缩模式 */ +} CHASSIS_ATTITUDE_MODE_t; + +/*底盘状态*/ +typedef enum +{ + STOP_STATE,/* 急停状态 */ + EXPAND_STATE,/* 展开状态 */ + REDUCE_STATE,/* 收缩状态 */ +} CHASSIS_STATE_t; + /*底盘模式*/ typedef enum { @@ -32,15 +52,13 @@ typedef enum CHASSIS_MODE_FOLLOW_GIMBAL, /* 通过闭环控制使车头方向跟随云台 */ CHASSIS_MODE_ROTOR, /* 小陀螺模式,通过闭环控制使底盘不停旋转 */ - HUIHANG_BIANXING_DUOLUN, /*会航将军变形舵轮底盘*/ -} Chassis_mode_t; +} Chassis_Mode_t; typedef struct { int cmd_power_on_safe; // 上电安全标志 - - Chassis_mode_t mode; - + Chassis_Mode_t mode; + CHASSIS_ATTITUDE_MODE_t attitude_mode; // 遥控器输出值 fp32 Vx; fp32 Vy; @@ -51,9 +69,6 @@ typedef struct fp32 y_l; } Chassis_CMD_t; -// 纵向/横向 -#define radians atan(1.0f * 390 /390) // 角度制 - // 四个舵轮的安装误差 typedef struct { @@ -63,7 +78,7 @@ typedef struct typedef struct { - BMI088_t bmi088; + /*可通过该枚举类型来决定Imu的数据量纲*/ enum @@ -72,36 +87,34 @@ typedef struct IMU_RADIAN // 弧度制(0-2pi) } angle_mode; - AHRS_Eulr_t imu_eulr; // 解算后存放欧拉角(弧度制) +// AHRS_Eulr_t imu_eulr; // 解算后存放欧拉角(弧度制) } ChassisImu_t; /*底盘参数结构体*/ typedef struct { - + /* 改变角度 */ + float Set_TelescopeAngle; + struct{ /*该部分决定PID的参数整定在config中修改*/ - KPID_Params_t C6020Omega_param; - KPID_Params_t C6020Angle_param; - KPID_Params_t M3508v_param; - KPID_Params_t chassis_follow_gimbalPID; + KPID_Params_t Telescope_Omega; + KPID_Params_t Telescope_Angle; + KPID_Params_t Radder_DIR_Omega; + KPID_Params_t Radder_DIR_Angle; + KPID_Params_t Wheel_DIR_Omega; + KPID_Params_t chassis_follow_gimbal; + }pid; + + struct{ + MOTOR_RM_Param_t Wheel_DIR[4]; // 四个轮向电机 + MOTOR_RM_Param_t Radder_DIR[4]; // 四个舵向电机 + MOTOR_RM_Param_t chassis_follow_gimbal; // 底盘跟随云台 + MOTOR_RM_Param_t Telescope_motor; //2006电机 - KPID_Params_t chassis_2006_angle_param; - KPID_Params_t chassis_2006_Omega_param; - KPID_Params_t chassis_3508_angle_param; - KPID_Params_t chassis_3508_Omega_param; - - MOTOR_RM_Param_t motor_3508_param[4]; // 四个3508电机 - MOTOR_RM_Param_t motor_6020_param[4]; // 四个6020电机 - MOTOR_RM_Param_t motor_2006_param; // 一个2006电机 - - // MOTOR_RM_Param_t chassis_follow_gimbal_param; // 底盘跟随云台 + }motor; float mech_zero;/*云台6020的机械中点*/ float travel ;/*云台6020的机械行程*/ - - float chassis2006_setangle; // 变形舵轮2006目标角度 大概是48圈 - float chassis3508_setangle; // 变形舵轮3508目标角度 大概是60度左右 - - + float mech_zero_4310;/*云台4310的机械中点*/ } Chassis_Param_t; typedef struct @@ -114,71 +127,64 @@ typedef struct typedef struct { - float rotor3508_out[4]; - float rotor6020_out[4]; - float motor2006_out; + float Telescope; + float Wheel_DIR[4]; + float Radder_DIR[4]; } Chassis_out_t; typedef struct { uint32_t last_wakeup; float dt; - - Chassis_mode_t mode; + float chassis6020_detangle[4]; + Chassis_Mode_t mode; ChassisMove_Vec move_vec; // 最终输入速度 /*期望的底盘输出值(此处为舵轮解算出的各个电机的期望输出值)ֵ*/ struct { - fp32 rotor3508_jiesuan_1[4]; - fp32 rotor3508_jiesuan_2[4]; - fp32 rotor6020_jiesuan_1[4]; - fp32 rotor6020_jiesuan_2[4]; + fp32 Wheel_DIR_Solving_1[4]; + fp32 Wheel_DIR_Solving_2[4]; + fp32 Radder_DIR_Solving_1[4]; + fp32 Radder_DIR_Solving_2[4]; // fp32 rotor6020_elur_yaw; - fp32 motor6020_target[4]; - fp32 motor3508_target[4]; + fp32 Radder_DIR_target[4]; + fp32 Wheel_DIR_target[4]; } hopemotorout; struct { - fp32 final_6020out[4]; - fp32 final_3508out[4]; - fp32 final_2006out; - // fp32 final_pitchout; + fp32 final_Telescope; + fp32 final_Radder_DIR[4]; + fp32 final_Wheel_DIR[4]; } final_out; struct { - fp32 rotor_rpm3508[4]; - fp32 rotor_current3508[4]; - fp32 rotor_angle3508[4]; - fp32 rotor_rpm6020[4]; - fp32 rotor_angle6020[4]; - fp32 rotor_current6020[4]; - fp32 rotor_temp6020[4]; - fp32 motor2006_rpm; - fp32 motor2006_omega; - fp32 motor2006_current; - fp32 motor2006_temp; - fp32 motor2006_angle; - fp32 motor2006_add_angle; - fp32 gimbal_yaw_encoder; - } motorfeedback; + struct{ + float Telescope_SuperiorAngle; + float Telescope_Omega; + float Radder_DIR_Angle[4]; + float Radder_DIR_Rpm[4]; + float Wheel_DIR_Angle[4]; + float Wheel_DIR_Rpm[4]; + MOTOR_Feedback_t Telescope; // 四个轮向电机 + MOTOR_Feedback_t Wheel_DIR[4]; // 四个轮向电机 + MOTOR_Feedback_t Radder_DIR[4]; + MOTOR_Feedback_t gimbal_yaw; + }motor; + } feedback; struct { - KPID_t chassis_6020anglePid[4]; - KPID_t chassis_6020OmegaPid[4]; - KPID_t chassis_3508VPID[4]; + KPID_t Telescope_angle; + KPID_t Telescope_omega; + KPID_t Radder_DIR_angle[4]; + KPID_t Radder_DIR_omega[4]; + KPID_t Wheel_DIR_omega[4]; KPID_t chassis_follow_gimbal_pid; - - KPID_t chassis_2006_anglepid; - KPID_t chassis_2006_OmegaPid; - KPID_t chassis_3508_anglepid[4]; - KPID_t chassis_3508_OmegaPid[4]; - } pid; uint8_t keeping_angle_flag; // 是否处于保持角度模式 @@ -191,18 +197,15 @@ typedef struct ChassisImu_t pos088; // 088的实时姿态 MotorOffset_t motoroffset; // 5065校准数据 Chassis_Param_t *param; // 一些固定的参数 - fp32 vofa_send[8]; // vofa输出数据 LowPassFilter2p_t filled[11]; // 低通滤波器 - float keep_angle[4]; // 保持的 6020 角度 + float keep_angle[4]; // 保持的 舵向 角度 Chassis_out_t out; float wz_multi; /* 小陀螺模式旋转方向 */ float mech_zero;/*云台6020的机械中点*/ float travel ;/*云台6020的机械行程*/ - - float chassis2006_setangle; // 变形舵轮2006目标角度 大概是48圈 - float chassis3508_setangle; // 变形舵轮3508目标角度 大概是60度左右 +// float mech_zero_4310;/*云台4310的机械中点*/ } Chassis_t; diff --git a/User/module/cmd/cmd.c b/User/module/cmd/cmd.c index 4c3ad61..832c188 100644 --- a/User/module/cmd/cmd.c +++ b/User/module/cmd/cmd.c @@ -21,6 +21,7 @@ static void CMD_RC_BuildChassisCmd(CMD_t *ctx) { break; case CMD_SW_MID: ctx->output.chassis.cmd.mode = map->sw_left_mid; + ctx->output.chassis.cmd.throttle = ctx->config->sensitivity.move_slow_mult; break; case CMD_SW_DOWN: ctx->output.chassis.cmd.mode = map->sw_left_down; @@ -77,10 +78,9 @@ static void CMD_RC_BuildShootCmd(CMD_t *ctx) { break; case CMD_SW_UP: ctx->output.shoot.cmd.ready = SHOOT_MODE_SAFE; - -// default: -// ctx->output.shoot.cmd.ready = false; -// ctx->output.shoot.cmd.firecmd = false; + default: + ctx->output.shoot.cmd.ready = false; + ctx->output.shoot.cmd.firecmd = false; break; } /* 根据D拨杆控制射击 */ @@ -96,9 +96,9 @@ static void CMD_RC_BuildShootCmd(CMD_t *ctx) { case CMD_SW_UP: ctx->output.shoot.cmd.ready = false; ctx->output.shoot.cmd.firecmd = false; -// default: -// ctx->output.shoot.cmd.ready = false; -// ctx->output.shoot.cmd.firecmd = false; + default: + ctx->output.shoot.cmd.ready = false; + ctx->output.shoot.cmd.firecmd = false; break; } } diff --git a/User/module/cmd/cmd.h b/User/module/cmd/cmd.h index cf00cfa..5f48d6d 100644 --- a/User/module/cmd/cmd.h +++ b/User/module/cmd/cmd.h @@ -53,9 +53,9 @@ typedef struct { /* RC模式映射配置 - 定义开关位置到模式的映射 */ typedef struct { /* 左拨杆映射 - 底盘模式 */ - Chassis_mode_t sw_left_up; - Chassis_mode_t sw_left_mid; - Chassis_mode_t sw_left_down; + Chassis_Mode_t sw_left_up; + Chassis_Mode_t sw_left_mid; + Chassis_Mode_t sw_left_down; /* 右拨杆映射 - 云台/射击模式 */ Gimbal_Mode_t gimbal_sw_up; diff --git a/User/module/config.c b/User/module/config.c index 7861dc5..cfe997e 100644 --- a/User/module/config.c +++ b/User/module/config.c @@ -18,18 +18,19 @@ // 机器人参数配置 Config_RobotParam_t robot_config = { .chassis={ - - .motor_3508_param[0]={BSP_CAN_1,0x201,MOTOR_M3508,false,false}, - .motor_3508_param[1]={BSP_CAN_1,0x202,MOTOR_M3508,false,false}, - .motor_3508_param[2]={BSP_CAN_1,0x203,MOTOR_M3508,false,false}, - .motor_3508_param[3]={BSP_CAN_1,0x204,MOTOR_M3508,false,false}, - .motor_2006_param ={BSP_CAN_1,0x205,MOTOR_M2006,false,true}, - .motor_6020_param[0]={BSP_CAN_1,0x206,MOTOR_GM6020,false,false}, - .motor_6020_param[1]={BSP_CAN_1,0x207,MOTOR_GM6020,false,false}, - .motor_6020_param[2]={BSP_CAN_1,0x208,MOTOR_GM6020,false,false}, - .motor_6020_param[3]={BSP_CAN_1,0x209,MOTOR_GM6020,false,false}, - .chassis2006_setangle=195, - .chassis_2006_angle_param={ + .Set_TelescopeAngle=195, + .pid={ + .Telescope_Omega={ + .k=1.0f, + .p=0.3f, + .i=0.0f, + .d=0.001f, + .i_limit=1.0f, + .out_limit=1.0f, + .d_cutoff_freq= -1.0f, + .range=-1.0f + }, + .Telescope_Angle={ .k=1.0f, .p=1.0f, .i=0.2f, @@ -39,52 +40,48 @@ Config_RobotParam_t robot_config = { .d_cutoff_freq= -1.0f, .range=-M_2PI, }, - .chassis_2006_Omega_param={ - .k=1.0f, - .p=0.3f, - .i=0.0f, - .d=0.001f, - .i_limit=1.0f, - .out_limit=1.0f, - .d_cutoff_freq= -1.0f, - .range=-1.0f - - }, - - - .C6020Omega_param={ - .k=1.0f, - .p=0.5f, - .i=0.1f, + .Radder_DIR_Omega={ + .k=1.0f, + .p=0.4f, + .i=0.15f, .d=0.0f, .i_limit=1.0f, .out_limit=1.0f, .d_cutoff_freq= -1.0f, .range=-1.0f - }, - - .C6020Angle_param={ - .k=0.2f, - .p=0.21f, + }, + .Radder_DIR_Angle={ + .k=0.15f, + .p=0.20f, .i=0.1f, - .d=0.0f, + .d=0.001f, .i_limit=1.0f, .out_limit=30.0f, .d_cutoff_freq= -1.0f, .range=360 - }, - - .M3508v_param={ + }, + .Wheel_DIR_Omega={ .k=0.2f, .p=0.25f, .i=0.1f, - .d=0.0f, + .d=0.001f, .i_limit=1.0f, .out_limit=1.0f, .d_cutoff_freq= -1.0f, .range=-1.0f + }, + }, + .motor={ + .Wheel_DIR[0]={BSP_CAN_2,0x201,MOTOR_M3508,true,false}, + .Wheel_DIR[1]={BSP_CAN_2,0x202,MOTOR_M3508,true,false}, + .Wheel_DIR[2]={BSP_CAN_2,0x203,MOTOR_M3508,false,false}, + .Wheel_DIR[3]={BSP_CAN_2,0x204,MOTOR_M3508,false,false}, + .Telescope_motor={BSP_CAN_1,0x205,MOTOR_M2006,false,true}, + .Radder_DIR[0]={BSP_CAN_2,0x206,MOTOR_GM6020,false,false}, + .Radder_DIR[1]={BSP_CAN_2,0x207,MOTOR_GM6020,false,false}, + .Radder_DIR[2]={BSP_CAN_2,0x208,MOTOR_GM6020,false,false}, + .Radder_DIR[3]={BSP_CAN_1,0x209,MOTOR_GM6020,false,false}, }, - }, @@ -152,7 +149,7 @@ Config_RobotParam_t robot_config = { .reverse=false }, .pit_dm_motor={ - .can=BSP_CAN_2, + .can=BSP_CAN_1, .can_id = 0x02, .master_id=0x12, .module = MOTOR_DM_J4310, @@ -178,7 +175,7 @@ Config_RobotParam_t robot_config = { /*欧拉角控制参数*/ .yaw_omega = { - .k = 0.30f, + .k = 0.0f, .p = 0.4f, .i = 0.01f, .d = 0.0f, @@ -198,7 +195,7 @@ Config_RobotParam_t robot_config = { .range = M_2PI }, .pit_omega = { - .k = 0.3f, + .k = 0.0f, .p = 0.3f, .i = 0.0f, .d = 0.0, @@ -241,7 +238,7 @@ Config_RobotParam_t robot_config = { .fric = { { .param = { - .can = BSP_CAN_2, + .can = BSP_CAN_1, .id = 0x201, .module = MOTOR_M3508, .reverse = false, @@ -251,7 +248,7 @@ Config_RobotParam_t robot_config = { }, { .param = { - .can = BSP_CAN_2, + .can = BSP_CAN_1, .id = 0x202, .module = MOTOR_M3508, .reverse = true, @@ -263,7 +260,7 @@ Config_RobotParam_t robot_config = { }, .trig = { .can = BSP_CAN_1, - .id = 0x205, + .id = 0x203, .module = MOTOR_M2006, .reverse = false, .gear=true, @@ -338,7 +335,7 @@ Config_RobotParam_t robot_config = { }, .rc_mode_map = { .sw_left_up = CHASSIS_MODE_RELAX, - .sw_left_mid = HUIHANG_BIANXING_DUOLUN, + .sw_left_mid = RC, .sw_left_down = CHASSIS_MODE_FOLLOW_GIMBAL, .gimbal_sw_up = GIMBAL_MODE_RELAX, diff --git a/User/task/chassis_ctrl.c b/User/task/chassis_ctrl.c index 5002bcd..d258776 100644 --- a/User/task/chassis_ctrl.c +++ b/User/task/chassis_ctrl.c @@ -40,17 +40,11 @@ void Task_chassis_ctrl(void *argument) { /* USER CODE BEGIN */ /*接受cmd任务数据*/ if(osMessageQueueGet(task_runtime.msgq.chassis.cmd, &cmd_chassis, NULL, 0)==osOK); - -// Chassis_update(&chassis); -// Chassis_Control(&chassis, &cmd_chassis,tick); -// Chassis_Setoutput(&chassis); -////{ -// // 如果没有收到命令,可以执行一个安全停止的逻辑 -// // 或者什么都不做,让底盘保持上一帧的状态(取决于你的设计) -// // 一个安全的选择是让底盘停止 -// Chassis_CMD_t safe_cmd = {.mode = STOP, .Vx = 0, .Vy = 0, .Vw = 0}; -// Chassis_Control(&chassis, &safe_cmd,tick); -////} + + Chassis_update(&chassis); + Chassis_Control(&chassis, &cmd_chassis,tick); + Chassis_Setoutput(&chassis); + /* USER CODE END */ osDelayUntil(tick); /* 运行结束,等待下一次唤醒 */ diff --git a/User/task/init.c b/User/task/init.c index 88c6355..e2feb04 100644 --- a/User/task/init.c +++ b/User/task/init.c @@ -55,6 +55,7 @@ void Task_Init(void *argument) { task_runtime.msgq.shoot.cmd= osMessageQueueNew(2u, sizeof(Shoot_CMD_t), NULL); task_runtime.msgq.rc.dr16= osMessageQueueNew(2u, sizeof(DR16_t), NULL); task_runtime.msgq.rc.et16s= osMessageQueueNew(2u, sizeof(ET16s_t), NULL); + task_runtime.msgq.rc.et16s= osMessageQueueNew(2u, sizeof(ET16s_t), NULL); /* USER MESSAGE END */ osKernelUnlock(); // 解锁内核 diff --git a/User/task/shoot_ctrl.c b/User/task/shoot_ctrl.c index 3be8048..e264518 100644 --- a/User/task/shoot_ctrl.c +++ b/User/task/shoot_ctrl.c @@ -45,7 +45,7 @@ void Task_shoot_ctrl(void *argument) { // shoot.target_variable.target_rpm=4000; // shoot.mode=shoot_ctrl_cmd_rc.mode; Shoot_UpdateFeedback(&shoot); - Shoot_Control(&shoot,&shoot_cmd); +// Shoot_Control(&shoot,&shoot_cmd); /* USER CODE END */ osDelayUntil(tick); /* 运行结束,等待下一次唤醒 */ } diff --git a/User/task/step_motor.c b/User/task/step_motor.c index 9fb37ba..f79fed8 100644 --- a/User/task/step_motor.c +++ b/User/task/step_motor.c @@ -16,14 +16,17 @@ /* Private macro ------------------------------------------------------------ */ /* Private variables -------------------------------------------------------- */ /* USER STRUCT BEGIN */ -STEP_MOTOR StepMotor_param={ - .direction=true, +MOTOR_STEP_t StepMotor_param={ + + .param={ + .channel=BSP_PWM_TIM1_CH1, + .reverse=false, + .gear=false, + }, .pulse=900, - .time=500, }; int key1=1; -ET16S_SwitchPos_t Key_A; int prev_state ; // 初始为无状态 /* USER STRUCT END */ @@ -48,8 +51,12 @@ void Task_step_motor(void *argument) { while (1) { tick += delay_tick; /* 计算下一个唤醒时刻 */ /* USER CODE BEGIN */ - if(osMessageQueueGet(task_runtime.msgq.chassis.SetpMotor, &Key_A, NULL, 0)==osOK); - Motor_Step_Ctrl(&StepMotor_param); + + +// Motor_Step_Ctrl(&StepMotor_param); +// + +// Motor_Step_Ctrl(&StepMotor_param); /* USER CODE END */ osDelayUntil(tick); /* 运行结束,等待下一次唤醒 */ } diff --git a/User/task/user_task.h b/User/task/user_task.h index 6ebd6ee..21160cd 100644 --- a/User/task/user_task.h +++ b/User/task/user_task.h @@ -20,7 +20,7 @@ extern "C" { #define ATTI_ESTI_FREQ (500.0) #define DR16_FREQ (500.0) #define CMD_FREQ (500.0) -#define STEP_MOTOR_FREQ (500.0) +#define STEP_MOTOR_FREQ (600.0) #define ET16S_FREQ (500.0) #define VOFA_FREQ (500.0)